HomeSort by relevance Sort by last modified time
    Searched refs:TypeInfo (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/java/javax/xml/validation/
TypeInfoProvider.java 21 import org.w3c.dom.TypeInfo;
39 * @see org.w3c.dom.TypeInfo
54 * <p>Returns the immutable {@link TypeInfo} object for the current element.</p>
65 * An immutable {@link TypeInfo} object that represents the
68 * {@link TypeInfo} longer than the callback scope.
77 public abstract TypeInfo getElementTypeInfo();
80 * Returns the immutable {@link TypeInfo} object for the specified
100 * An immutable {@link TypeInfo} object that represents the
103 * {@link TypeInfo} longer than the callback scope.
109 public abstract TypeInfo getAttributeTypeInfo(int index)
    [all...]
  /external/doclava/src/com/google/doclava/
TypeInfo.java 23 public class TypeInfo implements Resolvable {
28 public TypeInfo(boolean isPrimitive, String dimension, String simpleTypeName,
37 public TypeInfo(String typeString) {
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(TypeInfo other)
    [all...]
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;
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) mTypes.obtain(o)
    [all...]
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 type = buildType((ParseTree) o)
    [all...]
AnnotationValueInfo.java 59 if (v instanceof TypeInfo) {
60 return ((TypeInfo) v).fullName();
MethodInfo.java 236 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 String flatSignature, MethodInfo overriddenMethod, TypeInfo returnType,
331 public TypeInfo returnType() {
555 TypeInfo myType = mine.type();
583 makeHDF(data, base, Collections.<String, TypeInfo>emptyMap());
586 public void makeHDF(Data data, String base, Map<String, TypeInfo> typeMapping) {
625 TypeInfo.makeHDF(data, base + ".generic.typeArguments", mTypeParameters, false)
    [all...]
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
    [all...]
ThrowsTagInfo.java 63 public TypeInfo exceptionType() {
  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 225 public TypeInfo getSchemaTypeInfo();
TypeInfo.java 16 * The <code>TypeInfo</code> interface represents a type referenced from
90 * <code>TypeInfo</code>.
94 public interface TypeInfo {
161 * type definition, i.e. the <code>TypeInfo</code> on which the method
Element.java 367 public TypeInfo getSchemaTypeInfo();
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 90 u16 TypeInfo;
119 return isIntegerTy() && (TypeInfo & 1);
122 return isIntegerTy() && !(TypeInfo & 1);
126 return 1 << (TypeInfo >> 1);
132 return TypeInfo;
ubsan_handlers_cxx.h 24 void *TypeInfo;
ubsan_type_hash_itanium.cc 192 std::type_info *TypeInfo;
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,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 113 static class TypeInfo {
124 public TypeInfo(String uiName,
242 * TypeInfo, information for each "type" of file that can be created.
244 private static final TypeInfo[] sTypes = {
245 new TypeInfo(
313 new TypeInfo("Values", // UI name
322 new TypeInfo("Drawable", // UI name
331 new TypeInfo("Menu", // UI name
340 new TypeInfo("Color List", // UI name
349 new TypeInfo("Property Animation", // UI nam
    [all...]
NewXmlFileWizard.java 35 import com.android.ide.eclipse.adt.internal.wizards.newxmlfile.NewXmlFileCreationPage.TypeInfo;
171 TypeInfo type = mValues.type;
308 TypeInfo typeInfo = NewXmlFileCreationPage.getTypeInfo(folderType);
309 return typeInfo != null && (typeInfo.getDefaultRoot(null /*project*/) != null ||
310 typeInfo.getRootSeed() instanceof String);
323 TypeInfo type = NewXmlFileCreationPage.getTypeInfo(folderType);
384 public TypeInfo type;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 23 import org.w3c.dom.TypeInfo;
114 public TypeInfo getSchemaTypeInfo() {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
message_registry.py 15 TypeInfo = collections.namedtuple('TypeInfo', ('type_name', 'variant'))
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_name='string'
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java 27 import com.google.doclava.TypeInfo;
121 TypeInfo typeInfo = Converter.obtainTypeFromString(qualifiedName) ;
122 mCurrentClass.setTypeInfo(typeInfo);
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)
    [all...]
  /external/libbrillo/brillo/
type_name_undecorate.h 9 #include <typeinfo>
21 #error TypeInfo/Any with RTTI disabled is supported on clang compiler only.
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 199 struct TypeInfo {
206 // Not owned by the TypeInfo.
222 TypeInfo() : prototype(NULL), default_oneof_instance(NULL) {}
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_info = new DynamicMessage::TypeInfo
    [all...]
  /external/clang/include/clang/Sema/
Initialization.h 144 TypeSourceInfo *TypeInfo;
265 Result.TypeInfo = nullptr;
270 static InitializedEntity InitializeTemporary(TypeSourceInfo *TypeInfo) {
272 TypeInfo->getType());
273 Result.TypeInfo = TypeInfo;
328 Result.TypeInfo = TSI;
348 return TypeInfo;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
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/
Types.cpp 19 struct TypeInfo {
26 static const TypeInfo TypeInfos[] = {
34 static const TypeInfo &getInfo(unsigned id) {

Completed in 1032 milliseconds

1 2 3 4 5