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

1 2

  /frameworks/base/tools/aidl/
generate_java.h 29 int m_index; member in class:VariableFactory
  /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
  /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
CustomElementCallbackQueue.h 66 size_t m_index; member in class:WebCore::CustomElementCallbackQueue
EventListenerMap.h 90 unsigned m_index; member in class:WebCore::EventListenerIterator
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
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/core/page/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/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
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 46 , m_index(0)
68 unsigned m_index; member in class:WebCore::IDBKeyPathLexer
74 if (m_index >= m_length)
76 ASSERT(m_index < m_length);
78 if (m_string[m_index] == '.') {
79 ++m_index;
111 unsigned start = m_index;
112 if (m_index < m_length && isIdentifierStartCharacter(m_string[m_index]))
113 ++m_index;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ScaledImageFragment.h 59 size_t index() const { return m_index; }
67 size_t m_index; member in class:WebCore::ScaledImageFragment
  /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/apache-xml/src/main/java/org/apache/xpath/patterns/
UnionPattern.java 146 int m_index; field in class:UnionPattern.UnionPathPartOwner
150 m_index = index;
158 return m_patterns[m_index];
168 m_patterns[m_index] = (StepPattern)exp;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 55 , m_index(index)
82 unsigned m_index; member in class:WebCore::StylePropertySet::PropertyReference
229 return static_cast<const MutableStylePropertySet&>(m_propertySet).m_propertyVector.at(m_index).metadata();
230 return static_cast<const ImmutableStylePropertySet&>(m_propertySet).metadataArray()[m_index];
236 return static_cast<const MutableStylePropertySet&>(m_propertySet).m_propertyVector.at(m_index).value();
237 return static_cast<const ImmutableStylePropertySet&>(m_propertySet).valueArray()[m_index];
  /external/stlport/test/unit/
sort_test.cpp 79 : m_index(index), m_value(value) {}
82 { return m_index == other.m_index && m_value == other.m_value; }
87 int m_index, m_value; member in struct:Data
  /ndk/tests/device/test-gnustl-full/unit/
sort_test.cpp 79 : m_index(index), m_value(value) {}
82 { return m_index == other.m_index && m_value == other.m_value; }
87 int m_index, m_value; member in struct:Data
  /ndk/tests/device/test-stlport/unit/
sort_test.cpp 79 : m_index(index), m_value(value) {}
82 { return m_index == other.m_index && m_value == other.m_value; }
87 int m_index, m_value; member in struct:Data
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemWithParam.java 54 int m_index; field in class:ElemWithParam
166 // m_index must be resolved by ElemApplyTemplates and ElemCallTemplate!
ElemVariable.java 60 protected int m_index; field in class:ElemVariable
77 m_index = index;
87 return m_index;
248 transformer.getXPathContext().getVarStack().setLocalVariable(m_index, var);
349 m_index = cstate.addVariableName(m_qname) - cstate.getGlobalsSize();
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Length.cpp 117 : m_index(1)
123 ASSERT(m_index);
127 while (m_map.contains(m_index))
128 m_index++;
130 m_map.set(m_index, calcValue);
132 return m_index;
148 int m_index; member in class:WebCore::CalculationValueHandleMap
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSpecific.h 102 int m_index; member in class:WTF::ThreadSpecific
181 : m_index(-1)
187 m_index = InterlockedIncrement(&tlsKeyCount()) - 1;
188 if (m_index >= kMaxTlsKeySize)
190 tlsKeys()[m_index] = tlsKey;
197 TlsFree(tlsKeys()[m_index]);
203 Data* data = static_cast<Data*>(TlsGetValue(tlsKeys()[m_index]));
213 TlsSetValue(tlsKeys()[m_index], data);
237 TlsSetValue(tlsKeys()[data->owner->m_index], 0);
  /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/apache-xml/src/main/java/org/apache/xpath/axes/
UnionPathIterator.java 493 int m_index; field in class:UnionPathIterator.iterOwner
497 m_index = index;
505 return m_exprs[m_index];
529 m_exprs[m_index] = (LocPathIterator)exp;
  /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/web/tests/
WebPageNewSerializerTest.cpp 59 LineReader(const std::string& text) : m_text(text), m_index(0) { }
63 if (m_index >= m_text.length())
66 size_t endOfLineIndex = m_text.find("\r\n", m_index);
68 *line = m_text.substr(m_index);
69 m_index = m_text.length();
71 *line = m_text.substr(m_index, endOfLineIndex - m_index);
72 m_index = endOfLineIndex + 2;
79 size_t m_index; member in class:__anon12866::LineReader

Completed in 605 milliseconds

1 2