/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorState.h | 59 bool getBoolean(const String& propertyName); 60 String getString(const String& propertyName); 61 long getLong(const String& propertyName); 62 long getLong(const String& propertyName, long defaultValue); 63 double getDouble(const String& propertyName); 64 double getDouble(const String& propertyName, double defaultValue); 65 PassRefPtr<JSONObject> getObject(const String& propertyName); 67 …void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::c… in setBoolean() argument 68 …void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONStrin… in setString() argument 69 …void setLong(const String& propertyName, long value) { setValue(propertyName, JSONBasicValue::crea… in setLong() argument [all …]
|
D | InspectorState.cpp | 55 void InspectorState::setValue(const String& propertyName, PassRefPtr<JSONValue> value) in setValue() argument 57 m_properties->setValue(propertyName, value); in setValue() 61 void InspectorState::remove(const String& propertyName) in remove() argument 63 m_properties->remove(propertyName); in remove() 67 bool InspectorState::getBoolean(const String& propertyName) in getBoolean() argument 69 JSONObject::iterator it = m_properties->find(propertyName); in getBoolean() 76 String InspectorState::getString(const String& propertyName) in getString() argument 78 JSONObject::iterator it = m_properties->find(propertyName); in getString() 85 long InspectorState::getLong(const String& propertyName) in getLong() argument 87 return getLong(propertyName, 0); in getLong() [all …]
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
D | NPRuntimeRemoveProperty.cpp | 47 bool hasProperty(NPIdentifier propertyName) in hasProperty() 49 if (identifierIs(propertyName, "lastRemovedProperty")) in hasProperty() 55 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() 57 assert(identifierIs(propertyName, "lastRemovedProperty")); in getProperty() 74 bool removeProperty(NPIdentifier propertyName) in removeProperty() 76 m_lastRemovedProperty = propertyName; in removeProperty() 118 NPIdentifier propertyName; in invoke() local 123 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str()); in invoke() 126 propertyName = pluginTest()->NPN_GetIntIdentifier(number); in invoke() 129 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName); in invoke() [all …]
|
D | NPDeallocateCalledBeforeNPShutdown.cpp | 53 bool hasProperty(NPIdentifier propertyName) in hasProperty() argument 55 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject"); in hasProperty() 58 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() argument 60 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject")) in getProperty()
|
D | NPRuntimeObjectFromDestroyedPlugin.cpp | 60 bool hasProperty(NPIdentifier propertyName) in hasProperty() argument 62 return identifierIs(propertyName, "testObject"); in hasProperty() 65 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() argument 67 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject")) in getProperty()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
D | V8CSSStyleDeclarationCustom.cpp | 61 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) in hasCSSPropertyNamePrefix() argument 67 ASSERT(propertyName.length()); in hasCSSPropertyNamePrefix() 70 if (toASCIILower(propertyName[0]) != prefix[0]) in hasCSSPropertyNamePrefix() 73 unsigned length = propertyName.length(); in hasCSSPropertyNamePrefix() 76 return isASCIIUpper(propertyName[i]); in hasCSSPropertyNamePrefix() 77 if (propertyName[i] != prefix[i]) in hasCSSPropertyNamePrefix() 108 String propertyName = toCoreString(v8PropertyName); in cssPropertyInfo() local 111 CSSPropertyInfo* propInfo = map.get(propertyName); in cssPropertyInfo() 113 unsigned length = propertyName.length(); in cssPropertyInfo() 124 if (hasCSSPropertyNamePrefix(propertyName, "css")) { in cssPropertyInfo() [all …]
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | CSSMetadata.js | 49 var propertyName = property.name; 50 this._values.push(propertyName); 54 this._longhands[propertyName] = longhands; 62 shorthands.push(propertyName); 74 WebInspector.CSSMetadata.isColorAwareProperty = function(propertyName) argument 76 return WebInspector.CSSMetadata._colorAwareProperties[propertyName] === true; 119 WebInspector.CSSMetadata.isPropertyInherited = function(propertyName) argument 121 …ector.CSSMetadata.InheritedProperties[WebInspector.CSSMetadata.canonicalPropertyName(propertyName)] 122 || WebInspector.CSSMetadata.NonStandardInheritedProperties[propertyName.toLowerCase()]); 695 WebInspector.CSSMetadata.keywordsForProperty = function(propertyName) argument [all …]
|
/external/chromium_org/chrome/browser/resources/omnibox/ |
D | omnibox.js | 90 function PresentationInfoRecord(header, url, propertyName, displayAlways, argument 94 this.propertyName = propertyName; 204 propertyName) { argument 206 if (propertyName in autocompleteSuggestion) { 207 if (propertyName == 'additional_info') { 211 for (var additionalInfoKey in autocompleteSuggestion[propertyName]) { 223 autocompleteSuggestion[propertyName][additionalInfoKey]; 230 } else if (typeof autocompleteSuggestion[propertyName] == 'boolean') { 233 if (autocompleteSuggestion[propertyName]) { 241 var text = String(autocompleteSuggestion[propertyName]); [all …]
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
D | platform_app.js | 50 $Array.forEach(propertyNames, function(propertyName) { argument 51 var stub = generateDisabledMethodStub(objectName + '.' + propertyName, 54 object.__defineGetter__(propertyName, stub); 56 object.__defineSetter__(propertyName, function(value) { 57 var getter = this.__lookupGetter__(propertyName); 62 delete this[propertyName]; 63 this[propertyName] = value;
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/ |
D | PluginTest.h | 49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName)); 50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result)); 51 DEFINE_HAS_MEMBER_CHECK(removeProperty, bool, (NPIdentifier propertyName)); 91 bool NPN_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* value); 92 bool NPN_RemoveProperty(NPObject*, NPIdentifier propertyName); 164 bool hasProperty(NPIdentifier propertyName) in hasProperty() 170 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() 176 bool removeProperty(NPIdentifier propertyName) in removeProperty() 226 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName) in NP_HasProperty() 228 return static_cast<T*>(npObject)->hasProperty(propertyName); in NP_HasProperty() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSStyleDeclaration.h | 54 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0; 55 virtual String getPropertyValue(const String& propertyName) = 0; 56 virtual String getPropertyPriority(const String& propertyName) = 0; 57 virtual String getPropertyShorthand(const String& propertyName) = 0; 58 virtual bool isPropertyImplicit(const String& propertyName) = 0; 59 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 60 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
|
D | PropertySetCSSStyleDeclaration.cpp | 168 PassRefPtr<CSSValue> PropertySetCSSStyleDeclaration::getPropertyCSSValue(const String& propertyName) in getPropertyCSSValue() argument 170 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyCSSValue() 176 String PropertySetCSSStyleDeclaration::getPropertyValue(const String &propertyName) in getPropertyValue() argument 178 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyValue() 184 String PropertySetCSSStyleDeclaration::getPropertyPriority(const String& propertyName) in getPropertyPriority() argument 186 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyPriority() 192 String PropertySetCSSStyleDeclaration::getPropertyShorthand(const String& propertyName) in getPropertyShorthand() argument 194 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyShorthand() 203 bool PropertySetCSSStyleDeclaration::isPropertyImplicit(const String& propertyName) in isPropertyImplicit() argument 205 CSSPropertyID propertyID = cssPropertyID(propertyName); in isPropertyImplicit() [all …]
|
D | PropertySetCSSStyleDeclaration.h | 58 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE; 59 virtual String getPropertyValue(const String& propertyName) OVERRIDE; 60 virtual String getPropertyPriority(const String& propertyName) OVERRIDE; 61 virtual String getPropertyShorthand(const String& propertyName) OVERRIDE; 62 virtual bool isPropertyImplicit(const String& propertyName) OVERRIDE; 63 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 64 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE;
|
D | CSSStyleDeclaration.idl | 27 …gAs=Null] DOMString getPropertyValue([Default=Undefined] optional DOMString propertyName); 28 CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName); 29 …sException] DOMString removeProperty([Default=Undefined] optional DOMString propertyName); 30 …=Null] DOMString getPropertyPriority([Default=Undefined] optional DOMString propertyName); 31 [RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName, 38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
|
D | CSSComputedStyleDeclaration.h | 108 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName); 109 virtual String getPropertyValue(const String& propertyName); 110 virtual String getPropertyPriority(const String& propertyName); 111 virtual String getPropertyShorthand(const String& propertyName); 112 virtual bool isPropertyImplicit(const String& propertyName); 113 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 114 virtual String removeProperty(const String& propertyName, ExceptionState&);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 20 String propertyName = variableMatcher.group(2); in doSingleSubstitution() local 23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution() 26 propertyValue = System.getProperty(propertyName); in doSingleSubstitution() 44 String propertyName = (String) propertyNames.nextElement(); in doSubstitutions() local 45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() 47 properties.setProperty(propertyName, expandedPropertyValue); in doSubstitutions()
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
D | screen.js | 76 Object.getOwnPropertyNames(proto).forEach(function(propertyName) { argument 78 Object.getOwnPropertyDescriptor(proto, propertyName); 80 propertyName, descriptor); 81 if (api.indexOf(propertyName) >= 0) { 82 constructor[propertyName] = (function(x) { 87 })(propertyName);
|
/external/chromium-trace/trace-viewer/src/base/ |
D | properties.js | 17 function dispatchPropertyChange(target, propertyName, newValue, oldValue, argument 19 var e = new base.Event(propertyName + 'Change', 21 e.propertyName = propertyName; 35 function setPropertyAndDispatchChange(obj, propertyName, newValue) { argument 36 var privateName = propertyName + '_'; 37 var oldValue = obj[propertyName]; 40 base.dispatchPropertyChange(obj, propertyName,
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | TransitionEvent.h | 37 String propertyName; member 48 …static PassRefPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, do… in create() argument 50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement)); in create() 59 const String& propertyName() const; 67 …TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const St…
|
D | TransitionEvent.cpp | 45 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elaps… in TransitionEvent() argument 47 , m_propertyName(propertyName) in TransitionEvent() 56 , m_propertyName(initializer.propertyName) in TransitionEvent() 67 const String& TransitionEvent::propertyName() const in propertyName() function in WebCore::TransitionEvent
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ExceptionState.cpp | 107 if (propertyName() && interfaceName() && m_context != UnknownContext) { in addExceptionContext() 109 … processedMessage = ExceptionMessages::failedToDelete(propertyName(), interfaceName(), message); in addExceptionContext() 111 … processedMessage = ExceptionMessages::failedToExecute(propertyName(), interfaceName(), message); in addExceptionContext() 113 … processedMessage = ExceptionMessages::failedToGet(propertyName(), interfaceName(), message); in addExceptionContext() 115 … processedMessage = ExceptionMessages::failedToSet(propertyName(), interfaceName(), message); in addExceptionContext() 116 } else if (!propertyName() && interfaceName() && m_context == ConstructionContext) { in addExceptionContext()
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | NormalizeAlgorithm.cpp | 267 bool getArrayBufferView(const Dictionary& raw, const char* propertyName, RefPtr<ArrayBufferView>& b… in getArrayBufferView() argument 269 if (!raw.get(propertyName, buffer) || !buffer) { in getArrayBufferView() 270 … exceptionState.throwTypeError(context.toString(propertyName, "Missing or not a ArrayBufferView")); in getArrayBufferView() 276 bool getUint8Array(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, cons… in getUint8Array() argument 278 if (!raw.get(propertyName, array) || !array) { in getUint8Array() 279 … exceptionState.throwTypeError(context.toString(propertyName, "Missing or not a Uint8Array")); in getUint8Array() 286 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double&… in getOptionalInteger() argument 289 bool ok = raw.get(propertyName, number, hasProperty); in getOptionalInteger() 295 exceptionState.throwTypeError(context.toString(propertyName, "Is not a number")); in getOptionalInteger() 302 exceptionState.throwTypeError(context.toString(propertyName, "Outside of numeric range")); in getOptionalInteger() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | ElementAnimation.cpp | 42 CSSPropertyID ElementAnimation::camelCaseCSSPropertyNameToID(const String& propertyName) in camelCaseCSSPropertyNameToID() argument 44 if (propertyName.find('-') != kNotFound) in camelCaseCSSPropertyNameToID() 50 while ((end = propertyName.find(isASCIIUpper, position)) != kNotFound) { in camelCaseCSSPropertyNameToID() 51 …builder.append(propertyName.substring(position, end - position) + "-" + toASCIILower((propertyName… in camelCaseCSSPropertyNameToID() 54 builder.append(propertyName.substring(position)); in camelCaseCSSPropertyNameToID()
|
/external/chromium_org/tools/perf/utils/results_viewer/src/ |
D | base.js | 68 for (var propertyName in exports) { 73 propertyName); 75 Object.defineProperty(obj, propertyName, propertyDescriptor); 76 mLog(' +' + propertyName);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/ |
D | cr.js | 99 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { argument 100 var e = new CrEvent(propertyName + 'Change'); 101 e.propertyName = propertyName; 283 for (var propertyName in exports) { 288 propertyName); 290 Object.defineProperty(obj, propertyName, propertyDescriptor);
|