HomeSort by relevance Sort by last modified time
    Searched defs:getPropertyNames (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 107 JSObjectGetPropertyNamesCallback getPropertyNames;
JSObjectRef.h 190 @discussion If you named your function GetPropertyNames, you would declare it like this:
192 void GetPropertyNames(JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames);
196 Use JSPropertyNameAccumulatorAddName to add property names to accumulator. A class's getPropertyNames callback only needs to provide the names of properties that the class vends through a custom getProperty or setProperty callback. Other properties, including statically declared properties, properties vended by other classes, and properties belonging to object's prototype, are added independently.
325 @field getPropertyNames The callback invoked when collecting the names of an object's properties.
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.
359 JSObjectGetPropertyNamesCallback getPropertyNames;
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.cpp 118 void JSDOMWindowShell::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
120 m_window->getPropertyNames(exec, propertyNames, mode);
JSDOMWindowCustom.cpp 378 void JSDOMWindow::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
383 Base::getPropertyNames(exec, propertyNames, mode);
  /external/webkit/Source/WebCore/bridge/c/
c_instance.cpp 292 void CInstance::getPropertyNames(ExecState* exec, PropertyNameArray& nameArray)
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 105 virtual void getPropertyNames(ExecState*, PropertyNameArray&) { }
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.cpp 206 void QtInstance::getPropertyNames(ExecState* exec, PropertyNameArray& array)
qt_pixmapruntime.cpp 217 void QtPixmapInstance::getPropertyNames(ExecState*exec, PropertyNameArray& arr)
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 441 void JSObject::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
451 prototype->getPropertyNames(exec, propertyNames, mode);
464 m_structure->getPropertyNames(exec->globalData(), propertyNames, mode);
Structure.cpp 748 void Structure::getPropertyNames(JSGlobalData& globalData, PropertyNameArray& propertyNames, EnumerationMode mode)
  /frameworks/opt/calendar/src/com/android/calendarcommon/
ICalendar.java 151 public Set<String> getPropertyNames() {
199 for (String propertyName : getPropertyNames()) {
  /prebuilt/common/osgi/
osgi.jar 

Completed in 4655 milliseconds