HomeSort by relevance Sort by last modified time
    Searched refs:structure (Results 176 - 200 of 273) sorted by null

1 2 3 4 5 6 78 91011

  /external/webkit/Source/JavaScriptCore/runtime/
RegExpConstructor.cpp 98 RegExpConstructor::RegExpConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, RegExpPrototype* regExpPrototype)
99 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "RegExp"))
ObjectConstructor.cpp 78 ObjectConstructor::ObjectConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ObjectPrototype* objectPrototype)
79 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "Object"))
JSObject.cpp 119 for (JSObject* obj = this; !obj->structure()->hasGetterSetterProperties(); obj = asObject(prototype)) {
327 // putDirect will change our Structure if we add a new property. For
328 // getters and setters, though, we also need to change our Structure
332 setStructure(exec->globalData(), Structure::getterSetterTransition(globalData, m_structure.get()));
352 // putDirect will change our Structure if we add a new property. For
353 // getters and setters, though, we also need to change our Structure
357 setStructure(exec->globalData(), Structure::getterSetterTransition(exec->globalData(), m_structure.get()));
450 if (prototype->structure()->typeInfo().overridesGetPropertyNames()) {
511 setStructure(globalData, Structure::sealTransition(globalData, m_structure.get()));
516 setStructure(globalData, Structure::freezeTransition(globalData, m_structure.get()))
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.cpp 429 Structure* getCachedDOMStructure(JSDOMGlobalObject* globalObject, const ClassInfo* classInfo)
435 Structure* cacheDOMStructure(JSDOMGlobalObject* globalObject, Structure* structure, const ClassInfo* classInfo)
439 return structures.set(classInfo, WriteBarrier<Structure>(globalObject->globalData(), globalObject, structure)).first->second.get();
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 19 import dex.structure.DexFile;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 50 import com.jme3.scene.plugins.blender.file.Structure;
78 * This method builds the object's bones structure.
81 * the structure containing the bones' data
94 public void buildBones(Structure boneStructure, Bone parent, List<Bone> result, Matrix4f arbt, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
120 * a bPose structure of the object
126 public Map<Integer, Integer> getGroupToBoneIndexMap(Structure defBaseStructure, Skeleton skeleton, BlenderContext blenderContext) throws BlenderFileException {
130 List<Structure> deformGroups = defBaseStructure.evaluateListBase(blenderContext);// bDeformGroup
132 for (Structure deformGroup : deformGroups) {
145 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ModifierHelper.java 46 import com.jme3.scene.plugins.blender.file.Structure;
74 * the object structure
81 public Collection<Modifier> readModifiers(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
83 Structure modifiersListBase = (Structure) objectStructure.getFieldValue("modifiers");
84 List<Structure> modifiers = modifiersListBase.evaluateListBase(blenderContext);
85 for (Structure modifierStructure : modifiers) {
120 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {
129 * the object's structure
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
ParticlesHelper.java 17 import com.jme3.scene.plugins.blender.file.Structure;
97 public ParticleEmitter toParticleEmitter(Structure particleSystem, BlenderContext blenderContext) throws BlenderFileException {
101 Structure particleSettings = pParticleSettings.fetchData(blenderContext.getInputStream()).get(0);
193 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {
  /external/libvpx/vp8/encoder/x86/
ssim_opt.asm 58 ; TODO: Use parm passing through structure, probably don't need the pxors
146 ; TODO: Use parm passing through structure, probably don't need the pxors
  /external/mesa3d/src/glsl/
ast_function.cpp 960 type->fields.structure[i].name);
    [all...]
  /external/zlib/contrib/masmx64/
gvmat64.asm 115 ; in the deflate_state structure since the asm code was first written
117 ; Note : these value are good with a 8 bytes boundary pack structure
125 ;;; Offsets for fields in the deflate_state structure. These numbers
133 ; in zlib in the deflate_state structure since the asm code was first written
209 ;;; deflate_state structure during the function's setup (before
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 1346 llvm::StructType *structure = local
    [all...]
  /external/icu4c/common/
Android.mk 108 # This is the empty compiled-in icu data structure
  /external/skia/third_party/glu/libtess/
alg-outline 96 The mesh is a "quad-edge" data structure which records the topology of
215 the mesh structure).
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.h 36 JSTestObj(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<TestObj>);
43 static PassRefPtr<JSC::Structure> createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
45 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
75 static PassRefPtr<JSC::Structure> createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
77 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
79 JSTestObjPrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
  /external/zlib/contrib/masmx86/
match686.asm 75 ; in zlib in the deflate_state structure since the asm code was first written
82 ; Note : these value are good with a 8 bytes boundary pack structure
140 ;;; Offsets for fields in the deflate_state structure. These numbers
211 ;;; deflate_state structure during the function's setup (before
  /libcore/
JavaLibrary.mk 26 # The structure of each module is:
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintHelper.java 16 import com.jme3.scene.plugins.blender.file.Structure;
68 * This method reads constraints for for the given structure. The
72 * the structure we read constraint's for
77 public void loadConstraints(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
84 List<Structure> actions = pActions.fetchData(blenderContext.getInputStream());
85 for (Structure action : actions) {
86 Structure chanbase = (Structure) action.getFieldValue("chanbase");
87 List<Structure> actionChannels = chanbase.evaluateListBase(blenderContext);
88 for (Structure actionChannel : actionChannels) {
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 17 the resource file structure is as follows:
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 77 capable of walking through the AST, verifying its structure and performing
81 closely mirror the general structure of regular parsers and lexers.
92 Like all ANTLR recognizers, tree parsers contained a shared state structure and
679 * cleaning up / normalizing a full tree structure after construction
934 sequences. They preserve the two-dimensional structure of the tree by inserting
    [all...]
main.rb 114 It defines the skeletal structure shared by all main
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 549 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor", "");
624 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
643 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier), "");
671 TTypeList& structure = *type.getStruct(); local
672 for (unsigned int i = 0; i < structure.size(); ++i) {
673 if (containsSampler(*structure[i].type))
    [all...]
glslang.y 364 context->error($2.line, "structure has no fields", "Internal Error", "");
384 // change the qualifier of the return type, not of the structure field
385 // as the structure definition is shared between various structures.
396 context->error($2.line, " no such field in structure", $3.string->c_str(), "");
402 context->error($2.line, " field selection requires structure, vector, or matrix on left hand side", $3.string->c_str(), "");
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
proxy_form_controller_test.js 216 // given a `ProxyConfig` structure
451 // `ProxyRules` structure.
  /external/webkit/Source/JavaScriptCore/API/
JSValueRef.cpp 176 if (!jsConstructor->structure()->typeInfo().implementsHasInstance())

Completed in 1192 milliseconds

1 2 3 4 5 6 78 91011