/external/doclava/src/com/google/doclava/ |
H A D | TypeInfo.java | 23 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 47 ArrayList<TypeInfo> generics = new ArrayList<TypeInfo>(); 56 TypeInfo info = new TypeInfo(entry); 71 TypeInfo info = new TypeInfo(typeString.substring(entryStartPos, paramEndPos).trim()); 88 ArrayList<TypeInfo> extendsBound 136 private TypeInfo(TypeInfo other) { method in class:TypeInfo [all...] |
H A D | ParameterInfo.java | 27 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, 40 public ParameterInfo cloneWithTypeArguments(Map<String, TypeInfo> typeArgumentMapping) { 46 TypeInfo type() { 71 makeHDF(data, base, isLastVararg, typeVariables, Collections.<String, TypeInfo>emptyMap()); 75 Map<String, TypeInfo> typeMapping) { 83 makeHDF(data, base, params, isVararg, typeVariables, Collections.<String, TypeInfo>emptyMap()); 87 HashSet<String> typeVariables, Map<String, TypeInfo> typeMapping) { 107 TypeInfo mType;
|
H A D | Converter.java | 121 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.interfaceTypes()))), 153 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.typeParameters()))), 246 private static TypeInfo[] convertTypes(Type[] p) { 249 TypeInfo[] q = new TypeInfo[len]; 402 new ArrayList<TypeInfo>(Arrays.asList( 424 new ArrayList<TypeInfo>(Arrays.asList( 459 new MethodInfo(m.getRawCommentText(), new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(m.typeParameters()))), 522 private static TypeInfo obtainType(Type o) { 523 return (TypeInfo) mType [all...] |
H A D | MethodInfo.java | 236 public ArrayList<TypeInfo> getTypeParameters() { 249 Map<String, TypeInfo> typeArgumentMapping) { 250 TypeInfo returnType = mReturnType.getTypeWithArguments(typeArgumentMapping); 266 public MethodInfo(String rawCommentText, ArrayList<TypeInfo> typeParameters, String name, 271 String flatSignature, MethodInfo overriddenMethod, TypeInfo returnType, 335 public TypeInfo returnType() { 559 TypeInfo myType = mine.type(); 587 makeHDF(data, base, Collections.<String, TypeInfo>emptyMap()); 590 public void makeHDF(Data data, String base, Map<String, TypeInfo> typeMapping) { 629 TypeInfo [all...] |
H A D | InfoBuilder.java | 135 Iterator<TypeInfo> it = cl.realInterfaceTypes().iterator(); 137 TypeInfo outerType = it.next(); 286 private static void printTypeName(TypeInfo type) { 291 for (TypeInfo t : type.extendsBounds()) { 301 for (TypeInfo t : type.superBounds()) { 322 private static void printTypeVariables(TypeInfo type) { 326 private static void printTypeVariableList(ArrayList<TypeInfo> typeList) { 329 for (TypeInfo type : typeList) { 485 TypeInfo type = buildType(child); 524 TypeInfo typ [all...] |
H A D | AnnotationValueInfo.java | 59 if (v instanceof TypeInfo) { 60 return ((TypeInfo) v).fullName();
|
H A D | ClassInfo.java | 39 * Contains a ClassInfo and a TypeInfo. 46 private final TypeInfo mTypeInfo; 48 public ClassTypePair(ClassInfo cl, TypeInfo t) { 57 public TypeInfo typeInfo() { 61 public Map<String, TypeInfo> getTypeArgumentMapping() { 62 return TypeInfo.getTypeArgumentMapping(classInfo(), typeInfo()); 140 public void init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces, 141 ArrayList<TypeInfo> interfaceTypes, ArrayList<ClassInfo> innerClasses, 146 TypeInfo superclassType, ArrayList<AnnotationInstanceInfo> annotations) { 195 public void init3(ArrayList<TypeInfo> type [all...] |
H A D | ThrowsTagInfo.java | 63 public TypeInfo exceptionType() {
|
H A D | Stubs.java | 121 TypeInfo t = p.type(); 155 TypeInfo t = p.type(); 264 private static ClassInfo findHiddenClasses(TypeInfo ti) { 269 for (TypeInfo tii : ti.typeArguments()) { 303 for (TypeInfo tTypeInfo : fInfo.type().typeArguments()) { 315 for (TypeInfo tInfo : cl.asTypeInfo().typeArguments()) { 362 for (TypeInfo tInfo : mInfo.getTypeParameters()) { 375 for (TypeInfo tInfoType : pInfo.type().typeArguments()) { 402 for (TypeInfo tyInfo : mInfo.returnType().typeArguments()) { 541 TypeInfo bas [all...] |
/external/ImageMagick/MagickCore/ |
H A D | type.c | 170 register TypeInfo 173 p=(TypeInfo *) type_info; 275 % const TypeInfo *GetTypeInfo(const char *name,ExceptionInfo *exception) 284 MagickExport const TypeInfo *GetTypeInfo(const char *name, 287 const TypeInfo 292 return((const TypeInfo *) NULL); 297 type_info=(const TypeInfo *) GetNextValueInSplayTree(type_cache); 301 type_info=(const TypeInfo *) GetValueFromSplayTree(type_cache,name); 325 % const TypeInfo *GetTypeInfoByFamily(const char *family, 343 MagickExport const TypeInfo *GetTypeInfoByFamil [all...] |
H A D | type.h | 81 } TypeInfo; typedef in typeref:struct:_TypeInfo 89 extern MagickExport const TypeInfo
|
H A D | nt-feature.c | 348 TypeInfo 382 type_info=(TypeInfo *) AcquireMagickMemory(sizeof(*type_info)); 383 if (type_info == (TypeInfo *) NULL) 385 (void) ResetMagickMemory(type_info,0,sizeof(TypeInfo));
|
/external/compiler-rt/lib/ubsan/ |
H A D | ubsan_value.h | 90 u16 TypeInfo; member in class:__ubsan::TypeDescriptor 119 return isIntegerTy() && (TypeInfo & 1); 122 return isIntegerTy() && !(TypeInfo & 1); 126 return 1 << (TypeInfo >> 1); 132 return TypeInfo;
|
H A D | ubsan_handlers_cxx.h | 24 void *TypeInfo; member in struct:__ubsan::DynamicTypeCacheMissData
|
H A D | ubsan_type_hash_itanium.cc | 192 std::type_info *TypeInfo; member in struct:__anon3361::VtablePrefix 199 if (!Prefix->TypeInfo) 225 dynamic_cast<abi::__class_type_info*>(Vtable->TypeInfo); 245 static_cast<const abi::__class_type_info*>(Vtable->TypeInfo), 247 return DynamicTypeInfo(Vtable->TypeInfo->__type_name, -Vtable->Offset,
|
H A D | ubsan_handlers_cxx.cc | 36 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
H A D | message_registry.py | 15 TypeInfo = collections.namedtuple('TypeInfo', ('type_name', 'variant')) variable 30 'string': TypeInfo(type_name='string', 32 'integer': TypeInfo(type_name='integer', 34 'boolean': TypeInfo(type_name='boolean', 36 'number': TypeInfo(type_name='number', 38 'any': TypeInfo(type_name='extra_types.JsonValue', 43 'int32': TypeInfo(type_name='integer', 45 'uint32': TypeInfo(type_name='integer', 47 'int64': TypeInfo(type_nam [all...] |
/external/doclava/src/com/google/doclava/apicheck/ |
H A D | XmlApiFile.java | 27 import com.google.doclava.TypeInfo; 121 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ; 126 ArrayList<TypeInfo> typeParameters = new ArrayList<TypeInfo>(); 147 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return")); 166 new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/, 183 TypeInfo type = Converter.obtainTypeFromString(typeName); 205 TypeInfo type = Converter.obtainTypeFromString(typeName);
|
H A D | ApiFile.java | 27 import com.google.doclava.TypeInfo; 168 final TypeInfo typeInfo = Converter.obtainTypeFromString(qname); 170 final TypeInfo simpleTypeInfo = Converter.obtainTypeFromString(name); 258 method = new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/, 290 ArrayList<TypeInfo> typeParameters = new ArrayList<>(); 291 TypeInfo returnType; 336 typeVariableNames = TypeInfo.typeVariables(typeParameters); 492 List<TypeInfo> methodTypeParameters, ClassInfo cl) throws ApiParseException { 498 TypeInfo type = new TypeInfo(toke [all...] |
/external/libbrillo/brillo/ |
H A D | type_name_undecorate.h | 21 #error TypeInfo/Any with RTTI disabled is supported on clang compiler only.
|
/external/protobuf/src/google/protobuf/ |
H A D | dynamic_message.cc | 199 struct TypeInfo { struct in class:google::protobuf::DynamicMessage 206 // Not owned by the TypeInfo. 222 TypeInfo() : prototype(NULL), default_oneof_instance(NULL) {} function in struct:google::protobuf::DynamicMessage::TypeInfo 224 ~TypeInfo() { 230 DynamicMessage(const TypeInfo* type_info); 263 const TypeInfo* type_info_; 269 DynamicMessage::DynamicMessage(const TypeInfo* type_info) 518 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map; 554 const DynamicMessage::TypeInfo** target = &prototypes_->map_[type]; 560 DynamicMessage::TypeInfo* type_inf [all...] |
/external/clang/include/clang/Sema/ |
H A D | Initialization.h | 144 TypeSourceInfo *TypeInfo; member in union:clang::InitializedEntity::__anon1038 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/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
H A D | DOM2DTMdefaultNamespaceDeclarationNode.java | 32 import org.w3c.dom.TypeInfo; 53 public class DOM2DTMdefaultNamespaceDeclarationNode implements Attr,TypeInfo 113 * @see org.w3c.dom.TypeInfo#getTypeName() 118 * @see org.w3c.dom.TypeInfo#getTypeNamespace() 123 * @see or.gw3c.dom.TypeInfo#isDerivedFrom(String,String,int) 129 public TypeInfo getSchemaTypeInfo() { return this; }
|
/external/clang/lib/Driver/ |
H A D | Types.cpp | 19 struct TypeInfo { struct 26 static const TypeInfo TypeInfos[] = { 34 static const TypeInfo &getInfo(unsigned id) {
|
/external/clang/lib/CodeGen/ |
H A D | CGObjCRuntime.cpp | 153 llvm::Constant *TypeInfo; member in struct:__anon1307::CatchHandler 205 Handler.TypeInfo = nullptr; // catch-all 210 Handler.TypeInfo = GetEHType(CatchDecl->getType()); 215 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
|