Searched defs:intLength (Results 1 - 3 of 3) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DTypesLengths.java86 private static int intLength = 4; field in class:TypesLengths
144 return intLength;
226 intLength = typeLength;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLength.cpp39 static unsigned splitLength(const CharType* data, unsigned length, unsigned& intLength, unsigned& doubleLength) argument
50 intLength = i;
65 unsigned intLength; local
67 splitLength(data, length, intLength, doubleLength);
70 int r = charactersToIntStrict(data, intLength, &ok);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp2099 uint32_t intLength = byteLength / sizeof(int32_t); local
2100 if (intLength * sizeof(int32_t) != byteLength)
2102 *value = toV8(Int32Array::create(arrayBuffer.release(), byteOffset, intLength), creationContext, isolate());
2106 uint32_t intLength = byteLength / sizeof(uint32_t); local
2107 if (intLength * sizeof(uint32_t) != byteLength)
2109 *value = toV8(Uint32Array::create(arrayBuffer.release(), byteOffset, intLength), creationContext, isolate());

Completed in 1542 milliseconds