OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:staticFunctions
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Tools/DumpRenderTree/gtk/
PlainTextController.cpp
53
static JSStaticFunction
staticFunctions
[] = {
61
classDefinition.
staticFunctions
=
staticFunctions
;
TextInputController.cpp
150
static JSStaticFunction
staticFunctions
[] = {
167
classDefinition.
staticFunctions
=
staticFunctions
;
EventSender.cpp
192
classDefinition.
staticFunctions
= staticMenuItemFunctions;
790
static JSStaticFunction
staticFunctions
[] = {
[
all
...]
/external/webkit/Tools/DumpRenderTree/
AccessibilityTextMarker.cpp
70
static JSStaticFunction
staticFunctions
[] = {
76
0, kJSClassAttributeNone, "AccessibilityTextMarker", 0, staticValues,
staticFunctions
,
122
static JSStaticFunction
staticFunctions
[] = {
128
0, kJSClassAttributeNone, "AccessibilityTextMarkerRange", 0, staticValues,
staticFunctions
,
GCController.cpp
87
static JSStaticFunction
staticFunctions
[] = {
95
0, kJSClassAttributeNone, "GCController", 0, 0,
staticFunctions
,
AccessibilityController.cpp
102
static JSStaticFunction
staticFunctions
[] = {
118
0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues,
staticFunctions
,
AccessibilityUIElement.cpp
[
all
...]
LayoutTestController.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/API/
JSClassRef.cpp
95
if (const JSStaticFunction* staticFunction = definition->
staticFunctions
) {
153
swap(definition.
staticFunctions
, protoDefinition.
staticFunctions
); // Move static functions to the prototype.
177
staticFunctions
= new OpaqueJSClassStaticFunctionsTable;
183
staticFunctions
->add(StringImpl::create(it->first->characters(), it->first->length()), entry);
187
staticFunctions
= 0;
197
if (
staticFunctions
) {
198
deleteAllValues(*
staticFunctions
);
199
delete
staticFunctions
;
223
OpaqueJSClassStaticFunctionsTable* OpaqueJSClass::
staticFunctions
(JSC::ExecState* exec
[
all
...]
JSClassRef.h
84
OpaqueJSClassStaticFunctionsTable*
staticFunctions
;
95
OpaqueJSClassStaticFunctionsTable*
staticFunctions
(JSC::ExecState*);
JSObjectRef.h
318
@field
staticFunctions
A JSStaticFunction array containing the class's statically declared function properties. Pass NULL to specify no statically declared function properties. The array must be terminated by a JSStaticFunction whose name field is NULL.
330
@discussion The staticValues and
staticFunctions
arrays are the simplest and most efficient means for vending custom properties. Statically declared properties autmatically service requests like getProperty, setProperty, and getPropertyNames. Property access callbacks are required only to implement unusual properties, like array indexes, whose names are not known at compile-time.
351
const JSStaticFunction*
staticFunctions
;
[
all
...]
/external/webkit/Tools/DumpRenderTree/win/
EventSender.cpp
633
static JSStaticFunction
staticFunctions
[] = {
667
classDefinition.
staticFunctions
=
staticFunctions
;
Completed in 78 milliseconds