HomeSort by relevance Sort by last modified time
    Searched full:staticfunctions (Results 1 - 18 of 18) sorted by null

  /external/webkit/JavaScriptCore/API/
JSClassRef.cpp 91 if (const JSStaticFunction* staticFunction = definition->staticFunctions) {
152 swap(definition.staticFunctions, protoDefinition.staticFunctions); // Move static functions to the prototype.
176 staticFunctions = new OpaqueJSClassStaticFunctionsTable;
182 staticFunctions->add(UString::Rep::create(it->first->data(), it->first->size()), entry);
186 staticFunctions = 0;
196 if (staticFunctions) {
197 deleteAllValues(*staticFunctions);
198 delete staticFunctions;
222 OpaqueJSClassStaticFunctionsTable* OpaqueJSClass::staticFunctions(JSC::ExecState* exec
    [all...]
JSCallbackObjectFunctions.h 153 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) {
154 if (staticFunctions->contains(propertyName.ustring().rep())) {
235 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) {
236 if (StaticFunctionEntry* entry = staticFunctions->get(propertyName.ustring().rep())) {
279 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) {
280 if (StaticFunctionEntry* entry = staticFunctions->get(propertyName.ustring().rep())) {
424 if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec))
    [all...]
JSClassRef.h 79 OpaqueJSClassStaticFunctionsTable* staticFunctions;
90 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/WebKitTools/DumpRenderTree/
AccessibilityController.cpp 82 static JSStaticFunction staticFunctions[] = {
96 0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues, staticFunctions,
GCController.cpp 87 static JSStaticFunction staticFunctions[] = {
95 0, kJSClassAttributeNone, "GCController", 0, 0, staticFunctions,
LayoutTestController.cpp     [all...]
LayoutTestController.h 283 static JSStaticFunction* staticFunctions();
AccessibilityUIElement.cpp     [all...]
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 150 static JSStaticFunction staticFunctions[] = {
158 0, kJSClassAttributeNone, "Profile", 0, staticValues, staticFunctions,
  /external/webkit/JavaScriptCore/API/tests/
JSNodeList.c 109 definition.staticFunctions = JSNodeList_staticFunctions;
JSNode.c 174 definition.staticFunctions = JSNode_staticFunctions;
testapi.c 540 definition.staticFunctions = Base_staticFunctions;
618 definition.staticFunctions = Derived_staticFunctions;
783 globalObjectClassDefinition.staticFunctions = globalObject_staticFunctions;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 614 static JSStaticFunction staticFunctions[] = {
643 classDefinition.staticFunctions = staticFunctions;
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 627 static JSStaticFunction staticFunctions[] = {
661 classDefinition.staticFunctions = staticFunctions;
  /external/webkit/WebKitTools/
ChangeLog-2009-06-16 137 (LayoutTestController::staticFunctions): Added setCacheModel.
201 (LayoutTestController::staticFunctions):
624 (LayoutTestController::staticFunctions): removed addFileToPasteboardOnDrag support
    [all...]
ChangeLog 62 (LayoutTestController::staticFunctions):
312 (LayoutTestController::staticFunctions):
329 (LayoutTestController::staticFunctions):
457 (LayoutTestController::staticFunctions):
    [all...]
  /external/webkit/JavaScriptCore/
ChangeLog-2008-08-10     [all...]

Completed in 1676 milliseconds