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

1 2

  /cts/tools/dex-tools/src/dex/structure/
DexAnnotatedElement.java 17 package dex.structure;
DexFile.java 17 package dex.structure;
DexInterface.java 17 package dex.structure;
DexParameter.java 17 package dex.structure;
NamedElement.java 17 package dex.structure;
WithModifiers.java 17 package dex.structure;
DexAnnotationAttribute.java 17 package dex.structure;
DexEncodedAnnotation.java 17 package dex.structure;
DexEncodedValue.java 17 package dex.structure;
DexClass.java 17 package dex.structure;
DexField.java 17 package dex.structure;
DexMethod.java 17 package dex.structure;
DexAnnotation.java 17 package dex.structure;
DexEncodedValueType.java 17 package dex.structure;
  /external/webkit/JavaScriptCore/runtime/
JSZombie.cpp 36 Structure* JSZombie::leakedZombieStructure() {
37 static Structure* structure = 0; local
38 if (!structure) {
39 Structure::startIgnoringLeaks();
40 structure = Structure::create(jsNull(), TypeInfo(UnspecifiedType)).releaseRef();
41 Structure::stopIgnoringLeaks();
43 return structure;
JSPropertyNameIterator.cpp 58 ASSERT(!o->structure()->enumerationCache() ||
59 o->structure()->enumerationCache()->cachedStructure() != o->structure() ||
60 o->structure()->enumerationCache()->cachedPrototypeChain() != o->structure()->prototypeChain(exec));
65 if (!o->structure()->hasNonEnumerableProperties() && !o->structure()->hasAnonymousSlots() &&
66 !o->structure()->hasGetterSetterProperties() && !o->structure()->isUncacheableDictionary() &&
67 !o->structure()->typeInfo().overridesGetPropertyNames()
80 RefPtr<Structure>* structure = structureChain->head(); local
    [all...]
JSFunction.cpp 53 JSFunction::JSFunction(NonNullPassRefPtr<Structure> structure)
54 : Base(structure)
59 JSFunction::JSFunction(ExecState* exec, NonNullPassRefPtr<Structure> structure, int length, const Identifier& name, NativeFunction func)
60 : Base(&exec->globalData(), structure, name)
255 Structure* structure; local
258 structure = asObject(prototype)->inheritorID();
260 structure = exec->lexicalGlobalObject()->emptyObjectStructure()
    [all...]
JSCell.h 30 #include "Structure.h"
49 explicit JSCell(Structure*);
53 static PassRefPtr<Structure> createDummyStructure()
55 return Structure::create(jsNull(), TypeInfo(UnspecifiedType), AnonymousSlotCount);
69 Structure* structure() const;
125 Structure* m_structure;
128 inline JSCell::JSCell(Structure* structure)
129 : m_structure(structure)
154 inline Structure* JSCell::structure() const function in class:JSC::JSCell
    [all...]
  /external/webkit/WebCore/bindings/js/
WorkerScriptController.cpp 73 RefPtr<Structure> workerContextPrototypeStructure = JSWorkerContextPrototype::createStructure(jsNull());
77 RefPtr<Structure> dedicatedContextPrototypeStructure = JSDedicatedWorkerContextPrototype::createStructure(workerContextPrototype);
79 RefPtr<Structure> structure = JSDedicatedWorkerContext::createStructure(dedicatedContextPrototype); local
81 m_workerContextWrapper = new (m_globalData.get()) JSDedicatedWorkerContext(structure.release(), m_workerContext->toDedicatedWorkerContext());
85 RefPtr<Structure> sharedContextPrototypeStructure = JSSharedWorkerContextPrototype::createStructure(workerContextPrototype);
87 RefPtr<Structure> structure = JSSharedWorkerContext::createStructure(sharedContextPrototype); local
89 m_workerContextWrapper = new (m_globalData.get()) JSSharedWorkerContext(structure.release(), m_workerContext->toSharedWorkerContext());
JSDOMWindowShell.cpp 63 RefPtr<Structure> prototypeStructure = JSDOMWindowPrototype::createStructure(jsNull());
66 RefPtr<Structure> structure = JSDOMWindow::createStructure(prototype); local
67 JSDOMWindow* jsDOMWindow = new (JSDOMWindow::commonJSGlobalData()) JSDOMWindow(structure.release(), domWindow, this);
  /external/webkit/JavaScriptCore/bytecode/
Instruction.h 34 #include "Structure.h"
52 class Structure;
55 // Structure used by op_get_by_id_self_list and op_get_by_id_proto_list instruction to hold data off the main opcode stream.
60 Structure* base;
62 Structure* proto;
66 void set(PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base)
74 void set(PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, Structure* _proto)
82 void set(PolymorphicAccessStructureListStubRoutineType _stubRoutine, Structure* _base, StructureChain* _chain)
91 PolymorphicAccessStructureList(PolymorphicAccessStructureListStubRoutineType stubRoutine, Structure* firstBase
151 Structure* structure; member in union:JSC::Instruction::__anon6326
    [all...]
StructureStubInfo.h 34 #include "Structure.h"
61 void initGetByIdSelf(Structure* baseObjectStructure)
69 void initGetByIdProto(Structure* baseObjectStructure, Structure* prototypeStructure)
80 void initGetByIdChain(Structure* baseObjectStructure, StructureChain* chain)
109 void initPutByIdTransition(Structure* previousStructure, Structure* structure, StructureChain* chain)
116 u.putByIdTransition.structure = structure;
168 Structure* structure; member in struct:JSC::StructureStubInfo::__anon6328::__anon6334
    [all...]
  /external/bluetooth/bluez/audio/
gsta2dpsink.c 506 GstStructure *structure; local
512 structure = gst_caps_get_structure(caps, 0);
518 if (gst_structure_has_name(structure, "audio/x-sbc")) {
522 } else if (gst_structure_has_name(structure, "audio/mpeg")) {
537 gst_structure_has_name(structure, "audio/mpeg")) {
gstrtpsbcpay.c 131 GstStructure *structure; local
135 structure = gst_caps_get_structure(caps, 0);
136 if (!gst_structure_get_int(structure, "rate", &rate))
138 if (!gst_structure_get_int(structure, "channels", &channels))
140 if (!gst_structure_get_int(structure, "blocks", &blocks))
142 if (!gst_structure_get_int(structure, "bitpool", &bitpool))
144 if (!gst_structure_get_int(structure, "subbands", &subbands))
147 channel_mode = gst_structure_get_string(structure, "mode");
gstsbcutil.c 324 GstStructure *structure; local
333 structure = gst_caps_get_structure(caps, 0);
335 if (!gst_structure_has_field(structure, "rate")) {
340 value = gst_structure_get_value(structure, "rate");
348 if (!gst_structure_has_field(structure, "channels")) {
353 value = gst_structure_get_value(structure, "channels");
361 if (!gst_structure_has_field(structure, "blocks")) {
366 value = gst_structure_get_value(structure, "blocks");
374 if (!gst_structure_has_field(structure, "subbands")) {
379 value = gst_structure_get_value(structure, "subbands")
484 GstStructure *structure; local
    [all...]

Completed in 220 milliseconds

1 2