HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 201 - 225 of 279) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 672 static bool NPN_GetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, NPVariant* result)
678 return npObject->_class->getProperty(npObject, propertyName, result);
683 static bool NPN_SetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, const NPVariant* value)
689 return npObject->_class->setProperty(npObject, propertyName, value);
694 static bool NPN_RemoveProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName)
700 return npObject->_class->removeProperty(npObject, propertyName);
705 static bool NPN_HasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName)
711 return npObject->_class->hasProperty(npObject, propertyName);
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 177 bool pauseTransitionAtTimeOnElementWithId(const QString& propertyName, double time, const QString& elementId);
257 QString pageProperty(const QString& propertyName, int pageNumber);
  /external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 314 bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId)
552 JSRetainPtr<JSStringRef> LayoutTestController::pageProperty(const char* propertyName, int pageNumber) const
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp     [all...]
qt_pixmapruntime.cpp 179 JSValue QtPixmapInstance::getMethod(ExecState* exec, const Identifier& propertyName)
181 MethodList methodList = getClass()->methodsNamed(propertyName, this);
182 return new (exec) RuntimeMethod(exec, exec->lexicalGlobalObject(), WebCore::deprecatedGetDOMStructure<RuntimeMethod>(exec), propertyName, methodList);
  /frameworks/base/libs/hwui/
ShapeCache.h 310 ShapeCache(const char* name, const char* propertyName, float defaultSize);
404 ShapeCache<Entry>::ShapeCache(const char* name, const char* propertyName, float defaultSize):
408 if (property_get(propertyName, property, NULL) > 0) {
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 135 void tryCacheGetByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const Identifier& propertyName, const PropertySlot&);
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 242 JSValue ObjcClass::fallbackObject(ExecState* exec, Instance* instance, const Identifier &propertyName)
249 return new (exec) ObjcFallbackObjectImp(exec, exec->lexicalGlobalObject(), objcInstance, propertyName);
objc_instance.mm 197 JSValue ObjcInstance::getMethod(ExecState* exec, const Identifier& propertyName)
199 MethodList methodList = getClass()->methodsNamed(propertyName, this);
200 return new (exec) ObjCRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h 72 static WTF::CString pageProperty(WebKitWebFrame*, const char* propertyName, int pageNumber);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.cpp 53 static JSValueRef propertyValue(JSContextRef context, JSObjectRef object, const char* propertyName)
57 JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));
62 static JSObjectRef propertyObject(JSContextRef context, JSObjectRef object, const char* propertyName)
64 JSValueRef value = propertyValue(context, object, propertyName);
InjectedBundlePage.cpp 51 static JSValueRef propertyValue(JSContextRef context, JSObjectRef object, const char* propertyName)
55 JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));
59 static double propertyValueDouble(JSContextRef context, JSObjectRef object, const char* propertyName)
61 JSValueRef value = propertyValue(context, object, propertyName);
67 static int propertyValueInt(JSContextRef context, JSObjectRef object, const char* propertyName)
69 return static_cast<int>(propertyValueDouble(context, object, propertyName));
72 static double numericWindowPropertyValue(WKBundleFrameRef frame, const char* propertyName)
75 return propertyValueDouble(context, JSContextGetGlobalObject(context), propertyName);
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceSet.java 368 String propertyName,
375 ICalendar.Property prop = new ICalendar.Property(propertyName);
428 String propertyName,
434 ICalendar.Property prop = new ICalendar.Property(propertyName);
ICalendar.java 199 for (String propertyName : getPropertyNames()) {
200 for (Property property : getProperties(propertyName)) {
  /external/webkit/Source/WebCore/bindings/js/
SerializedScriptValue.cpp 331 JSValue getSparseIndex(JSArray* array, unsigned propertyName, bool& hasIndex)
335 if (array->JSArray::getOwnPropertySlot(m_exec, propertyName, slot)) {
337 return slot.getValue(m_exec, propertyName);
339 } else if (array->getOwnPropertySlot(m_exec, propertyName, slot)) {
341 return slot.getValue(m_exec, propertyName);
347 JSValue getProperty(JSObject* object, const Identifier& propertyName)
350 if (object->getOwnPropertySlot(m_exec, propertyName, slot))
351 return slot.getValue(m_exec, propertyName);
    [all...]
JSDOMBinding.cpp 424 JSValue objectToStringFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
426 return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->functionStructure(), 0, propertyName, objectProtoFuncToString);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 89 HRESULT pauseTransition([in] BSTR propertyName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* transitionWasRunning);
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 166 String propertyName = a.getString(com.android.internal.R.styleable.PropertyAnimator_propertyName);
168 anim.setPropertyName(propertyName);
  /libcore/luni/src/main/java/java/lang/
System.java 400 * @param propertyName
405 public static String getProperty(String propertyName) {
406 return getProperty(propertyName, null);
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js 673 isPropertyInherited: function(propertyName)
678 return !(propertyName in WebInspector.StylesSidebarPane.InheritedProperties);
683 isPropertyOverloaded: function(propertyName, shorthand)
688 if (this.isInherited && !(propertyName in WebInspector.StylesSidebarPane.InheritedProperties)) {
693 var used = (propertyName in this._usedProperties);
699 var longhandProperties = this.styleRule.style.getLonghandProperties(propertyName);
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.h 38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
40 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.cpp 275 bool DumpRenderTreeSupportQt::pauseTransitionOfProperty(QWebFrame *frame, const QString &propertyName, double time, const QString &elementId)
292 return controller->pauseTransitionAtTime(coreNode->renderer(), propertyName, time);
917 QString DumpRenderTreeSupportQt::pageProperty(QWebFrame* frame, const QString& propertyName, int pageNumber)
920 return PrintContext::pageProperty(coreFrame, propertyName.toUtf8().constData(), pageNumber);
    [all...]
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.h 76 JSRetainPtr<JSStringRef> pageProperty(const char* propertyName, int pageNumber) const;
274 bool pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId);
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 856 NEVER_INLINE void JITThunks::tryCacheGetByID(CallFrame* callFrame, CodeBlock* codeBlock, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot& slot, StructureStubInfo* stubInfo)
869 if (isJSArray(globalData, baseValue) && propertyName == callFrame->propertyNames().length) {
874 if (isJSString(globalData, baseValue) && propertyName == callFrame->propertyNames().length) {
922 offset = slotBaseObject->structure()->get(callFrame->globalData(), propertyName);
929 JIT::compileGetByIdProto(callFrame->scopeChain()->globalData, callFrame, codeBlock, stubInfo, structure, slotBaseObject->structure(), propertyName, slot, offset, returnAddress);
934 size_t count = normalizePrototypeChain(callFrame, baseValue, slot.slotBase(), propertyName, offset);
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
StringPrototype.cpp 144 bool StringPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
146 return getStaticFunctionSlot<StringObject>(exec, ExecState::stringTable(exec), this, propertyName, slot);
149 bool StringPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
151 return getStaticFunctionDescriptor<StringObject>(exec, ExecState::stringTable(exec), this, propertyName, descriptor);
    [all...]

Completed in 1602 milliseconds

1 2 3 4 5 6 7 891011>>