HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 76 - 100 of 216) sorted by null

1 2 34 5 6 7 8 9

  /external/webkit/JavaScriptCore/runtime/
NumberConstructor.cpp 66 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
68 return getStaticValueSlot<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, slot);
71 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
73 return getStaticValueDescriptor<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
PropertySlot.h 56 JSValue getValue(ExecState* exec, const Identifier& propertyName) const
62 return m_getValue(exec, propertyName, *this);
65 JSValue getValue(ExecState* exec, unsigned propertyName) const
71 return m_getValue(exec, Identifier::from(exec, propertyName), *this);
Arguments.h 96 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
97 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
100 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
101 virtual void put(ExecState*, unsigned propertyName, JSValue, PutPropertySlot&);
102 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
103 virtual bool deleteProperty(ExecState*, unsigned propertyName);
RegExpObject.cpp 70 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
72 return getStaticValueSlot<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, slot);
75 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
77 return getStaticValueDescriptor<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, descriptor);
105 void RegExpObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
107 lookupPut<RegExpObject, JSObject>(exec, propertyName, value, ExecState::regExpTable(exec), this, slot);
JSCell.h 104 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
105 virtual void put(ExecState*, unsigned propertyName, JSValue);
106 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
107 virtual bool deleteProperty(ExecState*, unsigned propertyName);
121 bool fastGetOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
122 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
123 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
ObjectPrototype.cpp 62 void ObjectPrototype::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
64 JSObject::put(exec, propertyName, value, slot);
68 propertyName.toStrictUInt32(&isUInt32);
73 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
77 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
Structure.cpp 292 void Structure::despecifyDictionaryFunction(const Identifier& propertyName)
294 const UString::Rep* rep = propertyName._ustring.rep();
338 PassRefPtr<Structure> Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
343 if (Structure* existingTransition = structure->table.get(make_pair(propertyName.ustring().rep(), attributes), specificValue)) {
354 PassRefPtr<Structure> Structure::addPropertyTransition(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
358 ASSERT(!Structure::addPropertyTransitionToExistingStructure(structure, propertyName, attributes, specificValue, offset));
366 offset = transition->put(propertyName, attributes, specificValue);
378 transition->m_nameInPrevious = propertyName.ustring().rep();
400 offset = transition->put(propertyName, attributes, specificValue);
408 structure->table.add(make_pair(propertyName.ustring().rep(), attributes), transition.get(), specificValue)
    [all...]
JSONObject.cpp 214 UString propertyName;
215 if (name.getString(exec, propertyName)) {
216 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName));
229 propertyName = name.toString(exec);
232 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName));
332 inline JSValue Stringifier::toJSON(JSValue value, const PropertyNameForFunctionCall& propertyName)
351 JSValue list[] = { propertyName.value(m_exec) };
356 Stringifier::StringifyResult Stringifier::appendStringifiedValue(StringBuilder& builder, JSValue value, JSObject* holder, const PropertyNameForFunctionCall& propertyName)
359 value = toJSON(value, propertyName);
365 JSValue list[] = { propertyName.value(m_exec), value }
    [all...]
  /external/webkit/JavaScriptGlue/
JSObject.cpp 57 JSUserObject* JSUserObject::CopyProperty(CFStringRef propertyName)
62 result = (JSUserObject*)fCallBacks.copyProperty(fData, propertyName);
67 void JSUserObject::SetProperty(CFStringRef propertyName, JSUserObject* value)
71 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value);
JavaScriptGlue.h 58 typedef JSObjectRef (*JSObjectCopyPropertyProcPtr)(void *data, CFStringRef propertyName) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
59 typedef void (*JSObjectSetPropertyProcPtr)(void *data, CFStringRef propertyName, JSObjectRef jsValue) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
92 JSObjectRef JSObjectCopyProperty(JSObjectRef ref, CFStringRef propertyName) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
93 void JSObjectSetProperty(JSObjectRef ref, CFStringRef propertyName, JSObjectRef value) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
JSObject.h 44 JSUserObject* CopyProperty(CFStringRef propertyName);
45 void SetProperty(CFStringRef propertyName, JSUserObject* value);
JSValueWrapper.h 50 static JSObjectRef JSObjectCopyProperty(void *data, CFStringRef propertyName);
51 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
  /external/webkit/WebCore/bridge/objc/
