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

/external/chromium_org/ppapi/c/
H A Dppb_var_array_buffer.h51 * ByteLength() retrieves the length of the <code>VarArrayBuffer</code> in
56 * Note that ByteLength() will successfully retrieve the size of an
68 PP_Bool (*ByteLength)(struct PP_Var array, uint32_t* byte_length); member in struct:PPB_VarArrayBuffer_1_0
85 * PP_Bool ok = array_buffer_if.ByteLength(array_buffer_var, &byte_length);
/external/chromium_org/ppapi/cpp/
H A Dvar_array_buffer.cc52 uint32_t VarArrayBuffer::ByteLength() const { function in class:pp::VarArrayBuffer
55 get_interface<PPB_VarArrayBuffer_1_0>()->ByteLength(var_, &byte_length);
/external/chromium_org/ppapi/proxy/
H A Dplugin_array_buffer_var.cc75 uint32 PluginArrayBufferVar::ByteLength() { function in class:ppapi::PluginArrayBufferVar
90 instance, ByteLength(), host_handle_id, &plugin_handle));
97 if (!s.Map(ByteLength()))
99 memcpy(s.memory(), Map(), ByteLength());
/external/chromium_org/content/renderer/pepper/
H A Dhost_array_buffer_var.cc59 uint32 HostArrayBufferVar::ByteLength() { function in class:content::HostArrayBufferVar
68 RenderThread::Get()->HostAllocateSharedMemoryBuffer(ByteLength()).
73 shm->Map(ByteLength());
74 memcpy(shm->memory(), Map(), ByteLength());
/external/chromium/base/win/
H A Dscoped_bstr.cc66 size_t ScopedBstr::ByteLength() const { function in class:base::win::ScopedBstr
/external/chromium_org/base/win/
H A Dscoped_bstr.cc66 size_t ScopedBstr::ByteLength() const { function in class:base::win::ScopedBstr
/external/chromium_org/ppapi/shared_impl/
H A Dppb_var_shared.cc79 PP_Bool ByteLength(PP_Var array, uint32_t* byte_length) { function in namespace:ppapi::__anon10230
84 *byte_length = buffer->ByteLength();
105 &ByteLength,
/external/chromium_org/v8/include/
H A Dv8.h2732 size_t ByteLength() const { return byte_length_; } function in class:v8::ArrayBuffer::Contents
2745 size_t ByteLength() const;
2828 size_t ByteLength();
2850 * (e.g. for Int16Array, |ByteLength|/2).
/external/chromium_org/v8/src/
H A Dapi.cc6142 size_t v8::ArrayBuffer::ByteLength() const { function in class:v8::v8::ArrayBuffer
6197 size_t v8::ArrayBufferView::ByteLength() { function in class:v8::v8::ArrayBufferView
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2852 size_t ByteLength() const { return contents_.ByteLength(); } function in class:ScopedArrayBufferContents
2873 CHECK_EQ(1024, static_cast<int>(ab->ByteLength()));
2880 CHECK_EQ(1024, static_cast<int>(ab_contents.ByteLength()));
2915 CHECK_EQ(2, static_cast<int>(ab1->ByteLength()));
2933 CHECK_EQ(2, static_cast<int>(ab1_contents.ByteLength()));
2954 CHECK_EQ(100, static_cast<int>(ab3->ByteLength()));
2977 CHECK_EQ(0, static_cast<int>(dv->ByteLength()));
2983 CHECK_EQ(0, static_cast<int>(ta->ByteLength()));
3009 CHECK_EQ(length * kElementSize, static_cast<int>(ta->ByteLength()));
[all...]

Completed in 310 milliseconds