HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 101 - 125 of 756) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/tests/VectorDrawableTest/res/anim/
ic_signal_airplane_v2_animation_ic_signal_airplane.xml 20 android:propertyName="alpha"
26 android:propertyName="alpha"
ic_signal_airplane_v2_animation_path_1_1.xml 20 android:propertyName="pathData"
27 android:propertyName="pathData"
trim_path_animation01.xml 23 android:propertyName="trimPathEnd"
29 android:propertyName="trimPathEnd"
trim_path_animation05.xml 23 android:propertyName="pathData"
30 android:propertyName="pathData"
  /packages/apps/TvSettings/Settings/res/anim/
fragment_slide_left_in.xml 18 android:propertyName="x"
24 android:propertyName="alpha"
fragment_slide_left_out.xml 18 android:propertyName="x"
24 android:propertyName="alpha"
fragment_slide_right_in.xml 18 android:propertyName="x"
24 android:propertyName="alpha"
fragment_slide_right_out.xml 18 android:propertyName="x"
24 android:propertyName="alpha"
  /packages/inputmethods/LatinIME/java/res/anim/
key_preview_dismiss_holo.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_dismiss_lxx.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_show_up_holo.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
key_preview_show_up_lxx.xml 23 android:propertyName="scaleX"
28 android:propertyName="scaleY"
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 133 * @param propertyName The name of the property for this holder.
135 private PropertyValuesHolder(String propertyName) {
136 mPropertyName = propertyName;
153 * @param propertyName The name of the property being animated.
157 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
158 return new IntPropertyValuesHolder(propertyName, values);
179 * @param propertyName The name of the property being animated. Can also be the
186 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) {
203 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
211 * @param propertyName The name of the property being animated. Can also be th
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 270 bool getOptionalCryptoOperationData(const Dictionary& raw, const char* propertyName, bool& hasProperty, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error)
272 if (!DictionaryHelper::get(raw, propertyName, buffer)) {
280 setSyntaxError(context.toString(propertyName, "Not an ArrayBufferView"), error);
292 bool getCryptoOperationData(const Dictionary& raw, const char* propertyName, RefPtr<ArrayBufferView>& buffer, const ErrorContext& context, AlgorithmError* error)
295 bool ok = getOptionalCryptoOperationData(raw, propertyName, hasProperty, buffer, context, error);
297 setSyntaxError(context.toString(propertyName, "Missing required property"), error);
303 bool getUint8Array(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, const ErrorContext& context, AlgorithmError* error)
305 if (!DictionaryHelper::get(raw, propertyName, array) || !array) {
306 setSyntaxError(context.toString(propertyName, "Missing or not a Uint8Array"), error);
315 bool getBigInteger(const Dictionary& raw, const char* propertyName, RefPtr<Uint8Array>& array, const ErrorContext& context, AlgorithmError* error
    [all...]
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.js 91 * @param {string} propertyName the name of the property in the autocomplete
99 function PresentationInfoRecord(header, url, propertyName, displayAlways,
103 this.propertyName = propertyName;
209 * @param {string} propertyName the particular property of the autocomplete
212 * autocompleteSuggestion associated with propertyName.
215 propertyName) {
217 if (propertyName in autocompleteSuggestion) {
218 if (propertyName == 'additional_info') {
223 for (var i = 0; i < autocompleteSuggestion[propertyName].length; i++)
    [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)) {
  /external/chromium_org/extensions/renderer/resources/
platform_app.js 92 $Array.forEach(propertyNames, function(propertyName) {
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) {
135 var stub = generateDisabledMethodStub(objectName + '.' + propertyName,
137 $Object.defineProperty(object, propertyName, {
  /development/samples/training/AnimationsDemo/res/animator/
card_flip_left_in.xml 42 android:propertyName="alpha"
49 android:propertyName="rotationY"
57 android:propertyName="alpha"
card_flip_right_in.xml 42 android:propertyName="alpha"
49 android:propertyName="rotationY"
57 android:propertyName="alpha"
  /external/chromium_org/content/shell/tools/plugin/Tests/
PluginScriptableObjectOverridesAllProperties.cpp 55 bool hasProperty(NPIdentifier propertyName)
60 bool getProperty(NPIdentifier propertyName, NPVariant* result)
63 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
SlowNPPNew.cpp 54 bool hasProperty(NPIdentifier propertyName)
59 bool getProperty(NPIdentifier propertyName, NPVariant* result)
62 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
  /cts/tests/tests/graphics/res/anim/
animation_grouping_1_01.xml 22 android:propertyName="rotation"
  /development/samples/ApiDemos/res/anim/
color_animator.xml 21 android:propertyName="color"
object_animator.xml 21 android:propertyName="y"
  /development/samples/devbytes/animation/PropertyAnimations/res/animator/
fade.xml 17 android:propertyName="alpha"

Completed in 1245 milliseconds

1 2 3 45 6 7 8 91011>>