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

12

  /external/webkit/WebCore/plugins/mac/
PluginViewMac.cpp 747 ::Rect content, structure; local
749 GetWindowBounds(windowRef, kWindowStructureRgn, &structure);
752 int top = content.top - structure.top;
  /external/bluetooth/bluez/audio/
gstsbcenc.c 172 GstStructure *structure; local
178 structure = gst_caps_get_structure(src_caps, 0);
183 gst_sbc_util_set_structure_int_param(structure, "rate",
187 gst_sbc_util_set_structure_int_param(structure, "channels",
191 gst_sbc_util_set_structure_int_param(structure, "subbands",
195 gst_sbc_util_set_structure_int_param(structure, "blocks",
199 gst_sbc_util_set_structure_int_param(structure, "bitpool",
205 gst_sbc_util_set_structure_string_param(structure, "mode",
213 gst_sbc_util_set_structure_string_param(structure, "allocation",
287 GstStructure *structure; local
    [all...]
gstavdtpsink.c 275 GstStructure *structure = gst_caps_get_structure(caps, 0); local
278 name = gst_structure_get_name(structure);
286 value = gst_structure_get_value(structure, "rate");
301 value = gst_structure_get_value(structure, "mode");
316 value = gst_structure_get_value(structure, "allocation");
327 value = gst_structure_get_value(structure, "subbands");
338 value = gst_structure_get_value(structure, "blocks");
353 value = gst_structure_get_value(structure, "bitpool");
445 GstStructure *structure; local
450 structure = gst_structure_empty_new("audio/x-sbc")
611 GstStructure *structure; local
962 GstStructure *structure = gst_caps_get_structure(caps, 0); local
1043 GstStructure *structure; local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSObject.cpp 123 for (JSObject* obj = this; !obj->structure()->hasGetterSetterProperties(); obj = asObject(prototype)) {
310 // putDirect will change our Structure if we add a new property. For
311 // getters and setters, though, we also need to change our Structure
315 RefPtr<Structure> structure = Structure::getterSetterTransition(m_structure); local
316 setStructure(structure.release());
337 // putDirect will change our Structure if we add a new property. For
338 // getters and setters, though, we also need to change our Structure
342 RefPtr<Structure> structure = Structure::getterSetterTransition(m_structure) local
501 RefPtr<Structure> structure = Structure::removePropertyTransition(m_structure, propertyName, offset); local
    [all...]
JSObject.h 36 #include "Structure.h"
53 class Structure;
77 explicit JSObject(NonNullPassRefPtr<Structure>);
89 void setStructure(NonNullPassRefPtr<Structure>);
90 Structure* inheritorID();
165 void transitionTo(Structure*);
207 static PassRefPtr<Structure> createStructure(JSValue prototype)
209 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
264 Structure* createInheritorID();
271 RefPtr<Structure> m_inheritorID
505 RefPtr<Structure> structure = Structure::addPropertyTransition(m_structure, propertyName, attributes, specificFunction, offset); local
    [all...]
Structure.cpp 27 #include "Structure.h"
66 static WTF::RefCountedLeakCounter structureCounter("Structure");
73 static HashSet<Structure*>& ignoreSet = *(new HashSet<Structure*>);
77 static HashSet<Structure*>& liveStructureSet = *(new HashSet<Structure*>);
82 void Structure::dumpStatistics()
91 HashSet<Structure*>::const_iterator end = liveStructureSet.end();
92 for (HashSet<Structure*>::const_iterator it = liveStructureSet.begin(); it != end; ++it) {
93 Structure* structure = *it local
254 Structure* structure = this; local
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 159 Structure* structure = vPC[4].u.structure; local
162 if (structure == globalObject->structure()) {
172 if (slot.isCacheable() && !globalObject->structure()->isUncacheableDictionary() && slot.slotBase() == globalObject) {
173 if (vPC[4].u.structure)
174 vPC[4].u.structure->deref();
175 globalObject->structure()->ref();
176 vPC[4] = globalObject->structure();
919 Structure* structure = baseCell->structure(); local
1008 Structure* structure = asCell(baseValue)->structure(); local
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 797 Structure* structure = baseCell->structure(); local
799 if (structure->isUncacheableDictionary()) {
812 // Structure transition, cache transition info
814 if (structure->isDictionary()) {
822 StructureChain* prototypeChain = structure->prototypeChain(callFrame);
823 stubInfo->initPutByIdTransition(structure->previousID(), structure, prototypeChain);
824 JIT::compilePutByIdTransition(callFrame->scopeChain()->globalData, codeBlock, stubInfo, structure->previousID(), structure, slot.cachedOffset(), prototypeChain, returnAddress)
865 Structure* structure = baseCell->structure(); local
1299 Structure* structure; local
1455 Structure* structure = asCell(baseValue)->structure(); local
1887 Structure* structure; local
2800 Structure* structure = o->structure(); local
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.cpp 72 if (message->structure) {
73 const gchar* messageTypeName = gst_structure_get_name(message->structure);
785 if (message->structure) {
786 // This structure can contain:
787 // - both a new-location string and embedded locations structure
789 m_mediaLocations = gst_structure_copy(message->structure);
822 const GstStructure* structure = gst_value_get_structure(location); local
824 if (!structure) {
829 newLocation = gst_structure_get_string(structure, "new-location");
1050 GstStructure* structure = gst_caps_get_structure(caps, structureIndex) local
    [all...]
  /external/v8/src/
runtime.cc 598 Object* structure = result.GetCallbackObject(); local
599 if (structure->IsProxy() || structure->IsAccessorInfo()) {
603 obj, structure, name, result.holder());
607 } else if (structure->IsFixedArray()) {
610 elms->set(1, FixedArray::cast(structure)->get(0));
611 elms->set(2, FixedArray::cast(structure)->get(1));
    [all...]
objects.cc 143 Object* structure,
147 // data structure used to store the callbacks. Eventually proxy
149 if (structure->IsProxy()) {
151 reinterpret_cast<AccessorDescriptor*>(Proxy::cast(structure)->proxy());
158 if (structure->IsAccessorInfo()) {
159 AccessorInfo* data = AccessorInfo::cast(structure);
181 if (structure->IsFixedArray()) {
182 Object* getter = FixedArray::cast(structure)->get(kGetterIndex);
2784 Object* structure = Heap::AllocateFixedArray(2, TENURED); local
5733 FixedArray* structure = FixedArray::cast(element); local
5858 FixedArray* structure = FixedArray::cast(element); local
6015 FixedArray* structure = FixedArray::cast(element); local
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 149 Structure* cachedStructure;
150 PtrAndFlags<Structure, HasSeenShouldRepatch> cachedPrototypeStructure;
166 : structure(0)
172 Structure* structure; member in struct:JSC::GlobalResolveInfo
177 // This structure is used to map from a call return location

Completed in 669 milliseconds

12