Home
last modified time | relevance | path

Searched refs:builtin_type (Results 1 – 4 of 4) sorted by relevance

/external/qemu/scripts/
Dqapi-visit.py351 def generate_declaration(name, members, genlist=True, builtin_type=False): argument
353 if not builtin_type:
490 builtin_type=True))
Dqapi-types.py19 def generate_fwd_struct(name, members, builtin_type=False): argument
20 if builtin_type:
389 fdecl.write(generate_fwd_struct(typename, None, builtin_type=True))
/external/lldb/source/Symbol/
DClangASTType.cpp432 const BuiltinType *builtin_type = dyn_cast<BuiltinType>(qual_type->getCanonicalTypeInternal()); in IsIntegerType() local
434 if (builtin_type) in IsIntegerType()
436 if (builtin_type->isInteger()) in IsIntegerType()
438 is_signed = builtin_type->isSignedInteger(); in IsIntegerType()
1116 … const BuiltinType *builtin_type = dyn_cast<BuiltinType>(qual_type->getCanonicalTypeInternal()); in GetTypeInfo() local
1119 switch (builtin_type->getKind()) in GetTypeInfo()
1157 if (builtin_type->isInteger()) in GetTypeInfo()
1160 if (builtin_type->isSignedInteger()) in GetTypeInfo()
1163 else if (builtin_type->isFloatingPoint()) in GetTypeInfo()
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DOptimize.py2250 builtin_type = None
2255 builtin_type = entry.type
2256 if builtin_type is Builtin.type_type:
2260 builtin_type = None
2261 if builtin_type is not None: