HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 26 - 50 of 303) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeTypeArray.cpp 59 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName)
66 if (mimes[i].type == propertyName)
72 PassRefPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName)
79 if (mimes[i].type == propertyName)
DOMPlugin.cpp 74 bool DOMPlugin::canGetItemsForName(const AtomicString& propertyName)
78 if (mimes[i].type == propertyName)
83 PassRefPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& propertyName)
87 if (mimes[i].type == propertyName)
DOMPluginArray.cpp 59 bool DOMPluginArray::canGetItemsForName(const AtomicString& propertyName)
66 if (plugins[i].name == propertyName)
72 PassRefPtr<DOMPlugin> DOMPluginArray::namedItem(const AtomicString& propertyName)
79 if (plugins[i].name == propertyName)
  /external/chromium_org/third_party/WebKit/Source/core/css/
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, ExceptionState&) OVERRIDE;
64 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE;
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, ExceptionState&);
114 virtual String removeProperty(const String& propertyName, ExceptionState&);
PropertySetCSSStyleDeclaration.cpp 168 PassRefPtr<CSSValue> PropertySetCSSStyleDeclaration::getPropertyCSSValue(const String& propertyName)
170 CSSPropertyID propertyID = cssPropertyID(propertyName);
176 String PropertySetCSSStyleDeclaration::getPropertyValue(const String &propertyName)
178 CSSPropertyID propertyID = cssPropertyID(propertyName);
184 String PropertySetCSSStyleDeclaration::getPropertyPriority(const String& propertyName)
186 CSSPropertyID propertyID = cssPropertyID(propertyName);
192 String PropertySetCSSStyleDeclaration::getPropertyShorthand(const String& propertyName)
194 CSSPropertyID propertyID = cssPropertyID(propertyName);
203 bool PropertySetCSSStyleDeclaration::isPropertyImplicit(const String& propertyName)
205 CSSPropertyID propertyID = cssPropertyID(propertyName);
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 103 final String propertyName = property.getName();
106 if (propertyName.equalsIgnoreCase(VCardConstants.PROPERTY_VERSION)
118 } else if (propertyName.equalsIgnoreCase(TYPE_FOMA_CHARSET_SIGN)) {
127 if (WINDOWS_MOBILE_PHONE_SIGNS.contains(propertyName)) {
129 } else if (FOMA_SIGNS.contains(propertyName)) {
131 } else if (JAPANESE_MOBILE_PHONE_SIGNS.contains(propertyName)) {
133 } else if (APPLE_SIGNS.contains(propertyName)) {
VCardParserImpl_V21.java 167 protected boolean isValidPropertyName(final String propertyName) {
168 if (!(getKnownPropertyNameSet().contains(propertyName.toUpperCase()) ||
169 propertyName.startsWith("X-"))
170 && !mUnknownTypeSet.contains(propertyName)) {
171 mUnknownTypeSet.add(propertyName);
172 Log.w(LOG_TAG, "Property name unsupported by vCard 2.1: " + propertyName);
381 final String propertyName = line.substring(nameIndex, i);
382 propertyData.setName(propertyName);
394 final String propertyName = line.substring(nameIndex, i);
395 propertyData.setName(propertyName);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 61 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix)
67 ASSERT(propertyName.length());
70 if (toASCIILower(propertyName[0]) != prefix[0])
73 unsigned length = propertyName.length();
76 return isASCIIUpper(propertyName[i]);
77 if (propertyName[i] != prefix[i])
108 String propertyName = toCoreString(v8PropertyName);
111 CSSPropertyInfo* propInfo = map.get(propertyName);
113 unsigned length = propertyName.length();
124 if (hasCSSPropertyNamePrefix(propertyName, "css"))
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 74 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
75 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
77 * @param propertyName The name of the property being animated. Should not be null.
79 public void setPropertyName(String propertyName) {
81 // propertyName to be used later when setValues() is called if so.
85 valuesHolder.setPropertyName(propertyName);
87 mValuesMap.put(propertyName, valuesHolder);
89 mPropertyName = propertyName;
103 // propertyName to be used later when setValues() is called if so.
136 String propertyName = null
    [all...]
PropertyValuesHolder.java 128 * @param propertyName The name of the property for this holder.
130 private PropertyValuesHolder(String propertyName) {
131 mPropertyName = propertyName;
148 * @param propertyName The name of the property being animated.
152 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
153 return new IntPropertyValuesHolder(propertyName, values);
170 * @param propertyName The name of the property being animated.
174 public static PropertyValuesHolder ofFloat(String propertyName, float... values) {
175 return new FloatPropertyValuesHolder(propertyName, values);
194 * @param propertyName The name of the property being animated
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
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)
170 bool getProperty(NPIdentifier propertyName, NPVariant* result)
176 bool removeProperty(NPIdentifier propertyName)
226 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
228 return static_cast<T*>(npObject)->hasProperty(propertyName);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.cpp 42 CSSPropertyID ElementAnimation::camelCaseCSSPropertyNameToID(const String& propertyName)
44 if (propertyName.find('-') != kNotFound)
50 while ((end = propertyName.find(isASCIIUpper, position)) != kNotFound) {
51 builder.append(propertyName.substring(position, end - position) + "-" + toASCIILower((propertyName)[end]));
54 builder.append(propertyName.substring(position));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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)
76 return WebInspector.CSSMetadata._colorAwareProperties[propertyName] === true;
116 * @param {string} propertyName
119 WebInspector.CSSMetadata.isPropertyInherited = function(propertyName)
121 return !!(WebInspector.CSSMetadata.InheritedProperties[WebInspector.CSSMetadata.canonicalPropertyName(propertyName)]
122 || WebInspector.CSSMetadata.NonStandardInheritedProperties[propertyName.toLowerCase()])
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 164 public void addProperty(int propertyName, Object value) {
169 mProperties.put(propertyName, value);
176 public Object getProperty(int propertyName) {
181 return mProperties.get(propertyName);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 267 bool getArrayBufferView(const Dictionary& raw, const char* propertyName, RefPtr<ArrayBufferView>& buffer, const ExceptionContext& context, ExceptionState& exceptionState)
269 if (!raw.get(propertyName, buffer) || !buffer) {
270 exceptionState.throwTypeError(context.toString(propertyName, "Missing or not a ArrayBufferView"));
276 bool getUint8Array(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, const ExceptionContext& context, ExceptionState& exceptionState)
278 if (!raw.get(propertyName, array) || !array) {
279 exceptionState.throwTypeError(context.toString(propertyName, "Missing or not a Uint8Array"));
286 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double& value, double minValue, double maxValue, const ExceptionContext& context, ExceptionState& exceptionState)
289 bool ok = raw.get(propertyName, number, hasProperty);
295 exceptionState.throwTypeError(context.toString(propertyName, "Is not a number"));
302 exceptionState.throwTypeError(context.toString(propertyName, "Outside of numeric range"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionState.h 64 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
67 , m_propertyName(propertyName)
106 const char* propertyName() const { return m_propertyName; }
ExceptionMessages.h 52 static String notASequenceTypeProperty(const String& propertyName);
ExceptionMessages.cpp 83 String ExceptionMessages::notASequenceTypeProperty(const String& propertyName)
85 return "'" + propertyName + "' property is neither an array, nor does it have indexed properties.";
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 72 public Result getProperty(Object objectView, String propertyName) {
74 return super.getProperty(objectView, propertyName);
78 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
80 return super.setProperty(objectView, propertyName, propertyValue);
  /external/chromium_org/content/child/npapi/
npobject_util.cc 56 NPIdentifier propertyName) {
57 return NPObjectProxy::NPHasProperty(npobj, propertyName);
62 NPIdentifier propertyName,
64 return NPObjectProxy::NPGetProperty(npobj, propertyName, result);
69 NPIdentifier propertyName,
71 return NPObjectProxy::NPSetProperty(npobj, propertyName, value);
76 NPIdentifier propertyName) {
77 return NPObjectProxy::NPRemoveProperty(npobj, propertyName);
  /external/chromium_org/chrome/renderer/resources/extensions/
platform_app.js 50 $Array.forEach(propertyNames, function(propertyName) {
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;
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 129 String propertyName = "backgroundColor";
134 PropertyValuesHolder propertyValuesHolder = PropertyValuesHolder.ofInt(propertyName, values);
151 String propertyName = "backgroundColor";
156 ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, propertyName,
159 assertEquals(propertyName, actualPropertyName);
185 String propertyName = "backgroundColor";
190 ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, propertyName,
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 157 String propertyName = SERVICE_CLASS.getName() + ":" + schemaLanguage;
161 if (debug) debugPrintln("Looking up system property '"+propertyName+"'" );
162 String r = System.getProperty(propertyName);
182 debugPrintln("failed to look up system property '"+propertyName+"'" );
207 factoryClassName = cacheProps.getProperty(propertyName);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DatasetDOMStringMap.cpp 74 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName)
79 unsigned propertyLength = propertyName.length();
89 if ((wordBoundary ? toASCIIUpper(attributeName[a]) : attributeName[a]) != propertyName[p])

Completed in 299 milliseconds

12 3 4 5 6 7 8 91011>>