Searched refs:structure (Results 1 - 25 of 199) sorted by relevance

12345678

/external/webkit/Source/JavaScriptCore/runtime/
H A DBooleanObject.cpp30 BooleanObject::BooleanObject(JSGlobalData& globalData, Structure* structure) argument
31 : JSWrapperObject(globalData, structure)
H A DJSPropertyNameIterator.cpp53 ASSERT(!o->structure()->enumerationCache() ||
54 o->structure()->enumerationCache()->cachedStructure() != o->structure() ||
55 o->structure()->enumerationCache()->cachedPrototypeChain() != o->structure()->prototypeChain(exec));
60 if (!o->structure()->hasNonEnumerableProperties() && !o->structure()->hasAnonymousSlots() &&
61 !o->structure()->hasGetterSetterProperties() && !o->structure()->isUncacheableDictionary() &&
62 !o->structure()
75 WriteBarrier<Structure>* structure = structureChain->head(); local
[all...]
H A DErrorInstance.cpp28 ErrorInstance::ErrorInstance(JSGlobalData* globalData, Structure* structure) argument
29 : JSNonFinalObject(*globalData, structure)
36 ErrorInstance::ErrorInstance(JSGlobalData* globalData, Structure* structure, const UString& message) argument
37 : JSNonFinalObject(*globalData, structure)
44 ErrorInstance* ErrorInstance::create(JSGlobalData* globalData, Structure* structure, const UString& message) argument
46 return new (globalData) ErrorInstance(globalData, structure, message);
49 ErrorInstance* ErrorInstance::create(ExecState* exec, Structure* structure, JSValue message) argument
52 return new (exec) ErrorInstance(&exec->globalData(), structure);
53 return new (exec) ErrorInstance(&exec->globalData(), structure, message.toString(exec));
H A DJSObjectWithGlobalObject.cpp33 JSObjectWithGlobalObject::JSObjectWithGlobalObject(JSGlobalObject* globalObject, Structure* structure) argument
34 : JSNonFinalObject(globalObject->globalData(), structure)
44 JSObjectWithGlobalObject::JSObjectWithGlobalObject(JSGlobalData& globalData, JSGlobalObject* globalObject, Structure* structure) argument
45 : JSNonFinalObject(globalData, structure)
H A DStructure.cpp86 inline void StructureTransitionTable::remove(Structure* structure) argument
92 // As such, the passed structure *must* be the existing transition.
93 ASSERT(singleTransition() == structure);
96 // Check whether a mapping exists for structure's key, and whether the
97 // entry is structure (the latter check may fail if we initially had a
99 TransitionMap::iterator entry = map()->find(make_pair(structure->m_nameInPrevious, structure->m_attributesInPrevious));
100 if (entry != map()->end() && structure == entry.get().second)
105 inline void StructureTransitionTable::add(JSGlobalData& globalData, Structure* structure) argument
112 setSingleTransition(globalData, structure);
143 Structure* structure = *it; local
251 Structure* structure = this; local
298 addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) argument
317 addPropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) argument
379 removePropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, size_t& offset) argument
392 changePrototypeTransition(JSGlobalData& globalData, Structure* structure, JSValue prototype) argument
408 despecifyFunctionTransition(JSGlobalData& globalData, Structure* structure, const Identifier& replaceFunction) argument
432 getterSetterTransition(JSGlobalData& globalData, Structure* structure) argument
446 toDictionaryTransition(JSGlobalData& globalData, Structure* structure, DictionaryKind kind) argument
461 toCacheableDictionaryTransition(JSGlobalData& globalData, Structure* structure) argument
466 toUncacheableDictionaryTransition(JSGlobalData& globalData, Structure* structure) argument
472 sealTransition(JSGlobalData& globalData, Structure* structure) argument
486 freezeTransition(JSGlobalData& globalData, Structure* structure) argument
500 preventExtensionsTransition(JSGlobalData& globalData, Structure* structure) argument
[all...]
H A DStructureChain.cpp37 StructureChain::StructureChain(JSGlobalData& globalData, Structure* structure, Structure* head) argument
38 : JSCell(globalData, structure)
41 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
47 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
H A DBatchedTransitionOptimizer.h41 if (!m_object->structure()->isDictionary())
42 m_object->setStructure(globalData, Structure::toCacheableDictionaryTransition(globalData, m_object->structure()));
H A DNativeErrorPrototype.cpp34 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const UString& nameAndMessage, NativeErrorConstructor* constructor) argument
35 : JSObjectWithGlobalObject(globalObject, structure)
H A DNumberObject.cpp34 NumberObject::NumberObject(JSGlobalData& globalData, Structure* structure) argument
35 : JSWrapperObject(globalData, structure)
H A DDateInstance.cpp37 DateInstance::DateInstance(ExecState* exec, Structure* structure) argument
38 : JSWrapperObject(exec->globalData(), structure)
44 DateInstance::DateInstance(ExecState* exec, Structure* structure, double time) argument
45 : JSWrapperObject(exec->globalData(), structure)
H A DStringObject.cpp32 StringObject::StringObject(ExecState* exec, Structure* structure) argument
33 : JSWrapperObject(exec->globalData(), structure)
39 StringObject::StringObject(JSGlobalData& globalData, Structure* structure, JSString* string) argument
40 : JSWrapperObject(globalData, structure)
46 StringObject::StringObject(ExecState* exec, Structure* structure, const UString& string) argument
47 : JSWrapperObject(exec->globalData(), structure)
H A DJSWrapperObject.h53 inline JSWrapperObject::JSWrapperObject(JSGlobalData& globalData, Structure* structure) argument
54 : JSNonFinalObject(globalData, structure)
H A DStringObjectThatMasqueradesAsUndefined.h40 StringObjectThatMasqueradesAsUndefined(ExecState* exec, Structure* structure, const UString& string) argument
41 : StringObject(exec, structure, string)
H A DJSPropertyNameIterator.h68 void setCachedStructure(JSGlobalData& globalData, Structure* structure) argument
71 ASSERT(structure);
72 m_cachedStructure.set(globalData, this, structure);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
H A DCameraHelper.java35 * This method converts the given structure to jme camera.
37 * @param structure
38 * camera structure
44 public Camera toCamera(Structure structure) throws BlenderFileException { argument
46 return this.toCamera250(structure);
48 return this.toCamera249(structure);
53 * This method converts the given structure to jme camera. Should be used form blender 2.5+.
55 * @param structure
56 * camera structure
62 public Camera toCamera250(Structure structure) throw argument
93 toCamera249(Structure structure) argument
115 shouldBeLoaded(Structure structure, BlenderContext blenderContext) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWrapper.h31 explicit JSDOMWrapper(JSC::JSGlobalObject* globalObject, JSC::Structure* structure) argument
32 : JSObjectWithGlobalObject(globalObject, structure)
/external/clang/test/SemaCXX/
H A Dreinterpret-cast.cpp6 struct structure { int m; }; struct
25 const int structure::*psi = 0;
26 (void)reinterpret_cast<const int structure::*>(psi);
28 structure s;
29 (void)reinterpret_cast<structure>(s); // expected-error {{reinterpret_cast from 'structure' to 'structure' is not allowed}}
50 structure *p3 = reinterpret_cast<structure*>(p2);
92 const int structure
[all...]
H A Dcstyle-cast.cpp169 struct structure { int m; }; struct
187 structure *p3 = (structure*)(p2);
223 const int structure::*psi = 0;
224 (void)(const float structure::*)(psi);
225 (void)(int structure::*)(psi); // const_cast appended
227 void (structure::*psf)() = 0;
228 (void)(int (structure::*)())(psf);
230 (void)(void (structure::*)())(psi); // expected-error {{C-style cast from 'const int structure
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/lights/
H A DLightHelper.java69 public Light toLight(Structure structure, BlenderContext blenderContext) throws BlenderFileException { argument
70 Light result = (Light) blenderContext.getLoadedFeature(structure.getOldMemoryAddress(), LoadedFeatureDataType.LOADED_FEATURE);
74 int type = ((Number) structure.getFieldValue("type")).intValue();
78 float distance = ((Number) structure.getFieldValue("dist")).floatValue();
87 ((SpotLight)result).setSpotRange(((Number) structure.getFieldValue("dist")).floatValue());
89 float outerAngle = ((Number) structure.getFieldValue("spotsize")).floatValue()*FastMath.DEG_TO_RAD * 0.5f;
93 float spotblend = ((Number) structure.getFieldValue("spotblend")).floatValue();
108 float r = ((Number) structure.getFieldValue("r")).floatValue();
109 float g = ((Number) structure.getFieldValue("g")).floatValue();
110 float b = ((Number) structure
117 shouldBeLoaded(Structure structure, BlenderContext blenderContext) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
H A DAbstractBlenderLoader.java67 * This method converts the given structure to a scene node.
68 * @param structure
69 * structure of a scene
72 public Node toScene(Structure structure) { argument
76 Node result = new Node(structure.getName());
78 List<Structure> base = ((Structure)structure.getFieldValue("base")).evaluateListBase(blenderContext);
98 * This method converts the given structure to a camera.
99 * @param structure
100 * structure of a camera
103 public Camera toCamera(Structure structure) throw argument
117 toLight(Structure structure) argument
131 toObject(Structure structure) argument
145 toMesh(Structure structure) argument
159 toMaterial(Structure structure) argument
174 toWorldData(Structure structure) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DTypes.h88 maxArraySize(0), arrayInformationType(0), structure(0), structureSize(0), fieldName(0), mangled(0), typeName(0)
93 maxArraySize(0), arrayInformationType(0), structure(0), structureSize(0), fieldName(0), mangled(0), typeName(0)
96 structure = p.userDef->getStruct();
102 maxArraySize(0), arrayInformationType(0), structure(userDef), structureSize(0), fieldName(0), mangled(0)
118 if (copyOf.structure) {
119 if ((iter = remapper.find(structure)) == remapper.end()) {
120 // create the new structure here
121 structure = NewPoolTTypeList();
122 for (unsigned int i = 0; i < copyOf.structure->size(); ++i) {
124 typeLine.line = (*copyOf.structure)[
285 TTypeList* structure; // 0 unless this is a struct member in class:TType
[all...]
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DPlatformVideoWindowMac.mm42 if (gst_structure_has_name(message->structure, "have-ns-view")) {
43 m_videoWindow = static_cast<PlatformWidget>(g_value_get_pointer(gst_structure_get_value(message->structure, "nsview")));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
H A DIPage.java11 package org.eclipse.wb.internal.core.editor.structure;
21 * @coverage core.editor.structure
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
H A DMaterialContext.java62 /* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFileException { argument
63 name = structure.getName();
65 int mode = ((Number) structure.getFieldValue("mode")).intValue();
70 int diff_shader = ((Number) structure.getFieldValue("diff_shader")).intValue();
74 float r = ((Number) structure.getFieldValue("r")).floatValue();
75 float g = ((Number) structure.getFieldValue("g")).floatValue();
76 float b = ((Number) structure.getFieldValue("b")).floatValue();
77 float alpha = ((Number) structure.getFieldValue("alpha")).floatValue();
84 diffuseColor = this.readDiffuseColor(structure, diffuseShader);
86 int spec_shader = ((Number) structure
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DFileBlockHeader.java39 * start position in the stream and using this the structure can fill itself with the proper data.
66 * Memory address the structure was located when written to disk [4 or 8 bytes (defined in file header as a pointer
70 /** Index of the SDNA structure [4 bytes]. */
72 /** Number of structure located in this file-block [4 bytes]. */
104 * This method returns the structure described by the header filled with appropriate data.
107 * @return structure filled with data
112 Structure structure = blenderContext.getDnaBlockData().getStructure(sdnaIndex);
113 structure.fill(blenderContext.getInputStream());
114 return structure;
150 * This data returns the number of structure store
[all...]

Completed in 463 milliseconds

12345678