Lines Matching full:create
26 #define CREATE(VARIABLE, CREATE_FUNCTION) \ macro
104 // Create the logical elements.
106 // Create scope root. in createElements()
112 // Create the logical types. in createElements()
113 CREATE(IntegerType, createType); in createElements()
114 CREATE(UnsignedType, createType); in createElements()
115 CREATE(GlobalType, createType); in createElements()
116 CREATE(LocalType, createType); in createElements()
117 CREATE(NestedType, createType); in createElements()
118 CREATE(EnumeratorOne, createTypeEnumerator); in createElements()
119 CREATE(EnumeratorTwo, createTypeEnumerator); in createElements()
120 CREATE(TypeDefinitionOne, createTypeDefinition); in createElements()
121 CREATE(TypeDefinitionTwo, createTypeDefinition); in createElements()
122 CREATE(TypeSubrange, createTypeSubrange); in createElements()
123 CREATE(TypeParam, createTypeParam); in createElements()
124 CREATE(TypeImport, createTypeImport); in createElements()
126 // Create the logical scopes. in createElements()
127 CREATE(NestedScope, createScope); in createElements()
128 CREATE(Aggregate, createScopeAggregate); in createElements()
129 CREATE(Array, createScopeArray); in createElements()
130 CREATE(CompileUnit, createScopeCompileUnit); in createElements()
131 CREATE(Enumeration, createScopeEnumeration); in createElements()
132 CREATE(Function, createScopeFunction); in createElements()
133 CREATE(ClassFunction, createScopeFunction); in createElements()
134 CREATE(InlinedFunction, createScopeFunctionInlined); in createElements()
135 CREATE(Namespace, createScopeNamespace); in createElements()
137 // Create the logical symbols. in createElements()
138 CREATE(GlobalVariable, createSymbol); in createElements()
139 CREATE(LocalVariable, createSymbol); in createElements()
140 CREATE(ClassMember, createSymbol); in createElements()
141 CREATE(NestedVariable, createSymbol); in createElements()
142 CREATE(Parameter, createSymbol); in createElements()
144 // Create the logical lines. in createElements()
145 CREATE(LocalLine, createLine); in createElements()
146 CREATE(NestedLine, createLine); in createElements()
149 // Create the logical view adding the created logical elements.