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

1 2 3 4 5 6 7 8 910

  /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/v8/src/
type-info.h 55 class TypeInfo {
57 TypeInfo() : type_(kUninitialized) { }
59 static TypeInfo Unknown() { return TypeInfo(kUnknown); }
61 static TypeInfo Primitive() { return TypeInfo(kPrimitive); }
63 static TypeInfo Number() { return TypeInfo(kNumber); }
65 static TypeInfo Integer32() { return TypeInfo(kInteger32);
    [all...]
type-info.cc 45 TypeInfo TypeInfo::TypeFromValue(Handle<Object> value) {
46 TypeInfo info;
48 info = TypeInfo::Smi();
50 info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
51 ? TypeInfo::Integer32()
52 : TypeInfo::Double();
54 info = TypeInfo::String();
56 info = TypeInfo::Unknown();
302 TypeInfo TypeFeedbackOracle::CompareType(CompareOperation* expr)
    [all...]
  /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
  /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());
133 public static String typeArgumentsName(ArrayList<TypeInfo> args, HashSet<String> typeVars)
    [all...]
ParameterInfo.java 24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
33 TypeInfo type() {
78 TypeInfo mType;
  /external/compiler-rt/lib/ubsan/
ubsan_handlers_cxx.h 24 void *TypeInfo;
ubsan_value.h 97 u16 TypeInfo;
125 return isIntegerTy() && (TypeInfo & 1);
128 return isIntegerTy() && !(TypeInfo & 1);
132 return 1 << (TypeInfo >> 1);
138 return TypeInfo;
  /external/webkit/Source/JavaScriptCore/runtime/
JSTypeInfo.h 30 // This file would be called TypeInfo.h, but that conflicts with <typeinfo.h>
48 class TypeInfo {
50 TypeInfo(JSType type, unsigned flags = 0)
77 return OBJECT_OFFSETOF(TypeInfo, m_flags);
82 return OBJECT_OFFSETOF(TypeInfo, m_type);
ArrayPrototype.h 40 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
FunctionPrototype.h 35 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
MathObject.h 39 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
NumberObject.h 36 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
BooleanObject.h 36 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
DatePrototype.h 41 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
ErrorInstance.h 34 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaRuntimeObject.h 47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/bridge/objc/
ObjCRuntimeObject.h 47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackFunction.h 44 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSCallbackConstructor.h 44 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/bindings/js/
JSImageConstructor.h 34 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSOptionConstructor.h 35 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/bridge/c/
CRuntimeObject.h 49 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /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...]

Completed in 400 milliseconds

1 2 3 4 5 6 7 8 910