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

/external/v8/include/
H A Dv8.h2884 size_t ByteLength() const { return byte_length_; } function in class:v8::ArrayBuffer::Contents
2897 size_t ByteLength() const;
2976 size_t ByteLength();
2998 * (e.g. for Int16Array, |ByteLength|/2).
/external/v8/src/
H A Dapi.cc6004 size_t v8::ArrayBuffer::ByteLength() const { function in class:v8::v8::ArrayBuffer
6054 size_t v8::ArrayBufferView::ByteLength() { function in class:v8::v8::ArrayBufferView
/external/v8/test/cctest/
H A Dtest-api.cc3074 size_t ByteLength() const { return contents_.ByteLength(); } function in class:ScopedArrayBufferContents
3095 CHECK_EQ(1024, static_cast<int>(ab->ByteLength()));
3102 CHECK_EQ(1024, static_cast<int>(ab_contents.ByteLength()));
3137 CHECK_EQ(2, static_cast<int>(ab1->ByteLength()));
3155 CHECK_EQ(2, static_cast<int>(ab1_contents.ByteLength()));
3176 CHECK_EQ(100, static_cast<int>(ab3->ByteLength()));
3199 CHECK_EQ(0, static_cast<int>(dv->ByteLength()));
3205 CHECK_EQ(0, static_cast<int>(ta->ByteLength()));
3231 CHECK_EQ(length * kElementSize, static_cast<int>(ta->ByteLength()));
[all...]

Completed in 175 milliseconds