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

  /libcore/luni/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/webkit/WebCore/bridge/jni/jsc/
JNIBridgeJSC.h 73 jobject javaArray() const { return m_array->m_instance; }
78 RefPtr<JObjectWrapper> m_array; member in class:JSC::Bindings::JavaArray
JNIBridgeJSC.cpp 259 m_array = new JObjectWrapper(array);
262 m_length = env->GetArrayLength(static_cast<jarray>(m_array->m_instance));

Completed in 159 milliseconds