HomeSort by relevance Sort by last modified time
    Searched full:structure (Results 1 - 25 of 7831) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
Structure.h 3 #include <JavaScriptCore/Structure.h>
  /external/webkit/Source/JavaScriptCore/runtime/
Structure.cpp 27 #include "Structure.h"
65 static HashSet<Structure*>& liveStructureSet = *(new HashSet<Structure*>);
71 Structure* transition = singleTransition();
77 inline Structure* StructureTransitionTable::get(StringImpl* rep, unsigned attributes) const
80 Structure* transition = singleTransition();
86 inline void StructureTransitionTable::remove(Structure* structure)
92 // As such, the passed structure *must* be the existing transition.
93 ASSERT(singleTransition() == structure);
143 Structure* structure = *it; local
251 Structure* structure = this; local
    [all...]
Structure.h 58 class Structure : public JSCell {
61 static Structure* create(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
64 return new (&globalData) Structure(globalData, prototype, typeInfo, anonymousSlotCount, classInfo);
69 static Structure* addPropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
70 static Structure* addPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset);
71 static Structure* removePropertyTransition(JSGlobalData&, Structure*, const Identifier& propertyName, size_t& offset);
72 static Structure* changePrototypeTransition(JSGlobalData&, Structure*, JSValue prototype)
    [all...]
ErrorInstance.cpp 28 ErrorInstance::ErrorInstance(JSGlobalData* globalData, Structure* structure)
29 : JSNonFinalObject(*globalData, structure)
36 ErrorInstance::ErrorInstance(JSGlobalData* globalData, Structure* structure, const UString& message)
37 : JSNonFinalObject(*globalData, structure)
44 ErrorInstance* ErrorInstance::create(JSGlobalData* globalData, Structure* structure, const UString& message)
46 return new (globalData) ErrorInstance(globalData, structure, message);
49 ErrorInstance* ErrorInstance::create(ExecState* exec, Structure* structure, JSValue message
    [all...]
JSPropertyNameIterator.cpp 53 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()->typeInfo().overridesGetPropertyNames()
75 WriteBarrier<Structure>* structure = structureChain->head(); local
    [all...]
StructureChain.h 30 #include "Structure.h"
39 class Structure;
45 static StructureChain* create(JSGlobalData& globalData, Structure* head) { return new (&globalData) StructureChain(globalData, globalData.structureChainStructure.get(), head); }
46 WriteBarrier<Structure>* head() { return m_vector.get(); }
49 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) { return Structure::create(globalData, prototype, TypeInfo(CompoundType, OverridesMarkChildren), 0, &s_info); }
52 StructureChain(JSGlobalData&, Structure*, Structure* head);
54 OwnArrayPtr<WriteBarrier<Structure> > m_vector;
JSGlobalObject.h 90 WriteBarrier<Structure> m_argumentsStructure;
91 WriteBarrier<Structure> m_arrayStructure;
92 WriteBarrier<Structure> m_booleanObjectStructure;
93 WriteBarrier<Structure> m_callbackConstructorStructure;
94 WriteBarrier<Structure> m_callbackFunctionStructure;
95 WriteBarrier<Structure> m_callbackObjectStructure;
96 WriteBarrier<Structure> m_dateStructure;
97 WriteBarrier<Structure> m_emptyObjectStructure;
98 WriteBarrier<Structure> m_errorStructure;
99 WriteBarrier<Structure> m_functionStructure
    [all...]
ErrorInstance.h 32 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
34 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
37 static ErrorInstance* create(JSGlobalData*, Structure*, const UString&);
38 static ErrorInstance* create(ExecState*, Structure*, JSValue message);
48 explicit ErrorInstance(JSGlobalData*, Structure*);
49 explicit ErrorInstance(JSGlobalData*, Structure*, const UString&);
NativeErrorConstructor.h 34 NativeErrorConstructor(ExecState*, JSGlobalObject*, Structure*, Structure* prototypeStructure, const UString&);
38 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
40 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
43 Structure* errorStructure() { return m_errorStructure.get(); }
51 WriteBarrier<Structure> m_errorStructure;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
CameraHelper.java 8 import com.jme3.scene.plugins.blender.file.Structure;
35 * This method converts the given structure to jme camera.
37 * @param structure
38 * camera structure
44 public Camera toCamera(Structure structure) throws BlenderFileException {
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
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 10 request do_create_icount, "Create an icount structure",
13 request do_free_icount, "Free an icount structure",
28 request do_get_size, "Get the size of the icount structure",
31 request do_dump, "Dump the icount structure",
34 request do_validate, "Validate the icount structure",
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderLoader.java 48 import com.jme3.scene.plugins.blender.file.Structure;
67 * This method converts the given structure to a scene node.
68 * @param structure
69 * structure of a scene
72 public Node toScene(Structure structure) {
76 Node result = new Node(structure.getName());
78 List<Structure> base = ((Structure)structure.getFieldValue("base")).evaluateListBase(blenderContext);
    [all...]
  /external/valgrind/main/helgrind/tests/
t2t_laog.vgtest 2 # in the laog data structure.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Structure.java 42 * A class representing a single structure in the file.
45 public class Structure implements Cloneable {
49 /** The address of the block that fills the structure. */
51 /** The type of the structure. */
54 * The fields of the structure. Each field consists of a pair: name-type.
59 * Constructor that copies the data of the structure.
60 * @param structure
61 * the structure to copy.
63 * the blender context of the structure
67 private Structure(Structure structure, BlenderContext blenderContext) throws CloneNotSupportedException
186 Structure structure = first.fetchData(blenderContext.getInputStream()).get(0); local
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
StructureStubInfo.h 34 #include "Structure.h"
61 void initGetByIdSelf(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure)
68 void initGetByIdProto(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure, Structure* prototypeStructure)
76 void initGetByIdChain(JSGlobalData& globalData, JSCell* owner, Structure* baseObjectStructure, StructureChain* chain)
102 void initPutByIdTransition(JSGlobalData& globalData, JSCell* owner, Structure* previousStructure, Structure* structure, StructureChain* chain)
107 u.putByIdTransition.structure.set(globalData, owner, structure);
156 WriteBarrierBase<Structure> structure; member in struct:JSC::StructureStubInfo::__anon14533::__anon14539
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiP2pService.java 7 * A structure to hold service information.
  /external/clang/utils/OptionalTests/Extra/
README.txt 1 This directory is for extra unit style tests following the structure of
  /external/kernel-headers/original/asm-arm/
ipcbuf.h 5 * The ipc64_perm structure for arm architecture.
6 * Note extra padding because this structure is passed back and forth
  /external/kernel-headers/original/asm-mips/
ipcbuf.h 5 * The ipc64_perm structure for alpha architecture.
6 * Note extra padding because this structure is passed back and forth
sembuf.h 5 * The semid64_ds structure for the MIPS architecture.
6 * Note extra padding because this structure is passed back and forth
  /external/kernel-headers/original/asm-x86/
ipcbuf.h 5 * The ipc64_perm structure for x86 architecture.
6 * Note extra padding because this structure is passed back and forth
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ipcbuf.h 5 * The ipc64_perm structure for x86 architecture.
6 * Note extra padding because this structure is passed back and forth
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ipcbuf.h 5 * The ipc64_perm structure for x86 architecture.
6 * Note extra padding because this structure is passed back and forth
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ipcbuf.h 5 * The ipc64_perm structure for x86 architecture.
6 * Note extra padding because this structure is passed back and forth
  /external/bluetooth/glib/gio/tests/
live-g-file.txt 5 create the sample structure using the second mode, pack it (tar -p is
7 2. create-structure - only creates reference structure for later testing
9 3. write mode - full test suite, creates testing structure and performs all
11 in this mode and target directory structure is unusable after the script
20 (i.e. the tests creating testing structure)

Completed in 1809 milliseconds

1 2 3 4 5 6 7 8 91011>>