HomeSort by relevance Sort by last modified time
    Searched defs:inArray (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/tests/api/java/nio/charset/
CharsetEncoderDecoderBufferTest.java 96 byte[] inArray = {(byte)'a', (byte)'b'};
97 ByteBuffer inWithArray = ByteBuffer.wrap(inArray);
100 assertEquals('a', inArray[0]);
101 assertEquals('b', inArray[1]);
109 assertEquals('a', inArray[0]);
110 assertEquals('b', inArray[1]);
166 char[] inArray = {'a', 'b'};
167 CharBuffer inWithArray = CharBuffer.wrap(inArray);
171 assertEquals('a', inArray[0]);
172 assertEquals('b', inArray[1])
    [all...]
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 281 InputArray inArray = context.asInputArray(inValue);
282 unsigned length = context.length(inArray);
284 if (!context.startArray(inArray, outArray))
286 inputArrayStack.append(inArray);
305 InputArray inArray = inputArrayStack.last();
307 context.endArray(inArray, outArray);
601 bool startArray(JSArray* inArray, RefPtr<SerializedArray>)
604 if (!m_cycleDetector.add(inArray).second) {
608 m_gcBuffer.append(inArray);
612 void endArray(JSArray* inArray, RefPtr<SerializedArray>
    [all...]

Completed in 204 milliseconds