OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebGLUnsignedIntArray
(Results
1 - 10
of
10
) sorted by null
/external/webkit/WebCore/html/canvas/
WebGLUnsignedIntArray.cpp
32
#include "
WebGLUnsignedIntArray
.h"
36
PassRefPtr<
WebGLUnsignedIntArray
>
WebGLUnsignedIntArray
::create(unsigned length)
42
PassRefPtr<
WebGLUnsignedIntArray
>
WebGLUnsignedIntArray
::create(unsigned int* array, unsigned length)
44
RefPtr<
WebGLUnsignedIntArray
> a =
WebGLUnsignedIntArray
::create(length);
50
PassRefPtr<
WebGLUnsignedIntArray
>
WebGLUnsignedIntArray
::create(PassRefPtr<WebGLArrayBuffer> buffer,
66
return adoptRef(new
WebGLUnsignedIntArray
(buffer, byteOffset, length))
[
all
...]
WebGLUnsignedIntArray.idl
35
]
WebGLUnsignedIntArray
: WebGLArray {
38
// void set(in
WebGLUnsignedIntArray
array, [Optional] in unsigned long offset);
WebGLUnsignedIntArray.h
38
class
WebGLUnsignedIntArray
: public WebGLArray {
42
static PassRefPtr<
WebGLUnsignedIntArray
> create(unsigned length);
43
static PassRefPtr<
WebGLUnsignedIntArray
> create(unsigned int* array, unsigned length);
44
static PassRefPtr<
WebGLUnsignedIntArray
> create(PassRefPtr<WebGLArrayBuffer> buffer, int byteOffset, unsigned length);
86
void set(
WebGLUnsignedIntArray
* array, unsigned offset, ExceptionCode& ec);
89
WebGLUnsignedIntArray
(PassRefPtr<WebGLArrayBuffer> buffer, int byteOffset, unsigned length);
/external/webkit/WebCore/bindings/v8/custom/
V8WebGLUnsignedIntArrayCustom.cpp
36
#include "
WebGLUnsignedIntArray
.h"
48
INC_STATS("DOM.
WebGLUnsignedIntArray
.Contructor");
50
return constructWebGLArray<
WebGLUnsignedIntArray
>(args, V8ClassIndex::ToInt(V8ClassIndex::
WEBGLUNSIGNEDINTARRAY
));
55
INC_STATS("DOM.
WebGLUnsignedIntArray
.get()");
56
return getWebGLArrayElement<
WebGLUnsignedIntArray
, unsigned int>(args, V8ClassIndex::
WEBGLUNSIGNEDINTARRAY
);
61
INC_STATS("DOM.
WebGLUnsignedIntArray
.set()");
62
return setWebGLArray<
WebGLUnsignedIntArray
, V8WebGLUnsignedIntArray>(args, V8ClassIndex::
WEBGLUNSIGNEDINTARRAY
);
[
all
...]
V8WebGLArrayCustom.cpp
61
return toV8(static_cast<
WebGLUnsignedIntArray
*>(impl));
/external/webkit/WebCore/bindings/js/
JSWebGLUnsignedIntArrayConstructor.cpp
33
#include "
WebGLUnsignedIntArray
.h"
55
RefPtr<
WebGLUnsignedIntArray
> array = static_cast<
WebGLUnsignedIntArray
*>(construct<
WebGLUnsignedIntArray
, unsigned int>(exec, args).get());
JSWebGLUnsignedIntArrayCustom.cpp
33
#include "
WebGLUnsignedIntArray
.h"
44
JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject,
WebGLUnsignedIntArray
* object)
61
WebGLUnsignedIntArray
* array = toWebGLUnsignedIntArray(args.at(0));
63
// void set(in
WebGLUnsignedIntArray
array, [Optional] in unsigned long offset);
JSWebGLArrayCustom.cpp
61
return getDOMObjectWrapper<JSWebGLUnsignedIntArray>(exec, globalObject, static_cast<
WebGLUnsignedIntArray
*>(object));
/external/webkit/WebCore/page/
DOMWindow.idl
455
attribute [JSCCustomGetter,Conditional=3D_CANVAS] WebGLUnsignedIntArrayConstructor
WebGLUnsignedIntArray
; // Usable with new operator
[
all
...]
/external/webkit/WebCore/bindings/v8/
V8Index.h
490
V(
WEBGLUNSIGNEDINTARRAY
,
WebGLUnsignedIntArray
) \
[
all
...]
Completed in 484 milliseconds