/external/webkit/Source/JavaScriptCore/heap/ |
MarkStack.cpp | 35 #include "Structure.h" 60 if (cell->structure()->typeInfo().type() < CompoundType) { 65 if (!cell->structure()->typeInfo().overridesMarkChildren()) { 113 if (cell->structure()->typeInfo().type() < CompoundType) {
|
MarkedBlock.cpp | 61 Structure* dummyMarkableCellStructure = globalData->dummyMarkableCellStructure.get(); 68 Structure* dummyMarkableCellStructure = m_heap->globalData()->dummyMarkableCellStructure.get(); 76 if (cell->structure() && cell->structure() != dummyMarkableCellStructure && !cell->isZombie()) {
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Operations.cpp | 74 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined()) 88 JSType type = v.asCell()->structure()->typeInfo().type(); 92 if (asObject(v)->structure()->typeInfo().masqueradesAsUndefined())
|
JSObject.h | 36 #include "Structure.h" 54 class Structure; 93 void setStructure(JSGlobalData&, Structure*); 94 Structure* inheritorID(JSGlobalData&); 173 void transitionTo(JSGlobalData&, Structure*); 252 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 254 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); 266 JSObject(JSGlobalData&, Structure*, PropertyStorage inlineStorage); 303 Structure* createInheritorID(JSGlobalData&); 306 WriteBarrier<Structure> m_inheritorID [all...] |
ArrayConstructor.cpp | 40 ArrayConstructor::ArrayConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ArrayPrototype* arrayPrototype, Structure* functionStructure) 41 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, arrayPrototype->classInfo()->className))
|
BooleanConstructor.cpp | 31 BooleanConstructor::BooleanConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, BooleanPrototype* booleanPrototype) 32 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, booleanPrototype->classInfo()->className))
|
NativeErrorConstructor.cpp | 35 NativeErrorConstructor::NativeErrorConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* prototypeStructure, const UString& nameAndMessage) 36 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, nameAndMessage)) 59 Structure* errorStructure = static_cast<NativeErrorConstructor*>(exec->callee())->errorStructure(); 73 Structure* errorStructure = static_cast<NativeErrorConstructor*>(exec->callee())->errorStructure();
|
/external/webkit/Source/JavaScriptCore/jit/ |
JITPropertyAccess.cpp | 161 // Test base's structure 331 // Do the method check - check the object & its prototype's structure inline (this is the common case). 404 // As for put_by_id, get_by_id requires the offset of the Structure and the offset of the access to be patched. 479 // In order to be able to patch both the Structure, and the object offset, we store one pointer, 481 // such that the Structure & offset are always at the same distance from this. 485 // Jump to a slow case if either the base object is an immediate, or if the Structure does not match. 529 void JIT::compilePutDirectOffset(RegisterID base, RegisterID value, Structure* structure, size_t cachedOffset) 532 if (structure->isUsingInlineStorage()) 540 void JIT::compileGetDirectOffset(RegisterID base, RegisterID result, Structure* structure, size_t cachedOffset [all...] |
JITPropertyAccess32_64.cpp | 204 // Do the method check - check the object & its prototype's structure inline (this is the common case). 420 // As for put_by_id, get_by_id requires the offset of the Structure and the offset of the access to be patched. 489 // In order to be able to patch both the Structure, and the object offset, we store one pointer, 491 // such that the Structure & offset are always at the same distance from this. 542 void JIT::compilePutDirectOffset(RegisterID base, RegisterID valueTag, RegisterID valuePayload, Structure* structure, size_t cachedOffset) 545 if (structure->isUsingInlineStorage()) 553 void JIT::compileGetDirectOffset(RegisterID base, RegisterID resultTag, RegisterID resultPayload, Structure* structure, size_t cachedOffset) 556 if (structure->isUsingInlineStorage()) [all...] |
/cts/tools/dex-tools/src/dex/reader/ |
DexMethodImpl.java | 32 import dex.structure.DexAnnotation; 33 import dex.structure.DexClass; 34 import dex.structure.DexMethod; 35 import dex.structure.DexParameter;
|
DexFileImpl.java | 23 import dex.structure.DexClass; 24 import dex.structure.DexFile;
|
/cts/tools/dex-tools/test/dex/reader/util/ |
JavaSourceToDexUtil.java | 43 public dex.structure.DexFile getFrom(JavaSource source) throws IOException{ 47 public dex.structure.DexFile getFrom(JavaSource... source) throws IOException{ 51 public dex.structure.DexFile getAllFrom(Set<JavaSource> sources) throws IOException{ 56 * Converts java source code to a {@link dex.structure.DexFile} loaded by 62 public dex.structure.DexFile getFrom(Set<JavaSource> sources,
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
IpoHelper.java | 13 import com.jme3.scene.plugins.blender.file.Structure;
41 * the structure with ipo definition
49 public Ipo fromIpoStructure(Structure ipoStructure, BlenderContext blenderContext) throws BlenderFileException {
50 Structure curvebase = (Structure) ipoStructure.getFieldValue("curve");
54 List<Structure> curves = curvebase.evaluateListBase(blenderContext);// IpoCurve
58 for (Structure curve : curves) {
60 List<Structure> bezTriples = pBezTriple.fetchData(blenderContext.getInputStream());
76 * the structure with action definition
84 public Ipo fromAction(Structure actionStructure, BlenderContext blenderContext) throws BlenderFileException { [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
FirstFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure;
|
LastFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure;
|
NameFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure;
|
SubcountFunction.java | 17 package com.google.clearsilver.jsilver.functions.structure;
|
/external/webkit/Source/WebCore/bindings/js/ |
WorkerScriptController.cpp | 77 Structure* workerContextPrototypeStructure = JSWorkerContextPrototype::createStructure(*m_globalData, jsNull()); 81 Structure* dedicatedContextPrototypeStructure = JSDedicatedWorkerContextPrototype::createStructure(*m_globalData, workerContextPrototype.get()); 83 Structure* structure = JSDedicatedWorkerContext::createStructure(*m_globalData, dedicatedContextPrototype.get()); local 85 m_workerContextWrapper.set(*m_globalData, new (m_globalData.get()) JSDedicatedWorkerContext(*m_globalData, structure, m_workerContext->toDedicatedWorkerContext())); 91 Structure* sharedContextPrototypeStructure = JSSharedWorkerContextPrototype::createStructure(*m_globalData, workerContextPrototype.get()); 93 Structure* structure = JSSharedWorkerContext::createStructure(*m_globalData, sharedContextPrototype.get()); local 95 m_workerContextWrapper.set(*m_globalData, new (m_globalData.get()) JSSharedWorkerContext(*m_globalData, structure, m_workerContext->toSharedWorkerContext()));
|
JSDOMGlobalObject.cpp | 45 JSDOMGlobalObject::JSDOMGlobalObject(JSGlobalData& globalData, Structure* structure, PassRefPtr<DOMWrapperWorld> world, JSObject* thisValue) 46 : JSGlobalObject(globalData, structure, thisValue)
|
/cts/tools/signature-tools/test/signature/converter/dex/ |
DexUtilTest.java | 23 import dex.structure.DexClass; 24 import dex.structure.DexFile;
|
/external/webkit/Source/JavaScriptCore/API/ |
JSCallbackConstructor.cpp | 41 JSCallbackConstructor::JSCallbackConstructor(JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, JSObjectCallAsConstructorCallback callback) 42 : JSObjectWithGlobalObject(globalObject, structure)
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
Interpreter.cpp | 167 Structure* structure = vPC[3].u.structure.get(); local 170 if (structure == globalObject->structure()) { 179 if (slot.isCacheableValue() && !globalObject->structure()->isUncacheableDictionary() && slot.slotBase() == globalObject) { 180 vPC[3].u.structure.set(callFrame->globalData(), codeBlock->ownerExecutable(), globalObject->structure()); 204 Structure* structure = vPC[3].u.structure.get() local 1215 Structure* structure = baseCell->structure(); local 1303 Structure* structure = baseValue.asCell()->structure(); local [all...] |
/external/mesa3d/src/glsl/ |
opt_structure_splitting.cpp | 27 * If a structure is only ever referenced by its components, then 157 /* We'll split copies of a structure to copies of components, so don't 232 entry->var->type->fields.structure[i].name) == 0) 274 type->fields.structure[i].name); 282 type->fields.structure[i].name); 312 printf("structure %s@%p: decl %d, whole_access %d\n", 343 type->fields.structure[i].name); 346 new(entry->mem_ctx) ir_variable(type->fields.structure[i].type,
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
VariableInfo.cpp | 122 const TTypeList* structure = type.getStruct(); local 123 for (size_t i = 0; i < structure->size(); ++i) { 124 const TType* fieldType = (*structure)[i].type;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
Field.java | 5 import com.jme3.scene.plugins.blender.file.Structure.DataType;
10 * This class represents a single field in the structure. It can be either a primitive type or a table or a reference to
11 * another structure.
180 case STRUCTURE:
182 Structure structure = blenderContext.getDnaBlockData().getStructure(type);
local 183 structure.fill(blenderInputStream);
184 value = structure;
186 Structure[] data = new Structure[dataToRead]; 188 Structure structure = blenderContext.getDnaBlockData().getStructure(type); local [all...] |