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

1 2 3

  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 33 : m_pHashTable(0), m_Index(0), m_HashValue(0), m_EndIndex(0)
40 m_EndIndex = m_Index = m_HashValue % m_pHashTable->m_NumOfBuckets;
43 bucket_type &bucket = m_pHashTable->m_Buckets[m_Index];
49 m_EndIndex = m_Index;
53 m_Index += probe;
54 if (m_Index == m_pHashTable->m_NumOfBuckets)
55 m_Index = 0;
57 if (m_EndIndex == m_Index) {
66 m_Index(pCopy.m_Index),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerStackingNodeIterator.cpp 43 if (negZOrderList && m_index < negZOrderList->size())
44 return negZOrderList->at(m_index++);
46 m_index = 0;
52 if (normalFlowList && m_index < normalFlowList->size())
53 return normalFlowList->at(m_index++);
55 m_index = 0;
61 if (posZOrderList && m_index < posZOrderList->size())
62 return posZOrderList->at(m_index++);
64 m_index = 0;
75 if (negZOrderList && m_index >= 0
    [all...]
RenderLayerStackingNodeIterator.h 56 , m_index(0)
65 unsigned m_index; member in class:WebCore::RenderLayerStackingNodeIterator
87 int m_index; member in class:WebCore::RenderLayerStackingNodeReverseIterator
  /external/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 38 private int m_index; field in class:BoolStack
59 m_index = -1;
69 return m_index + 1;
78 m_index = -1;
91 if (m_index == m_allocatedSize - 1)
94 return (m_values[++m_index] = val);
106 return m_values[m_index--];
119 m_index--;
121 return (m_index >= 0) ? m_values[m_index] : false
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 50 , m_index(0)
71 unsigned m_index; member in class:WebCore::IDBKeyPathLexer
77 if (m_index >= m_length)
79 ASSERT(m_index < m_length);
81 if (m_string[m_index] == '.') {
82 ++m_index;
112 unsigned start = m_index;
113 if (m_index < m_length && isIdentifierStartCharacter(m_string[m_index]))
114 ++m_index;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackQueue.cpp 44 , m_index(0)
53 while (m_index < m_queue.size() && owner() == caller) {
54 m_inCreatedCallback = m_queue[m_index]->isCreated();
59 m_queue[m_index++]->dispatch(m_element.get());
63 if (owner() == caller && m_index == m_queue.size()) {
65 m_index = 0;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeWithIndex.h 49 m_index = m_node->nodeIndex();
52 ASSERT(m_index == static_cast<int>(m_node->nodeIndex()));
53 return m_index;
59 mutable int m_index; member in class:WebCore::NodeWithIndex
  /frameworks/base/tools/aidl/
generate_java.h 29 int m_index; member in class:VariableFactory
generate_java.cpp 11 m_index(0)
19 sprintf(name, "%s%d", m_base.c_str(), m_index);
20 m_index++;
  /external/eigen/Eigen/src/Core/
Diagonal.h 72 inline Diagonal(MatrixType& matrix, Index index = DiagIndex) : m_matrix(matrix), m_index(index) {}
77 { return m_index.value()<0 ? (std::min)(m_matrix.cols(),m_matrix.rows()+m_index.value()) : (std::min)(m_matrix.rows(),m_matrix.cols()-m_index.value()); }
140 return m_index.value();
145 const internal::variable_if_dynamic<Index, DiagIndex> m_index; member in class:Eigen::Diagonal
149 EIGEN_STRONG_INLINE Index absDiagIndex() const { return m_index.value()>0 ? m_index.value() : -m_index.value(); }
150 EIGEN_STRONG_INLINE Index rowOffset() const { return m_index.value()>0 ? 0 : -m_index.value();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceClientWalker.h 39 : m_clientSet(set), m_clientVector(set.size()), m_index(0)
51 while (m_index < size) {
52 ResourceClient* next = m_clientVector[m_index++];
64 size_t m_index; member in class:WebCore::ResourceClientWalker
  /external/chromium_org/third_party/WebKit/Source/wtf/
Deque.h 134 unsigned m_index; member in class:WTF::DequeIteratorBase
386 remove(it.m_index);
392 remove(it.m_index);
423 , m_index(index)
430 , m_index(other.m_index)
438 m_index = other.m_index;
450 return m_index == other.m_index;
    [all...]
ThreadSpecific.h 103 int m_index; member in class:WTF::ThreadSpecific
182 : m_index(-1)
188 m_index = InterlockedIncrement(&tlsKeyCount()) - 1;
189 if (m_index >= kMaxTlsKeySize)
191 tlsKeys()[m_index] = tlsKey;
198 TlsFree(tlsKeys()[m_index]);
204 Data* data = static_cast<Data*>(TlsGetValue(tlsKeys()[m_index]));
214 TlsSetValue(tlsKeys()[m_index], data);
241 TlsSetValue(tlsKeys()[data->owner->m_index], 0);
  /external/chromium_org/third_party/WebKit/Source/platform/
Length.cpp 116 : m_index(1)
122 ASSERT(m_index);
126 while (m_map.contains(m_index))
127 m_index++;
129 m_map.set(m_index, calcValue);
131 return m_index;
160 int m_index; member in class:WebCore::CalculationValueHandleMap
  /external/chromium_org/third_party/WebKit/Source/modules/gamepad/
Gamepad.h 49 unsigned index() const { return m_index; }
50 void index(unsigned val) { m_index = val; }
64 unsigned m_index; member in class:WebCore::Gamepad
  /frameworks/compile/mclinker/include/mcld/Fragment/
FGNode.h 57 { return m_Index; }
84 /// m_Index - the index in the reachability matrix
85 uint32_t m_Index;
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeType.h 47 const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_index]; }
51 unsigned m_index; member in class:WebCore::DOMMimeType
DOMPlugin.h 51 const PluginInfo& pluginInfo() const { return m_pluginData->plugins()[m_index]; }
55 unsigned m_index; member in class:WebCore::DOMPlugin
DOMMimeType.cpp 33 , m_index(index)
73 return DOMPlugin::create(m_pluginData.get(), m_frame, m_pluginData->mimePluginIndices()[m_index]);
DOMPlugin.cpp 30 , m_index(index)
68 if (mimes[i] == mime && m_pluginData->mimePluginIndices()[i] == m_index)
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventListenerMap.cpp 222 , m_index(0)
229 , m_index(0)
264 if (m_index < listeners.size())
265 return listeners[m_index++].listener.get();
266 m_index = 0;
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
KeyframeAnimation.h 53 int index() const { return m_index; }
54 void setIndex(int i) { m_index = i; }
93 int m_index; member in class:WebCore::KeyframeAnimation
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 56 , m_index(index)
83 unsigned m_index; member in class:WebCore::StylePropertySet::PropertyReference
270 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).metadata();
271 return toImmutableStylePropertySet(m_propertySet).metadataArray()[m_index];
277 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).value();
278 return toImmutableStylePropertySet(m_propertySet).valueArray()[m_index];
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 58 protected int m_index; field in class:Variable
68 m_index = index;
78 return m_index;
132 m_index = i;
136 m_index = i-globalsSize;
214 result = xctxt.getVarStack().getGlobalVariable(xctxt, m_index, destructiveOK);
216 result = xctxt.getVarStack().getLocalVariable(xctxt, m_index, destructiveOK);
245 // m_index = vvar.getIndex();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ScaledImageFragment.h 60 size_t index() const { return m_index; }
68 size_t m_index; member in class:WebCore::ScaledImageFragment

Completed in 716 milliseconds

1 2 3