HomeSort by relevance Sort by last modified time
    Searched refs:m_labels (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.cpp 83 ASSERT(index >= 0 && static_cast<size_t>(index) < m_labels.size());
84 return m_labels[index];
107 m_labels.remove(index);
137 m_labels[listIndex],
155 m_labels[listIndex],
324 m_labels.clear();
329 m_labels.append(labels[i]);
AutoFillPopupMenuClient.h 119 // include a separator entry) to an index to |m_names| and |m_labels|.
133 Vector<WTF::String> m_labels; member in class:WebKit::AutoFillPopupMenuClient
  /external/webkit/Source/JavaScriptCore/jit/
JIT.cpp 75 , m_labels(codeBlock ? codeBlock->instructions().size() : 0)
187 if (m_labels[m_bytecodeOffset].isUsed())
191 m_labels[m_bytecodeOffset] = label();
360 m_jmpTable[i].from.linkTo(m_labels[m_jmpTable[i].toBytecodeOffset], this);
527 record.jumpTable.simpleJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeOffset + record.defaultOffset]);
531 record.jumpTable.simpleJumpTable->ctiOffsets[j] = offset ? patchBuffer.locationOf(m_labels[bytecodeOffset + offset]) : record.jumpTable.simpleJumpTable->ctiDefault;
536 record.jumpTable.stringJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeOffset + record.defaultOffset]);
541 it->second.ctiOffset = offset ? patchBuffer.locationOf(m_labels[bytecodeOffset + offset]) : record.jumpTable.stringJumpTable->ctiDefault;
548 handler.nativeCode = patchBuffer.locationOf(m_labels[handler.target]);
JITInlineMethods.h 298 jump.linkTo(m_labels[m_bytecodeOffset + relativeOffset], this);
JIT.h 964 Vector<Label> m_labels; member in class:JSC::JIT
    [all...]
JITOpcodes.cpp 45 do { m_labels[m_bytecodeOffset + (targetOffset)].used(); } while (false)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 294 , m_labels(0)
310 , m_labels(0)
312 if (rhs.m_labels) {
313 m_labels = adoptPtr(new LabelStack);
316 iterator end = rhs.m_labels->end();
317 for (iterator it = rhs.m_labels->begin(); it != end; ++it)
318 m_labels->append(ScopeLabelInfo(it->m_ident, it->m_isLoop));
332 if (!m_labels)
333 m_labels = adoptPtr(new LabelStack);
334 m_labels->append(ScopeLabelInfo(label->impl(), isLoop))
493 OwnPtr<LabelStack> m_labels; member in struct:Scope
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 677 while (m_labels.size() && !m_labels.last().refCount())
678 m_labels.removeLast();
681 m_labels.append(m_codeBlock);
682 return &m_labels.last();
    [all...]
BytecodeGenerator.h 532 SegmentedVector<Label, 32> m_labels; member in class:JSC::BytecodeGenerator

Completed in 52 milliseconds