OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Uint32Array
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/html/canvas/
Uint32Array.cpp
28
#include "
Uint32Array
.h"
32
PassRefPtr<
Uint32Array
>
Uint32Array
::create(unsigned length)
34
return TypedArrayBase<unsigned int>::create<
Uint32Array
>(length);
37
PassRefPtr<
Uint32Array
>
Uint32Array
::create(unsigned int* array, unsigned length)
39
return TypedArrayBase<unsigned int>::create<
Uint32Array
>(array, length);
42
PassRefPtr<
Uint32Array
>
Uint32Array
::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
44
return TypedArrayBase<unsigned int>::create<
Uint32Array
>(buffer, byteOffset, length)
[
all
...]
Uint32Array.h
36
class
Uint32Array
: public IntegralTypedArrayBase<unsigned int> {
38
static PassRefPtr<
Uint32Array
> create(unsigned length);
39
static PassRefPtr<
Uint32Array
> create(unsigned int* array, unsigned length);
40
static PassRefPtr<
Uint32Array
> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
46
PassRefPtr<
Uint32Array
> subarray(int start) const;
47
PassRefPtr<
Uint32Array
> subarray(int start, int end) const;
50
Uint32Array
(PassRefPtr<ArrayBuffer> buffer,
Uint32Array.idl
38
]
Uint32Array
: ArrayBufferView {
42
Uint32Array
subarray(in long start, in [Optional] long end);
44
// void set(in
Uint32Array
array, [Optional] in unsigned long offset);
/external/webkit/Source/WebCore/bindings/js/
JSUint32ArrayCustom.cpp
30
#include "
Uint32Array
.h"
41
JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject,
Uint32Array
* object)
54
RefPtr<
Uint32Array
> array = constructArrayBufferView<
Uint32Array
, unsigned int>(exec);
/external/webkit/Source/WebCore/bindings/v8/custom/
V8Uint32ArrayCustom.cpp
33
#include "
Uint32Array
.h"
45
INC_STATS("DOM.
Uint32Array
.Contructor");
47
return constructWebGLArray<
Uint32Array
, unsigned int>(args, &info, v8::kExternalUnsignedIntArray);
52
INC_STATS("DOM.
Uint32Array
.set()");
53
return setWebGLArrayHelper<
Uint32Array
, V8Uint32Array>(args);
56
v8::Handle<v8::Value> toV8(
Uint32Array
* impl)
/external/webkit/Source/WebCore/workers/
WorkerContext.idl
127
attribute Uint32ArrayConstructor
Uint32Array
; // Usable with new operator
/external/v8/samples/
shell.cc
73
v8::Handle<v8::Value>
Uint32Array
(const v8::Arguments& args);
358
global->Set(v8::String::New("
Uint32Array
"),
359
v8::FunctionTemplate::New(
Uint32Array
));
503
v8::Handle<v8::Value>
Uint32Array
(const v8::Arguments& args) {
/external/webkit/Source/WebCore/page/
DOMWindow.idl
511
attribute [JSCCustomGetter] Uint32ArrayConstructor
Uint32Array
; // Usable with new operator
[
all
...]
/external/webkit/Source/WebCore/
Android.mk
387
html/canvas/
Uint32Array
.cpp \
[
all
...]
Completed in 143 milliseconds