Searched defs:TypeInfo (Results 1 - 25 of 26) sorted by relevance

12

/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h24 void *TypeInfo; member in struct:__ubsan::DynamicTypeCacheMissData
H A Dubsan_type_hash.cc195 std::type_info *TypeInfo; member in struct:__anon19643::VtablePrefix
202 if (Prefix->Offset > 0 || !Prefix->TypeInfo)
227 dynamic_cast<abi::__class_type_info*>(Vtable->TypeInfo);
246 static_cast<const abi::__class_type_info*>(Vtable->TypeInfo),
248 return DynamicTypeInfo(Vtable->TypeInfo->__type_name, -Vtable->Offset,
H A Dubsan_value.h97 u16 TypeInfo; member in class:__ubsan::TypeDescriptor
126 return isIntegerTy() && (TypeInfo & 1);
129 return isIntegerTy() && !(TypeInfo & 1);
133 return 1 << (TypeInfo >> 1);
139 return TypeInfo;
/external/chromium_org/ppapi/
H A Dgenerate_ppapi_size_checks.py42 class TypeInfo(object): class in inherits:object
57 TypeInfo (as the info_string parameter to __init__). This is
62 """Create a TypeInfo from a given info_string. Also store the name of the
63 target for which the TypeInfo was first created just so we can print useful
143 """Check if a TypeInfo exists already in the given map with the same name. If
195 typeinfo = TypeInfo(line, target)
200 """Convert the TypeInfo to an appropriate C compile assertion.
300 # Dictionaries mapping type names to TypeInfo objects.
317 # information about all types in the translation unit, and add a TypeInfo
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.cc168 struct TypeInfo { struct in class:google::protobuf::DynamicMessage
174 // Not owned by the TypeInfo.
189 TypeInfo() : prototype(NULL) {} function in struct:google::protobuf::DynamicMessage::TypeInfo
191 ~TypeInfo() {
196 DynamicMessage(const TypeInfo* type_info);
228 const TypeInfo* type_info_;
234 DynamicMessage::DynamicMessage(const TypeInfo* type_info)
445 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
478 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type];
484 DynamicMessage::TypeInfo* type_inf
[all...]
/external/clang/lib/Driver/
H A DTypes.cpp19 struct TypeInfo { struct
26 static const TypeInfo TypeInfos[] = {
34 static const TypeInfo &getInfo(unsigned id) {
/external/chromium_org/sandbox/win/src/
H A Dhandle_table.cc149 const OBJECT_TYPE_INFORMATION* HandleTable::HandleEntry::TypeInfo() { function in class:sandbox::HandleTable::HandleEntry
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc166 struct TypeInfo { struct in class:google::protobuf::DynamicMessage
172 // Not owned by the TypeInfo.
184 DynamicMessage(const TypeInfo* type_info);
216 const TypeInfo* type_info_;
222 DynamicMessage::DynamicMessage(const TypeInfo* type_info)
432 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
465 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type];
471 DynamicMessage::TypeInfo* type_info = new DynamicMessage::TypeInfo;
/external/qemu/include/qom/
H A Dobject.h31 typedef struct TypeInfo TypeInfo; typedef in typeref:struct:TypeInfo
68 * static const TypeInfo my_device_info = {
83 * In the above example, we create a simple type that is described by #TypeInfo.
84 * #TypeInfo describes information about the type including what it inherits
125 * Once all of the parent classes have been initialized, #TypeInfo::class_init
141 * static const TypeInfo my_device_info = {
151 * struct and to add a .class_size member to the #TypeInfo. Each method
166 * static const TypeInfo my_device_info = {
203 * #TypeInfo
431 struct TypeInfo struct
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp152 llvm::Constant *TypeInfo; member in struct:__anon17849::CatchHandler
204 Handler.TypeInfo = nullptr; // catch-all
209 Handler.TypeInfo = GetEHType(CatchDecl->getType());
214 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
H A DCGException.cpp450 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, local
466 llvm::Value *args[] = { ExceptionPtr, TypeInfo, Dtor };
607 llvm::Constant *TypeInfo = nullptr; local
609 TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
611 TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
612 CatchScope->setHandler(I, TypeInfo, Handler);
H A DCGExprAgg.cpp1334 std::pair<CharUnits, CharUnits> TypeInfo = local
1336 if (TypeInfo.first <= CharUnits::fromQuantity(16))
1342 if (NumNonZeroBytes*4 > TypeInfo.first)
1346 llvm::Constant *SizeVal = CGF.Builder.getInt64(TypeInfo.first.getQuantity());
1347 CharUnits Align = TypeInfo.second;
1423 std::pair<CharUnits, CharUnits> TypeInfo; local
1425 TypeInfo = getContext().getTypeInfoDataSizeInChars(Ty);
1427 TypeInfo = getContext().getTypeInfoInChars(Ty);
1430 alignment = TypeInfo.second;
1463 CharUnits size = TypeInfo
[all...]
H A DCGExprCXX.cpp1655 llvm::Constant *TypeInfo = local
1657 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
H A DCodeGenFunction.cpp1203 std::pair<CharUnits, CharUnits> TypeInfo = local
1205 CharUnits Size = TypeInfo.first;
1206 CharUnits Align = TypeInfo.second;
H A DCGExpr.cpp2082 /// { i16 TypeKind, i16 TypeInfo }
2093 uint16_t TypeInfo = 0; local
2097 TypeInfo = (llvm::Log2_32(getContext().getTypeSize(T)) << 1) |
2101 TypeInfo = getContext().getTypeSize(T);
2113 Builder.getInt16(TypeKind), Builder.getInt16(TypeInfo),
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java23 public class TypeInfo implements Resolvable { class in inherits:Resolvable
28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName, method in class:TypeInfo
37 public TypeInfo(String typeString) { method in class:TypeInfo
46 ArrayList<TypeInfo> generics = new ArrayList<TypeInfo>();
55 TypeInfo info = new TypeInfo(entry);
65 TypeInfo info = new TypeInfo(typeString.substring(entryStartPos, paramEndPos).trim());
104 private TypeInfo(TypeInf method in class:TypeInfo
[all...]
/external/clang/include/clang/AST/
H A DExprCXX.h1548 TypeSourceInfo *TypeInfo; member in class:clang::CXXScalarValueInitExpr
1556 TypeSourceInfo *TypeInfo,
1560 RParenLoc(rParenLoc), TypeInfo(TypeInfo) {}
1566 return TypeInfo;
1555 CXXScalarValueInitExpr(QualType Type, TypeSourceInfo *TypeInfo, SourceLocation rParenLoc ) argument
/external/clang/include/clang/Sema/
H A DInitialization.h144 TypeSourceInfo *TypeInfo; member in union:clang::InitializedEntity::__anon17621
265 Result.TypeInfo = nullptr;
270 static InitializedEntity InitializeTemporary(TypeSourceInfo *TypeInfo) { argument
272 TypeInfo->getType());
273 Result.TypeInfo = TypeInfo;
328 Result.TypeInfo = TSI;
348 return TypeInfo;
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2174 static bool isCatchAll(Personality_Type Personality, Constant *TypeInfo) { argument
2184 return TypeInfo->isNullValue();
2214 Constant *TypeInfo = CatchClause->stripPointerCasts(); local
2218 if (AlreadyCaught.insert(TypeInfo)) {
2228 if (isCatchAll(Personality, TypeInfo)) {
2263 Constant *TypeInfo = local
2266 if (isCatchAll(Personality, TypeInfo)) {
2274 NewFilterElts.push_back(TypeInfo);
2288 Constant *TypeInfo = Elt->stripPointerCasts(); local
2289 if (isCatchAll(Personality, TypeInfo)) {
[all...]
/external/llvm/include/llvm/Support/
H A DCOFF.h632 uint16_t TypeInfo; member in struct:llvm::COFF::ImportHeader
635 return static_cast<ImportType>(TypeInfo & 0x3);
639 return static_cast<ImportNameType>((TypeInfo & 0x1C) >> 3);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Ddbghelp.h405 BOOL TypeInfo; member in struct:_IMAGEHLP_MODULE64
429 BOOL TypeInfo; member in struct:_IMAGEHLP_MODULE64W
/external/clang/lib/Sema/
H A DSemaChecking.cpp8008 /// \param TypeInfo Information about the corresponding C type.
8017 Sema::TypeTagData &TypeInfo) {
8034 TypeInfo.Type = I->getMatchingCType();
8035 TypeInfo.LayoutCompatible = I->getLayoutCompatible();
8036 TypeInfo.MustBeNull = I->getMustBeNull();
8051 TypeInfo = I->second;
8096 TypeTagData TypeInfo; local
8099 FoundWrongKind, TypeInfo)) {
8121 if (TypeInfo.MustBeNull) {
8134 QualType RequiredType = TypeInfo
8011 GetMatchingCType( const IdentifierInfo *ArgumentKind, const Expr *TypeExpr, const ASTContext &Ctx, const llvm::DenseMap<Sema::TypeTagMagicValue, Sema::TypeTagData> *MagicValues, bool &FoundWrongKind, Sema::TypeTagData &TypeInfo) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h405 BOOL TypeInfo; member in struct:_IMAGEHLP_MODULE64
429 BOOL TypeInfo; member in struct:_IMAGEHLP_MODULE64W
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 481 milliseconds

12