Searched refs:TypeInfo (Results 1 - 25 of 50) sorted by relevance

12

/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...]
H A DParameterInfo.java26 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
38 public ParameterInfo cloneWithTypeArguments(Map<String, TypeInfo> typeArgumentMapping) {
43 TypeInfo type() {
64 makeHDF(data, base, isLastVararg, typeVariables, Collections.<String, TypeInfo>emptyMap());
68 Map<String, TypeInfo> typeMapping) {
76 makeHDF(data, base, params, isVararg, typeVariables, Collections.<String, TypeInfo>emptyMap());
80 HashSet<String> typeVariables, Map<String, TypeInfo> typeMapping) {
100 TypeInfo mType;
H A DConverter.java119 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.interfaceTypes()))),
151 new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(c.typeParameters()))),
243 private static TypeInfo[] convertTypes(Type[] p) {
246 TypeInfo[] q = new TypeInfo[len];
399 new ArrayList<TypeInfo>(Arrays.asList(
420 new ArrayList<TypeInfo>(Arrays.asList(
441 new MethodInfo(m.getRawCommentText(), new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(m.typeParameters()))), m
504 private static TypeInfo obtainType(Type o) {
505 return (TypeInfo) mType
[all...]
H A DInfoBuilder.java134 Iterator<TypeInfo> it = cl.realInterfaceTypes().iterator();
136 TypeInfo outerType = it.next();
285 private static void printTypeName(TypeInfo type) {
290 for (TypeInfo t : type.extendsBounds()) {
300 for (TypeInfo t : type.superBounds()) {
321 private static void printTypeVariables(TypeInfo type) {
325 private static void printTypeVariableList(ArrayList<TypeInfo> typeList) {
328 for (TypeInfo type : typeList) {
484 TypeInfo type = buildType(child);
523 TypeInfo typ
[all...]
H A DAnnotationValueInfo.java59 if (v instanceof TypeInfo) {
60 return ((TypeInfo) v).fullName();
H A DMethodInfo.java236 public ArrayList<TypeInfo> getTypeParameters() {
245 Map<String, TypeInfo> typeArgumentMapping) {
246 TypeInfo returnType = mReturnType.getTypeWithArguments(typeArgumentMapping);
262 public MethodInfo(String rawCommentText, ArrayList<TypeInfo> typeParameters, String name,
267 MethodInfo overriddenMethod, TypeInfo returnType, ArrayList<ParameterInfo> parameters,
329 public TypeInfo returnType() {
522 TypeInfo myType = mine.type();
552 makeHDF(data, base, Collections.<String, TypeInfo>emptyMap());
555 public void makeHDF(Data data, String base, Map<String, TypeInfo> typeMapping) {
592 TypeInfo
[all...]
H A DClassInfo.java39 * 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 DThrowsTagInfo.java56 public TypeInfo exceptionType() {
H A DStubs.java104 TypeInfo t = p.type();
128 TypeInfo t = p.type();
219 for (TypeInfo tTypeInfo : fInfo.type().typeArguments()) {
231 for (TypeInfo tInfo : cl.asTypeInfo().typeArguments()) {
273 for (TypeInfo tInfo : mInfo.getTypeParameters()) {
286 for (TypeInfo tInfoType : pInfo.type().typeArguments()) {
313 for (TypeInfo tyInfo : mInfo.returnType().typeArguments()) {
401 TypeInfo base = cl.superclassType();
409 List<TypeInfo> usedInterfaces = new ArrayList<TypeInfo>();
[all...]
H A DFieldInfo.java34 boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue,
63 public TypeInfo type() {
490 TypeInfo mType;
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.h24 void *TypeInfo; member in struct:__ubsan::DynamicTypeCacheMissData
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;
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_handlers_cxx.cc32 if (checkDynamicType((void*)Pointer, Data->TypeInfo, Hash))
/external/qemu/qom/
H A Dcontainer.c17 static const TypeInfo container_info = {
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java27 import com.google.doclava.TypeInfo;
119 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ;
124 ArrayList<TypeInfo> typeParameters = new ArrayList<TypeInfo>();
144 TypeInfo returnType = Converter.obtainTypeFromString(attributes.getValue("return"));
163 new MethodInfo(""/*rawCommentText*/, new ArrayList<TypeInfo>()/*typeParameters*/,
180 TypeInfo type = Converter.obtainTypeFromString(typeName);
202 TypeInfo type = Converter.obtainTypeFromString(typeName);
/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/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/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/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/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java32 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 DTypes.cpp19 struct TypeInfo { struct
26 static const TypeInfo TypeInfos[] = {
34 static const TypeInfo &getInfo(unsigned id) {
/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 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...]
/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

Completed in 7090 milliseconds

12