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

12345

/external/v8/src/
H A Dtype-info.h55 class TypeInfo { class in namespace:v8::internal
57 TypeInfo() : type_(kUninitialized) { } function in class:v8::internal::TypeInfo
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(kInteger3
207 explicit inline TypeInfo(Type t) : type_(t) { } function in class:v8::internal::TypeInfo
[all...]
H A Dtype-info.cc45 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 TypeFeedbackOracl
[all...]
/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());
133 public static String typeArgumentsName(ArrayList<TypeInfo> arg
[all...]
H A DParameterInfo.java24 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg,
33 TypeInfo type() {
78 TypeInfo mType;
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSTypeInfo.h30 // This file would be called TypeInfo.h, but that conflicts with <typeinfo.h>
48 class TypeInfo { class in namespace:JSC
50 TypeInfo(JSType type, unsigned flags = 0) function in class:JSC::TypeInfo
77 return OBJECT_OFFSETOF(TypeInfo, m_flags);
82 return OBJECT_OFFSETOF(TypeInfo, m_type);
H A DNumberObject.h36 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DArrayPrototype.h40 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DBooleanObject.h36 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DDatePrototype.h41 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DErrorInstance.h34 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DFunctionPrototype.h35 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSONObject.h41 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSObjectWithGlobalObject.h39 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DMathObject.h39 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DStringPrototype.h39 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DStructure.h61 static Structure* create(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
97 const TypeInfo& typeInfo() const { return m_typeInfo; }
145 return OBJECT_OFFSETOF(Structure, m_typeInfo) + TypeInfo::flagsOffset();
150 return OBJECT_OFFSETOF(Structure, m_typeInfo) + TypeInfo::typeOffset();
160 Structure(JSGlobalData&, JSValue prototype, const TypeInfo&, unsigned anonymousSlotCount, const ClassInfo*);
210 TypeInfo m_typeInfo;
278 return Structure::create(globalData, jsNull(), TypeInfo(UnspecifiedType), AnonymousSlotCount, 0);
/external/webkit/Source/WebCore/bridge/c/
H A DCRuntimeObject.h49 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaRuntimeObject.h47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebCore/bridge/objc/
H A DObjCRuntimeObject.h47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackConstructor.h44 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSCallbackFunction.h44 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebCore/bindings/js/
H A DJSAudioConstructor.h43 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSImageConstructor.h34 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSOptionConstructor.h35 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DProxyRuntimeObject.h46 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);

Completed in 206 milliseconds

12345