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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ArrayValue.cpp 36 m_array = other.m_array;
43 return m_array.IsEmpty() || WebCore::isUndefinedOrNull(m_array);
51 length = m_array->Length();
60 if (index >= m_array->Length())
65 v8::Local<v8::Value> indexedValue = m_array->Get(v8::Integer::NewFromUnsigned(index, m_isolate));
ArrayValue.h 40 : m_array(array)
60 v8::Local<v8::Array> m_array; member in class:WebCore::ArrayValue
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.cpp 41 for (size_t i = 0; i < m_array.size(); i++) {
42 if (!m_array[i]->isValid())
69 for (size_t i = 0; i < m_array.size() && i < other->m_array.size(); ++i) {
70 if (int result = m_array[i]->compare(other->m_array[i].get()))
73 return compareNumbers(m_array.size(), other->m_array.size());
IDBKeyPath.cpp 205 , m_array(array)
208 for (size_t i = 0; i < m_array.size(); ++i)
209 ASSERT(!m_array[i].isNull());
223 if (m_array.isEmpty())
225 for (size_t i = 0; i < m_array.size(); ++i) {
226 if (!IDBIsValidKeyPath(m_array[i]))
246 return m_array == other.m_array;
IDBKeyPath.h 60 return m_array;
76 Vector<String> m_array; member in class:WebCore::IDBKeyPath
IDBKey.h 114 return m_array;
153 explicit IDBKey(const KeyArray& keyArray) : m_type(ArrayType), m_array(keyArray), m_number(0) { }
156 const KeyArray m_array; member in class:WebCore::IDBKey
  /external/apache-xml/src/main/java/org/apache/xml/utils/
FastStringBuffer.java 135 * Field m_array holds the string buffer's text contents, using an
142 char[][] m_array; field in class:FastStringBuffer
145 * Field m_lastChunk is an index into m_array[], pointing to the last
156 * Field m_firstFree is an index into m_array[m_lastChunk][], pointing to
158 * FastStringBuffer's current content. Since m_array[][] is zero-based,
166 * length equals m_chunkSize, and which replaces m_array[0]. This allows
210 m_array = new char[16][];
221 m_array[0] = new char[m_chunkSize];
308 m_array = new char[16][0];
309 m_array[0] = new char[m_chunkSize]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleSet.cpp 128 : m_array(array)
132 if (!m_array)
134 for (T* item = m_array.get(); !item->isLastInArray(); ++item)
143 if (!m_array) {
147 m_array = adoptPtr(static_cast<T*>(fastMalloc(m_capacity * sizeof(T))));
151 m_array = adoptPtr(static_cast<T*>(fastRealloc(m_array.leakPtr(), m_capacity * sizeof(T))));
152 m_array.get()[m_count - 1].setLastInArray(false);
159 m_array.get()[m_count++] = item;
165 if (m_array)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 51 * of the char m_array in FastStringBuffer if USE_OBJECT_POOL == false.

Completed in 80 milliseconds