HomeSort by relevance Sort by last modified time
    Searched refs:typeInfo (Results 1 - 16 of 16) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSPropertyNameIterator.cpp 67 !o->structure()->typeInfo().overridesGetPropertyNames())
75 if (o->structure()->typeInfo().overridesGetPropertyNames())
82 if (structure[i]->typeInfo().overridesGetPropertyNames())
Operations.cpp 74 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
88 JSType type = asCell(v)->structure()->typeInfo().type();
92 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
JSCell.h 55 return Structure::create(jsNull(), TypeInfo(UnspecifiedType), AnonymousSlotCount);
140 return m_structure->typeInfo().type() == NumberType;
146 return m_structure->typeInfo().type() == ObjectType;
151 return m_structure->typeInfo().type() == StringType;
301 return asCell()->structure()->typeInfo().needsThisConversion();
335 if (cell->structure()->typeInfo().type() >= CompoundType)
Structure.h 64 static PassRefPtr<Structure> create(JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount)
66 return adoptRef(new Structure(prototype, typeInfo, anonymousSlotCount));
95 const TypeInfo& typeInfo() const { return m_typeInfo; }
145 Structure(JSValue prototype, const TypeInfo&, unsigned anonymousSlotCount);
193 TypeInfo m_typeInfo;
JSGlobalObject.h 270 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
360 if (typeInfo().type() == ObjectType)
364 if (typeInfo().type() == StringType)
367 ASSERT(typeInfo().type() == NumberType);
370 ASSERT(typeInfo().type() == StringType);
JSArray.h 91 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
162 if (!cell->structure()->typeInfo().overridesMarkChildren()) {
206 if (cell->structure()->typeInfo().type() < CompoundType) {
Structure.cpp 126 Structure::Structure(JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount)
127 : m_typeInfo(typeInfo)
341 ASSERT(structure->typeInfo().type() == ObjectType);
357 ASSERT(structure->typeInfo().type() == ObjectType);
374 RefPtr<Structure> transition = create(structure->m_prototype, structure->typeInfo(), structure->anonymousSlotCount());
427 RefPtr<Structure> transition = create(prototype, structure->typeInfo(), structure->anonymousSlotCount());
447 RefPtr<Structure> transition = create(structure->storedPrototype(), structure->typeInfo(), structure->anonymousSlotCount());
473 RefPtr<Structure> transition = create(structure->storedPrototype(), structure->typeInfo(), structure->anonymousSlotCount());
493 RefPtr<Structure> transition = create(structure->m_prototype, structure->typeInfo(), structure->anonymousSlotCount())
    [all...]
Operations.h 193 return v2.asCell()->structure()->typeInfo().masqueradesAsUndefined();
199 return v1.asCell()->structure()->typeInfo().masqueradesAsUndefined();
JSObject.cpp 437 if (prototype->structure()->typeInfo().overridesGetPropertyNames()) {
JSObject.h 209 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
378 if (!structure()->typeInfo().overridesGetOwnPropertySlot())
  /libcore/luni/src/test/java/tests/xml/
DomTest.java 38 import org.w3c.dom.TypeInfo;
    [all...]
  /external/webkit/JavaScriptCore/API/
JSValueRef.cpp 174 if (!jsConstructor->structure()->typeInfo().implementsHasInstance())
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /build/tools/droiddoc/src/
ClassInfo.java 72 public void init(TypeInfo typeInfo, ClassInfo[] interfaces, TypeInfo[] interfaceTypes,
77 ClassInfo superclass, TypeInfo superclassType, AnnotationInstanceInfo[] annotations)
79 mTypeInfo = typeInfo;
115 public void init3(TypeInfo[] types, ClassInfo[] realInnerClasses){
124 public TypeInfo[] getTypeParameters(){
237 HashSet<String> result = TypeInfo.typeVariables(mTypeInfo.typeArguments());
240 TypeInfo[] types = cl.asTypeInfo().typeArguments();
242 TypeInfo.typeVariables(types, result)
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 286 if (value.isObject() && asObject(value)->structure()->typeInfo().implementsHasInstance())
    [all...]
  /external/webkit/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp     [all...]

Completed in 175 milliseconds