HomeSort by relevance Sort by last modified time
    Searched full:slot (Results 201 - 225 of 856) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/JavaScriptCore/runtime/
JSVariableObject.h 104 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
108 slot.setRegisterSlot(&registerAt(entry.getIndex()));
114 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable)
118 slot.setRegisterSlot(&registerAt(entry.getIndex()));
ObjectPrototype.cpp 62 void ObjectPrototype::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
64 JSObject::put(exec, propertyName, value, slot);
73 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
77 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
JSGlobalObject.h 335 inline bool JSGlobalObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
337 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
339 return symbolTableGet(propertyName, slot);
351 PropertySlot slot; local
352 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
355 return symbolTableGet(propertyName, slot, slotIsWriteable);
  /external/webkit/LayoutTests/storage/domstorage/localstorage/
index-get-and-set.html 54 log("Setting FOO again, using property-slot syntax");
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/
index-get-and-set.html 54 log("Setting FOO again, using property-slot syntax");
  /external/webkit/WebCore/bindings/js/
JSDOMWindowShell.cpp 87 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
89 return m_window->getOwnPropertySlot(exec, propertyName, slot);
97 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
99 m_window->put(exec, propertyName, value, slot);
  /external/webkit/WebCore/dom/
QualifiedName.h 170 static void constructDeletedValue(WebCore::QualifiedName& slot) { new (&slot) WebCore::QualifiedName(WebCore::nullAtom, WebCore::AtomicString(HashTableDeletedValue), WebCore::nullAtom); }
171 static bool isDeletedValue(const WebCore::QualifiedName& slot) { return slot.localName().isHashTableDeletedValue(); }
  /external/webkit/WebKitTools/QtLauncher/
mainwindow.cpp 63 connect(urlEdit, SIGNAL(returnPressed()), SLOT(changeLocation()));
75 this, SLOT(setWindowTitle(const QString&)));
76 connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int)));
77 connect(page(), SIGNAL(windowCloseRequested()), this, SLOT(close()));
  /cts/tests/src/android/widget/cts/util/
