OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteLength
(Results
1 - 25
of
45
) sorted by null
1
2
/external/chromium_org/ppapi/api/
ppb_var_array_buffer.idl
38
*
ByteLength
() retrieves the length of the <code>VarArrayBuffer</code> in
43
* Note that
ByteLength
() will successfully retrieve the size of an
55
PP_Bool
ByteLength
([in] PP_Var array, [out] uint32_t byte_length);
73
* PP_Bool ok = array_buffer_if.
ByteLength
(array_buffer_var, &byte_length);
/external/chromium_org/ppapi/c/
ppb_var_array_buffer.h
51
*
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);
85
* PP_Bool ok = array_buffer_if.
ByteLength
(array_buffer_var, &byte_length);
/external/chromium_org/content/renderer/pepper/
host_array_buffer_var.cc
59
uint32 HostArrayBufferVar::
ByteLength
() {
60
return buffer_.
byteLength
();
68
RenderThread::Get()->HostAllocateSharedMemoryBuffer(
ByteLength
()).
73
shm->Map(
ByteLength
());
74
memcpy(shm->memory(), Map(),
ByteLength
());
host_array_buffer_var.h
27
virtual uint32
ByteLength
() OVERRIDE;
/external/chromium_org/ppapi/cpp/
var_array_buffer.h
64
///
ByteLength
() retrieves the length of the <code>VarArrayBuffer</code> in
68
uint32_t
ByteLength
() const;
84
/// uint32_t byte_length = array_buffer_var.
ByteLength
();
var_array_buffer.cc
52
uint32_t VarArrayBuffer::
ByteLength
() const {
55
get_interface<PPB_VarArrayBuffer_1_0>()->
ByteLength
(var_, &byte_length);
/external/chromium_org/ppapi/proxy/
plugin_array_buffer_var.cc
75
uint32 PluginArrayBufferVar::
ByteLength
() {
90
instance,
ByteLength
(), host_handle_id, &plugin_handle));
97
if (!s.Map(
ByteLength
()))
99
memcpy(s.memory(), Map(),
ByteLength
());
plugin_array_buffer_var.h
31
virtual uint32
ByteLength
() OVERRIDE;
platform_verification_private_resource.cc
59
uint32 challenge_length = challenge_buffer->
ByteLength
();
/external/chromium/base/win/
scoped_bstr_unittest.cc
22
EXPECT_EQ(0, b.
ByteLength
());
38
EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.
ByteLength
());
55
EXPECT_EQ(100, b2.
ByteLength
());
scoped_bstr.h
78
size_t
ByteLength
() const;
scoped_bstr.cc
66
size_t ScopedBstr::
ByteLength
() const {
/external/chromium_org/base/win/
scoped_bstr_unittest.cc
22
EXPECT_EQ(0, b.
ByteLength
());
38
EXPECT_EQ(test1_len * sizeof(kTestString1[0]), b1.
ByteLength
());
55
EXPECT_EQ(100, b2.
ByteLength
());
scoped_bstr.h
77
size_t
ByteLength
() const;
scoped_bstr.cc
66
size_t ScopedBstr::
ByteLength
() const {
/external/chromium_org/ppapi/shared_impl/
ppb_var_shared.cc
79
PP_Bool
ByteLength
(PP_Var array, uint32_t* byte_length) {
84
*byte_length = buffer->
ByteLength
();
105
&
ByteLength
,
unittest_utils.cc
97
if (expected_var->
ByteLength
() != actual_var->
ByteLength
()) {
98
LOG(ERROR) << "expected: " << expected_var->
ByteLength
() <<
99
" actual: " << actual_var->
ByteLength
();
103
expected_var->
ByteLength
()) != 0) {
var.h
166
virtual uint32
ByteLength
() = 0;
/external/chromium_org/ppapi/tests/
test_platform_verification_private.cc
29
for (uint32_t i = 0; i < challenge_array.
ByteLength
(); ++i)
test_flash_clipboard.cc
161
ASSERT_TRUE(array_buffer_result.
ByteLength
() == array_buffer.
ByteLength
());
163
ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.
ByteLength
(),
196
ASSERT_EQ(array_buffer_result.
ByteLength
(), array_buffer.
ByteLength
());
198
ASSERT_TRUE(std::equal(bytes, bytes + array_buffer.
ByteLength
(),
/external/chromium_org/v8/src/extensions/
free-buffer-extension.cc
47
V8::ArrayBufferAllocator()->Free(contents.Data(), contents.
ByteLength
());
/external/chromium_org/gin/
array_buffer.cc
94
length_ = contents.
ByteLength
();
159
num_bytes_(view->
ByteLength
()) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferCustom.cpp
75
v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(isolate, impl->data(), impl->
byteLength
());
93
ArrayBufferContents contents(v8Contents.Data(), v8Contents.
ByteLength
(),
V8DataViewCustom.h
51
return value->
ByteLength
();
56
return array->
byteLength
();
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc
129
uint32_t buffer_size = buffer.
ByteLength
();
Completed in 565 milliseconds
1
2