HomeSort by relevance Sort by last modified time
    Searched refs:structure (Results 76 - 100 of 279) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/JavaScriptCore/runtime/
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();
FunctionConstructor.cpp 40 FunctionConstructor::FunctionConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, FunctionPrototype* functionPrototype)
41 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, functionPrototype->classInfo()->className))
JSByteArray.cpp 38 JSByteArray::JSByteArray(ExecState* exec, Structure* structure, ByteArray* storage)
39 : JSNonFinalObject(exec->globalData(), structure)
53 Structure* JSByteArray::createStructure(JSGlobalData& globalData, JSValue prototype, const JSC::ClassInfo* classInfo)
55 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, classInfo);
NumberConstructor.cpp 57 NumberConstructor::NumberConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, NumberPrototype* numberPrototype)
58 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype->s_info.className))
  /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/dex-tools/src/dex/reader/
DexFileImpl.java 23 import dex.structure.DexClass;
24 import dex.structure.DexFile;
  /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/heap/
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/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/webkit/Source/JavaScriptCore/jit/
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...]
  /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...]
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 34 import dex.structure.DexAnnotation;
35 import dex.structure.DexAnnotationAttribute;
36 import dex.structure.DexClass;
37 import dex.structure.DexEncodedValue;
38 import dex.structure.DexField;
39 import dex.structure.DexFile;
40 import dex.structure.DexMethod;
41 import dex.structure.DexParameter;
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 34 import dex.structure.DexAnnotatedElement;
35 import dex.structure.DexAnnotation;
36 import dex.structure.DexAnnotationAttribute;
37 import dex.structure.DexClass;
38 import dex.structure.DexEncodedValue;
39 import dex.structure.DexField;
40 import dex.structure.DexFile;
41 import dex.structure.DexMethod;

Completed in 519 milliseconds

1 2 34 5 6 7 8 91011>>