ListItemFactory.java 77 public enum Slot {
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) {
104 for (Slot slot : slots) {
105 switch (slot) {
  /external/v8/src/
scopes.cc 191 var->rewrite_ = new Slot(var, Slot::PARAMETER, -1);
535 var->rewrite_ = new Slot(var, Slot::LOOKUP, -1);
772 var->rewrite_ = new Slot(var, Slot::LOCAL, num_stack_slots_++);
777 var->rewrite_ = new Slot(var, Slot::CONTEXT, num_heap_slots_++);
866 (var->slot() != NULL && var->slot()->type() == Slot::CONTEXT))
    [all...]
prettyprinter.cc 294 void PrettyPrinter::VisitSlot(Slot* node) {
296 case Slot::PARAMETER:
299 case Slot::LOCAL:
302 case Slot::CONTEXT:
305 case Slot::LOOKUP:
999 void AstPrinter::VisitSlot(Slot* node) {
1000 PrintIndented("SLOT ");
1002 case Slot::PARAMETER:
1005 case Slot::LOCAL:
1008 case Slot::CONTEXT
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 77 public enum Slot {
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) {
104 for (Slot slot : slots) {
105 switch (slot) {
  /external/v8/src/arm/
codegen-arm.h 55 enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
75 return (type_ < SLOT) ? 0 : type_;
79 bool is_slot() const { return type_ == SLOT; }
248 MemOperand SlotOperand(Slot* slot, Register tmp);
250 MemOperand ContextSlotOperandCheckExtensions(Slot* slot,
281 // Read a value from a slot and leave it on top of the expression stack.
282 void LoadFromSlot(Slot* slot, TypeofState typeof_state)
    [all...]
  /dalvik/vm/
IndirectRefTable.c 113 * this slot.
115 static inline void updateSlotAdd(IndirectRefTable* pRef, Object* obj, int slot)
118 IndirectRefSlot* pSlot = &pRef->slotData[slot];
120 //LOGI("+++ add [%d] slot %d (%p->%p), serial=%d\n",
121 // pRef->kind, slot, obj, iref, pSlot->serial);
129 static inline void updateSlotRemove(IndirectRefTable* pRef, int slot)
132 IndirectRefSlot* pSlot = &pRef->slotData[slot];
133 //LOGI("+++ remove [%d] slot %d, serial now %d\n",
134 // pRef->kind, slot, pSlot->serial);
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
h223types.cpp 744 TPVMuxDescriptorSlot& slot = (*it++).second; local
746 slot.max_size *= rc_max;
747 slot.min_size *= rc_min;
749 if (FindLcn((uint16)slot.lcn, 0, slot_info) <= 0)
751 lcns.insert(TPVMuxDescriptorSlotList::value_type(slot.lcn, slot_info));
753 slot_info.lcn = slot.lcn;
754 slot_info.min_size += slot.min_size;
755 slot_info.max_size += slot.max_size;
756 lcns[slot.lcn] = slot_info;
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 106 this, SLOT(stateChanged(Phonon::State,Phonon::State)));
107 connect(m_mediaObject, SIGNAL(metaDataChanged()), this, SLOT(metaDataChanged()));
108 connect(m_mediaObject, SIGNAL(seekableChanged(bool)), this, SLOT(seekableChanged(bool)));
109 connect(m_mediaObject, SIGNAL(hasVideoChanged(bool)), this, SLOT(hasVideoChanged(bool)));
110 connect(m_mediaObject, SIGNAL(bufferStatus(int)), this, SLOT(bufferStatus(int)));
111 connect(m_mediaObject, SIGNAL(finished()), this, SLOT(finished()));
113 this, SLOT(currentSourceChanged(Phonon::MediaSource)));
114 connect(m_mediaObject, SIGNAL(aboutToFinish()), this, SLOT(aboutToFinish()));
115 connect(m_mediaObject, SIGNAL(totalTimeChanged(qint64)), this, SLOT(totalTimeChanged(qint64)));
  /external/freetype/include/freetype/internal/
ftobjs.h 347 /* into the glyph slot. */
510 /**** FACE, SIZE & GLYPH SLOT OBJECTS ****/
541 /* It is sometimes useful to have more than one glyph slot for a */
550 /* aslot :: A handle to a new glyph slot object. */
566 /* Destroys a given glyph slot. Remember however that all slots are */
571 /* slot :: A handle to a target glyph slot. */
574 FT_Done_GlyphSlot( FT_GlyphSlot slot ); variable
619 ft_glyphslot_free_bitmap( FT_GlyphSlot slot ); variable
622 /* Allocate a new bitmap buffer in a glyph slot. *
    [all...]
  /external/v8/src/ia32/
codegen-ia32.h 55 enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
75 return (type_ < SLOT) ? 0 : type_;
79 bool is_slot() const { return type_ == SLOT; }
93 // Like GetValue except that the slot is expected to be written to before
399 Operand SlotOperand(Slot* slot, Register tmp);
401 Operand ContextSlotOperandCheckExtensions(Slot* slot,
422 // Read a value from a slot and leave it on top of the expression stack.
423 Result LoadFromSlot(Slot* slot, TypeofState typeof_state)
    [all...]
  /external/grub/stage2/
fsys_jfs.c 138 return (ldtentry_t *)&dtroot->slot[(int)dtroot->header.stbl[jfs.sindex++]];
141 de = (ldtentry_t *)dtpage->slot;
174 de = (idtentry_t *)dtpage->slot;
176 xd = &((idtentry_t *)dtr->slot)[(int)dtr->header.stbl[0]].xd;
195 ? (dtslot_t *)&dtroot->slot[next]
196 : &((dtslot_t *)dtpage->slot)[next];
  /frameworks/base/graphics/java/android/renderscript/
SimpleMesh.java 37 public void bindVertexAllocation(Allocation a, int slot) {
39 mRS.nSimpleMeshBindVertex(mID, a.mID, slot);
47 public Allocation createVertexAllocation(int slot) {
49 return Allocation.createTyped(mRS, mVertexTypes[slot]);
57 public Type getVertexType(int slot) {
58 return mVertexTypes[slot];
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 149 ESR_ReturnCode SR_Grammar_AddWordToSlot(SR_Grammar* self, const LCHAR* slot, const LCHAR* word,
160 if ( slot != NULL )
162 if ( strlen ( slot ) >= MAX_STRING_LEN )
164 PLogError ( "SR_Grammar_AddWordToSlot slot : %s too long : Max %d", slot, MAX_STRING_LEN - 1 );
232 CHKLOG(logrc, SR_EventLogToken_BASIC(impl->eventLog, impl->logLevel, L("SLOT"), slot));
250 ca_rc = CA_AddWordToSyntax(impl->syntax, slot, word, pronunciation, weight);
255 CHKLOG(rc, impl->semgraph->addWordToSlot(impl->semgraph, slot, word, tag, 1));
260 CHKLOG(rc, impl->semgraph->addWordToSlot(impl->semgraph, slot, word, tag, 0))
    [all...]
  /external/srec/doc/logs/uapi/
run_robustness3.log 24 G1Listener: Adding words to grammar slot
28 G1Listener: Starting adding words to grammar slot
31 G1Listener: Finish adding words to grammar slot
148 G1Listener: Adding words to grammar slot
152 G1Listener: Starting adding words to grammar slot
155 G1Listener: Finish adding words to grammar slot
272 G1Listener: Adding words to grammar slot
276 G1Listener: Starting adding words to grammar slot
279 G1Listener: Finish adding words to grammar slot
396 G1Listener: Adding words to grammar slot
    [all...]
  /bionic/libc/bionic/
libc_init_dynamic.c 64 /* Read the ELF data pointer form a special slot of the
68 * - we clear the slot so no other initializer sees its value.
  /dalvik/libcore/luni/src/main/java/java/lang/
ThreadLocal.java 303 * We must rehash every time we fill a null slot; we depend on the
404 // Fill in null slot.
428 * slot.
434 // If the first slot is empty, the search is over.
438 // If the table is still the same and the slot is still empty...
470 // If we passed a tombstone and that slot still
480 // in a null slot.
484 // If this slot is still empty...
  /external/freetype/src/base/
ftbitmap.c 617 FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot )
619 if ( slot && slot->format == FT_GLYPH_FORMAT_BITMAP &&
620 !( slot->internal->flags & FT_GLYPH_OWN_BITMAP ) )
627 error = FT_Bitmap_Copy( slot->library, &slot->bitmap, &bitmap );
631 slot->bitmap = bitmap;
632 slot->internal->flags |= FT_GLYPH_OWN_BITMAP;

Completed in 522 milliseconds

1 2 3 4 5 6 7 891011>>