objc_runtime.h 94 ObjcFallbackObjectImp(ExecState*, ObjcInstance*, const Identifier& propertyName);
98 const Identifier& propertyName() const { return _item; }
114 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
116 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 122 bool getProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
123 bool getProperty(uint32_t objectID, unsigned propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
124 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
125 bool setProperty(uint32_t objectID, unsigned propertyName, data_t valueData, mach_msg_type_number_t valueLength);
126 bool removeProperty(uint32_t objectID, const JSC::Identifier& propertyName);
127 bool removeProperty(uint32_t objectID, unsigned propertyName);
128 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
129 bool hasProperty(uint32_t objectID, unsigned propertyName);
  /frameworks/base/core/java/android/pim/vcard/
VCardInterpreterCollection.java 79 public void propertyName(String name) {
81 builder.propertyName(name);
VCardParserImpl_V21.java 60 public void propertyName(String name) {
246 protected boolean isValidPropertyName(final String propertyName) {
247 if (!(getKnownPropertyNameSet().contains(propertyName.toUpperCase()) ||
248 propertyName.startsWith("X-"))
249 && !mUnknownTypeSet.contains(propertyName)) {
250 mUnknownTypeSet.add(propertyName);
251 Log.w(LOG_TAG, "Property name unsupported by vCard 2.1: " + propertyName);
460 String propertyName = propertyNameAndValue[0].toUpperCase();
465 if (propertyName.equals("ADR") || propertyName.equals("ORG") || propertyName.equals("N"))
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardInterpreterCollection.java 79 public void propertyName(String name) {
81 builder.propertyName(name);
VCardParserImpl_V21.java 61 public void propertyName(String name) {
247 protected boolean isValidPropertyName(final String propertyName) {
248 if (!(getKnownPropertyNameSet().contains(propertyName.toUpperCase()) ||
249 propertyName.startsWith("X-"))
250 && !mUnknownTypeSet.contains(propertyName)) {
251 mUnknownTypeSet.add(propertyName);
252 Log.w(LOG_TAG, "Property name unsupported by vCard 2.1: " + propertyName);
461 String propertyName = propertyNameAndValue[0].toUpperCase();
466 if (propertyName.equals("ADR") || propertyName.equals("ORG") || propertyName.equals("N"))
    [all...]
  /external/webkit/JavaScriptCore/API/tests/
JSNode.c 106 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
108 UNUSED_PARAM(propertyName);
122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
124 UNUSED_PARAM(propertyName);
132 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
135 UNUSED_PARAM(propertyName);
  /external/webkit/WebCore/bindings/js/
JSHTMLAllCollectionCustom.cpp 43 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, const Identifier& propertyName)
46 collection->impl()->namedItems(propertyName, namedItems);
108 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName)
111 collection->namedItems(propertyName, namedItems);
115 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
118 return getNamedItems(exec, thisObj, propertyName);
JSHTMLCollectionCustom.cpp 40 static JSValue getNamedItems(ExecState* exec, JSHTMLCollection* collection, const Identifier& propertyName)
43 collection->impl()->namedItems(propertyName, namedItems);
105 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, const Identifier& propertyName)
108 collection->namedItems(propertyName, namedItems);
112 JSValue JSHTMLCollection::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
115 return getNamedItems(exec, thisObj, propertyName);
  /external/webkit/JavaScriptCore/API/
JSObjectRef.cpp 242 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
249 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
252 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
259 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
268 void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception)
274 Identifier name(propertyName->identifier(&exec->globalData()));
324 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
331 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
491 void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef array, JSStringRef propertyName)
495 propertyNames->add(propertyName->identifier(propertyNames->globalData()))
    [all...]
  /libcore/luni/src/main/java/java/net/
AddressCache.java 104 String propertyName = isPositive ? "networkaddress.cache.ttl" : "networkaddress.cache.negative.ttl";
108 if (System.getSecurityManager() != null || System.getProperty(propertyName, null) != null) {
110 expiryNanos = customTtl(propertyName, defaultTtlNanos);
129 private long customTtl(String propertyName, long defaultTtlNanos) {
130 String ttlString = AccessController.doPrivileged(new PriviAction<String>(propertyName, null));
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 135 InjectedScript.applyStyleText = function(styleId, styleText, propertyName)
152 if (style.getPropertyShorthand(propertyName)) {
153 var longhandProperties = InjectedScript._getLonghandProperties(style, propertyName);
157 style.removeProperty(propertyName);
162 return [null, [propertyName]];
201 InjectedScript.toggleStyleEnabled = function(styleId, propertyName, disabled)
214 style.__disabledPropertyValues[propertyName] = style.getPropertyValue(propertyName);
215 style.__disabledPropertyPriorities[propertyName] = style.getPropertyPriority(propertyName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 553 * @param propertyName the name of the property. The id of the plug-in is added to this string.
557 public static boolean saveStringProperty(IResource resource, String propertyName,
559 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName);
573 * @param propertyName the name of the property. The id of the plug-in is added to this string.
576 public static String loadStringProperty(IResource resource, String propertyName) {
577 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName);
590 * @param propertyName the name of the property. The id of the plug-in is added to this string.
594 public static boolean saveBooleanProperty(IResource resource, String propertyName,
596 return saveStringProperty(resource, propertyName, Boolean.toString(value));
602 * @param propertyName the name of the property. The id of the plug-in is added to this string
    [all...]

Completed in 3909 milliseconds

1 2 34 5 6 7 8 9