Class TypeofExprType
An instance of the C23 typeof
or typeof_unqual
operator taking an expression
as its argument. For example:
int a;
typeof(a) b;
Import path
import cpp
Direct supertypes
Predicates
getAPrimaryQlClass | Gets the name of a primary CodeQL class to which this element belongs. |
getExpr | Gets the expression whose type is being obtained by this typeof. |
getLocation | Gets the primary location of this element. |
Inherited predicates
explain | Gets a detailed string representation explaining the AST of this type (with all specifiers and nested constructs such as pointers). This is intended to help debug queries and is a very expensive operation; not to be used in production queries. | from TypeofType |
findRootCause | Gets the source of this element: either itself or a macro that expanded to this element. | from Element |
fromSource | Holds if this element may be from source. This predicate holds for all elements, except for those in the dummy file, whose name is the empty string. The dummy file contains declarations that are built directly into the compiler. | from Element |
getASpecifier | Gets a specifier of this type, recursively looking through | from Type |
getATypeNameUse | Gets as many places as possible where this type is used by name in the source after macros have been replaced (in particular, therefore, this will find type name uses caused by macros). Note that all type name uses within instantiations are currently excluded - this is too draconian in the absence of indexing prototype instantiations of functions, and is likely to improve in the future. At present, the method takes the conservative approach of giving valid type name uses, but not necessarily all type name uses. | from Type |
getAlignment | Gets the alignment of this type in bytes. | from TypeofType |
getAnAttribute | Gets an attribute of this type. | from Type |
getBaseType | Gets the type immediately yielded by this typeof. | from TypeofType |
getEnclosingElement | Gets the closest | from Element |
getFile | Gets the primary file where this element occurs. | from Element |
getName | Gets the name of this type. | from TypeofType |
getParentScope | Gets the parent scope of this | from Element |
getPointerIndirectionLevel | Gets the pointer indirection level of this type. | from TypeofType |
getPrimaryQlClasses | Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs. | from ElementBase |
getSize | Gets the size of this type in bytes. | from TypeofType |
getUnderlyingType | Gets this type after typedefs have been resolved. | from TypeofType |
getUnspecifiedType | Gets this type after specifiers have been deeply stripped and typedefs have been resolved. | from Type |
hasName | Holds if this type is called | from Type |
hasSpecifier | Holds if this declaration has a specifier called | from Type |
internal_getAnAdditionalSpecifier | Internal – should be | from TypeofType |
involvesReference | Holds if this type involves a reference. | from TypeofType |
involvesTemplateParameter | Holds if this type involves a template parameter. | from TypeofType |
isAffectedByMacro | Holds if this element is affected in any way by a macro. All elements that are totally or partially generated by a macro are included, so this is a super-set of | from Element |
isConst | Holds if this type is const. | from Type |
isDeeplyConst | Holds if this type is constant and only contains constant types. For instance, a | from TypeofType |
isDeeplyConstBelow | Holds if this type is constant and only contains constant types, excluding the type itself. It is implied by Type.isDeeplyConst() and is just used to implement that predicate. For example, | from TypeofType |
isFromTemplateInstantiation | Holds if this | from Element |
isFromUninstantiatedTemplate | Holds if this | from Element |
isInMacroExpansion | Holds if this element comes from a macro expansion. Only elements that are entirely generated by a macro are included - for elements that partially come from a macro, see | from Element |
isVolatile | Holds if this type is volatile. | from Type |
refersTo | Holds if this type refers to type | from Type |
refersToDirectly | Holds if this type refers to type | from Type |
resolveTypedefs | Gets this type with any typedefs resolved. For example, given | from TypeofType |
stripTopLevelSpecifiers | Gets this type after any top-level specifiers and typedefs have been stripped. | from TypeofType |
stripType | Gets the type stripped of pointers, references and cv-qualifiers, and resolving typedefs. For example, given | from TypeofType |
toString | Gets a textual representation of this element. | from TypeofType |