/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorState.h | 60 bool getBoolean(const String& propertyName); 61 String getString(const String& propertyName); 62 long getLong(const String& propertyName); 63 long getLong(const String& propertyName, long defaultValue); 64 double getDouble(const String& propertyName); 65 double getDouble(const String& propertyName, double defaultValue); 66 PassRefPtr<JSONObject> getObject(const String& propertyName); 68 …void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::c… in setBoolean() argument 69 …void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONStrin… in setString() argument 70 …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/ui/login/ |
D | screen.js | 169 var propertyName = this.getPropertyNameOf_(observer); 170 if (propertyName) { 171 if (!this.contextObservers_.hasOwnProperty(propertyName)) 172 this.contextObservers_[propertyName] = observer.bind(this); 173 realObserver = this.contextObservers_[propertyName]; 186 var propertyName = this.getPropertyNameOf_(observer); 187 if (propertyName) { 188 if (!this.contextObservers_.hasOwnProperty(propertyName)) 190 realObserver = this.contextObservers_[propertyName]; 191 delete this.contextObservers_[propertyName]; [all …]
|
/external/chromium_org/content/shell/tools/plugin/Tests/ |
D | NPRuntimeRemoveProperty.cpp | 51 bool hasProperty(NPIdentifier propertyName) in hasProperty() 53 if (identifierIs(propertyName, "lastRemovedProperty")) in hasProperty() 59 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() 61 assert(identifierIs(propertyName, "lastRemovedProperty")); in getProperty() 78 bool removeProperty(NPIdentifier propertyName) in removeProperty() 80 m_lastRemovedProperty = propertyName; in removeProperty() 122 NPIdentifier propertyName; in invoke() local 127 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str()); in invoke() 130 propertyName = pluginTest()->NPN_GetIntIdentifier(number); in invoke() 133 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName); in invoke() [all …]
|
D | NPDeallocateCalledBeforeNPShutdown.cpp | 57 bool hasProperty(NPIdentifier propertyName) in hasProperty() argument 59 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject"); in hasProperty() 62 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() argument 64 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject")) in getProperty()
|
D | NPRuntimeObjectFromDestroyedPlugin.cpp | 64 bool hasProperty(NPIdentifier propertyName) in hasProperty() argument 66 return identifierIs(propertyName, "testObject"); in hasProperty() 69 bool getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty() argument 71 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject")) in getProperty()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8CSSStyleDeclarationCustom.cpp | 60 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) in hasCSSPropertyNamePrefix() argument 66 ASSERT(propertyName.length()); in hasCSSPropertyNamePrefix() 69 if (toASCIILower(propertyName[0]) != prefix[0]) in hasCSSPropertyNamePrefix() 72 unsigned length = propertyName.length(); in hasCSSPropertyNamePrefix() 75 return isASCIIUpper(propertyName[i]); in hasCSSPropertyNamePrefix() 76 if (propertyName[i] != prefix[i]) in hasCSSPropertyNamePrefix() 86 static CSSPropertyID cssResolvedPropertyID(const String& propertyName) in cssResolvedPropertyID() argument 88 unsigned length = propertyName.length(); in cssResolvedPropertyID() 98 if (hasCSSPropertyNamePrefix(propertyName, "css")) in cssResolvedPropertyID() 100 else if (hasCSSPropertyNamePrefix(propertyName, "webkit")) in cssResolvedPropertyID() [all …]
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | CSSMetadata.js | 48 var propertyName = property.name; 49 this._values.push(propertyName); 53 this._longhands[propertyName] = longhands; 61 shorthands.push(propertyName); 77 WebInspector.CSSMetadata.isColorAwareProperty = function(propertyName) argument 79 return !!WebInspector.CSSMetadata._colorAwareProperties[propertyName.toLowerCase()]; 96 WebInspector.CSSMetadata.isLengthProperty = function(propertyName) argument 98 if (propertyName === "line-height") 102 …Set[propertyName] || propertyName.startsWith("margin") || propertyName.startsWith("padding") || pr… 140 WebInspector.CSSMetadata.isPropertyInherited = function(propertyName) argument [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimationInputHelpers.cpp | 14 CSSPropertyID AnimationInputHelpers::keyframeAttributeToCSSPropertyID(const String& propertyName) in keyframeAttributeToCSSPropertyID() argument 17 if (propertyName[0] == '-' || isASCIIUpper(propertyName[0])) in keyframeAttributeToCSSPropertyID() 19 if (propertyName == "cssFloat") in keyframeAttributeToCSSPropertyID() 22 for (size_t i = 0; i < propertyName.length(); ++i) { in keyframeAttributeToCSSPropertyID() 23 if (isASCIIUpper(propertyName[i])) in keyframeAttributeToCSSPropertyID() 25 builder.append(propertyName[i]); in keyframeAttributeToCSSPropertyID()
|
/external/chromium_org/extensions/renderer/resources/ |
D | platform_app.js | 92 $Array.forEach(propertyNames, function(propertyName) { argument 93 var stub = generateDisabledMethodStub(objectName + '.' + propertyName, 96 $Object.defineProperty(object, propertyName, { 101 var descriptor = $Object.getOwnPropertyDescriptor(this, propertyName); 107 delete this[propertyName]; 108 this[propertyName] = value; 134 $Array.forEach(propertyNames, function(propertyName) { argument 135 var stub = generateDisabledMethodStub(objectName + '.' + propertyName, 137 $Object.defineProperty(object, propertyName, {
|
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/ |
D | V8CryptoKeyCustom.cpp | 25 virtual void setString(const char* propertyName, const char* value) in setString() argument 27 m_dictionary.set(propertyName, value); in setString() 30 virtual void setUint(const char* propertyName, unsigned value) in setUint() argument 32 m_dictionary.set(propertyName, value); in setUint() 35 virtual void setAlgorithm(const char* propertyName, const blink::WebCryptoAlgorithm& algorithm) in setAlgorithm() argument 41 m_dictionary.set(propertyName, algorithmValue); in setAlgorithm() 44 …virtual void setUint8Array(const char* propertyName, const blink::WebVector<unsigned char>& vector) in setUint8Array() argument 47 m_dictionary.set(propertyName, toV8(uint8Array.get(), m_holder, m_isolate)); in setUint8Array()
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | NormalizeAlgorithm.cpp | 270 bool getOptionalCryptoOperationData(const Dictionary& raw, const char* propertyName, bool& hasPrope… in getOptionalCryptoOperationData() argument 272 if (!DictionaryHelper::get(raw, propertyName, buffer)) { in getOptionalCryptoOperationData() 280 setSyntaxError(context.toString(propertyName, "Not an ArrayBufferView"), error); in getOptionalCryptoOperationData() 292 bool getCryptoOperationData(const Dictionary& raw, const char* propertyName, RefPtr<ArrayBufferView… in getCryptoOperationData() argument 295 … bool ok = getOptionalCryptoOperationData(raw, propertyName, hasProperty, buffer, context, error); in getCryptoOperationData() 297 setSyntaxError(context.toString(propertyName, "Missing required property"), error); in getCryptoOperationData() 303 bool getUint8Array(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, cons… in getUint8Array() argument 305 if (!DictionaryHelper::get(raw, propertyName, array) || !array) { in getUint8Array() 306 setSyntaxError(context.toString(propertyName, "Missing or not a Uint8Array"), error); in getUint8Array() 315 bool getBigInteger(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, cons… in getBigInteger() argument [all …]
|
/external/chromium_org/chrome/browser/resources/omnibox/ |
D | omnibox.js | 99 function PresentationInfoRecord(header, url, propertyName, displayAlways, argument 103 this.propertyName = propertyName; 215 propertyName) { argument 217 if (propertyName in autocompleteSuggestion) { 218 if (propertyName == 'additional_info') { 223 for (var i = 0; i < autocompleteSuggestion[propertyName].length; i++) { 224 var additionalInfo = autocompleteSuggestion[propertyName][i]; 242 } else if (typeof autocompleteSuggestion[propertyName] == 'boolean') { 245 if (autocompleteSuggestion[propertyName]) { 253 var text = String(autocompleteSuggestion[propertyName]); [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSStyleDeclaration.h | 53 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0; 54 virtual String getPropertyValue(const String& propertyName) = 0; 55 virtual String getPropertyPriority(const String& propertyName) = 0; 56 virtual String getPropertyShorthand(const String& propertyName) = 0; 57 virtual bool isPropertyImplicit(const String& propertyName) = 0; 58 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 59 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
|
D | PropertySetCSSStyleDeclaration.cpp | 175 …r<CSSValue> AbstractPropertySetCSSStyleDeclaration::getPropertyCSSValue(const String& propertyName) in getPropertyCSSValue() argument 177 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyCSSValue() 183 String AbstractPropertySetCSSStyleDeclaration::getPropertyValue(const String &propertyName) in getPropertyValue() argument 185 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyValue() 191 String AbstractPropertySetCSSStyleDeclaration::getPropertyPriority(const String& propertyName) in getPropertyPriority() argument 193 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyPriority() 199 String AbstractPropertySetCSSStyleDeclaration::getPropertyShorthand(const String& propertyName) in getPropertyShorthand() argument 201 CSSPropertyID propertyID = cssPropertyID(propertyName); in getPropertyShorthand() 210 bool AbstractPropertySetCSSStyleDeclaration::isPropertyImplicit(const String& propertyName) in isPropertyImplicit() argument 212 CSSPropertyID propertyID = cssPropertyID(propertyName); in isPropertyImplicit() [all …]
|
D | CSSComputedStyleDeclaration.h | 91 … virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE; 92 virtual String getPropertyValue(const String& propertyName) OVERRIDE; 93 virtual String getPropertyPriority(const String& propertyName) OVERRIDE; 94 virtual String getPropertyShorthand(const String& propertyName) OVERRIDE; 95 virtual bool isPropertyImplicit(const String& propertyName) OVERRIDE; 96 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 97 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE;
|
D | PropertySetCSSStyleDeclaration.h | 53 …virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE … 54 virtual String getPropertyValue(const String& propertyName) OVERRIDE FINAL; 55 virtual String getPropertyPriority(const String& propertyName) OVERRIDE FINAL; 56 virtual String getPropertyShorthand(const String& propertyName) OVERRIDE FINAL; 57 virtual bool isPropertyImplicit(const String& propertyName) OVERRIDE FINAL; 58 …virtual void setProperty(const String& propertyName, const String& value, const String& priority, … 59 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE FINAL;
|
/external/chromium_org/content/shell/tools/plugin/ |
D | PluginTest.h | 63 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName)); 66 (NPIdentifier propertyName, NPVariant* result)); 67 DEFINE_HAS_MEMBER_CHECK(removeProperty, bool, (NPIdentifier propertyName)); 124 bool NPN_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* value); 125 bool NPN_RemoveProperty(NPObject*, NPIdentifier propertyName); 203 bool hasProperty(NPIdentifier propertyName) { in hasProperty() 208 bool getProperty(NPIdentifier propertyName, NPVariant* result) { in getProperty() 213 bool removeProperty(NPIdentifier propertyName) { in removeProperty() 258 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName) { in NP_HasProperty() 259 return static_cast<T*>(npObject)->hasProperty(propertyName); in NP_HasProperty() [all …]
|
/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-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/dom/ |
D | DatasetDOMStringMap.cpp | 74 static bool propertyNameMatchesAttributeName(const CharType1* propertyName, const CharType2* attrib… in propertyNameMatchesAttributeName() argument 83 … if ((wordBoundary ? toASCIIUpper(attributeName[a]) : attributeName[a]) != propertyName[p]) in propertyNameMatchesAttributeName() 94 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeNam… in propertyNameMatchesAttributeName() argument 99 unsigned propertyLength = propertyName.length(); in propertyNameMatchesAttributeName() 102 if (propertyName.is8Bit()) { in propertyNameMatchesAttributeName() 104 …return propertyNameMatchesAttributeName(propertyName.characters8(), attributeName.characters8(), p… in propertyNameMatchesAttributeName() 105 …return propertyNameMatchesAttributeName(propertyName.characters8(), attributeName.characters16(), … in propertyNameMatchesAttributeName() 109 …return propertyNameMatchesAttributeName(propertyName.characters16(), attributeName.characters8(), … in propertyNameMatchesAttributeName() 110 …return propertyNameMatchesAttributeName(propertyName.characters16(), attributeName.characters16(),… in propertyNameMatchesAttributeName()
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | TransitionEvent.h | 37 String propertyName; member 49 …awPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsed… in create() argument 51 … return adoptRefWillBeNoop(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement)); in create() 60 const String& propertyName() const; 70 …TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const St…
|
D | TransitionEvent.cpp | 42 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elaps… in TransitionEvent() argument 44 , m_propertyName(propertyName) in TransitionEvent() 52 , m_propertyName(initializer.propertyName) in TransitionEvent() 62 const String& TransitionEvent::propertyName() const in propertyName() function in blink::TransitionEvent
|
/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);
|