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

1 2 3 4 5 6 7 8 910

  /external/v8/test/cctest/
test-type-info.cc 38 CHECK(TypeInfo::ExpandedRepresentation(
39 TypeInfo::Unknown().ThreeBitRepresentation()).IsUnknown());
40 CHECK(TypeInfo::ExpandedRepresentation(
41 TypeInfo::Number().ThreeBitRepresentation()).IsNumber());
42 CHECK(TypeInfo::ExpandedRepresentation(
43 TypeInfo::Integer32().ThreeBitRepresentation()).IsInteger32());
44 CHECK(TypeInfo::ExpandedRepresentation(
45 TypeInfo::Smi().ThreeBitRepresentation()).IsSmi());
46 CHECK(TypeInfo::ExpandedRepresentation(
47 TypeInfo::Double().ThreeBitRepresentation()).IsDouble())
    [all...]
  /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 52 class TypeInfo {
54 TypeInfo() : type_(kUninitialized) { }
56 static TypeInfo Unknown() { return TypeInfo(kUnknown); }
58 static TypeInfo Primitive() { return TypeInfo(kPrimitive); }
60 static TypeInfo Number() { return TypeInfo(kNumber); }
62 static TypeInfo Integer32() { return TypeInfo(kInteger32);
    [all...]
type-info.cc 44 TypeInfo TypeInfo::TypeFromValue(Handle<Object> value) {
45 TypeInfo info;
47 info = TypeInfo::Smi();
49 info = TypeInfo::IsInt32Double(HeapNumber::cast(*value)->value())
50 ? TypeInfo::Integer32()
51 : TypeInfo::Double();
53 info = TypeInfo::String();
55 info = TypeInfo::Unknown();
215 TypeInfo TypeFeedbackOracle::CompareType(CompareOperation* expr)
    [all...]
frame-element.h 57 inline TypeInfo type_info() {
61 return TypeInfo::FromInt(TypeInfoField::decode(value_));
64 inline void set_type_info(TypeInfo info) {
77 | TypeInfoField::encode(TypeInfo::Uninitialized().ToInt())
88 static FrameElement MemoryElement(TypeInfo info) {
96 TypeInfo info) {
104 TypeInfo info = TypeInfo::TypeFromValue(value);
215 TypeInfo info) {
224 FrameElement(Handle<Object> value, SyncFlag is_synced, TypeInfo info)
    [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/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 117 static class TypeInfo {
128 public TypeInfo(String uiName,
246 * TypeInfo, information for each "type" of file that can be created.
248 private static final TypeInfo[] sTypes = {
249 new TypeInfo(
316 new TypeInfo("Values", // UI name
325 new TypeInfo("Drawable", // UI name
334 new TypeInfo("Menu", // UI name
343 new TypeInfo("Color List", // UI name
352 new TypeInfo("Property Animation", // UI nam
    [all...]

Completed in 892 milliseconds

1 2 3 4 5 6 7 8 910