HomeSort by relevance Sort by last modified time
    Searched refs:TypedArray (Results 1 - 25 of 673) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyle.java 19 import android.content.res.TypedArray;
27 public abstract @Nullable String[] getStringArray(TypedArray a, int index);
28 public abstract @Nullable String getString(TypedArray a, int index);
29 public abstract int getInt(TypedArray a, int index, int defaultValue);
30 public abstract int getFlags(TypedArray a, int index);
37 protected String parseString(final TypedArray a, final int index) {
45 protected String[] parseStringArray(final TypedArray a, final int index) {
KeyStylesSet.java 19 import android.content.res.TypedArray;
62 public String[] getStringArray(final TypedArray a, final int index) {
68 public String getString(final TypedArray a, final int index) {
73 public int getInt(final TypedArray a, final int index, final int defaultValue) {
78 public int getFlags(final TypedArray a, final int index) {
98 public String[] getStringArray(final TypedArray a, final int index) {
113 public String getString(final TypedArray a, final int index) {
126 public int getInt(final TypedArray a, final int index, final int defaultValue) {
139 public int getFlags(final TypedArray a, final int index) {
147 public void readKeyAttributes(final TypedArray keyAttr)
    [all...]
GestureStrokeDrawingParams.java 19 import android.content.res.TypedArray;
42 public GestureStrokeDrawingParams(final TypedArray mainKeyboardViewAttr) {
KeyboardRow.java 20 import android.content.res.TypedArray;
64 public RowAttributes(final TypedArray keyAttr, final float defaultKeyWidth,
81 public RowAttributes(final TypedArray keyAttr, final RowAttributes defaultRowAttr,
99 final TypedArray keyboardAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
104 final TypedArray keyAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
118 public void pushRowAttributes(final TypedArray keyAttr) {
152 public float getKeyX(final TypedArray keyAttr) {
170 public float getKeyWidth(final TypedArray keyAttr, final float keyXPos) {
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
TypedArray_Delegate.java 26 public static boolean getValueAt(TypedArray theTypedArray, int index, TypedValue outValue) {
32 /*package*/ static TypedArray obtain(Resources res, int len) {
  /frameworks/support/design/src/android/support/design/widget/
ThemeUtils.java 20 import android.content.res.TypedArray;
30 TypedArray a = context.obtainStyledAttributes(APPCOMPAT_CHECK_ATTRS);
  /frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
TypedArrayUtils.java 17 import android.content.res.TypedArray;
27 public static float getNamedFloat(TypedArray a, XmlPullParser parser, String attrName,
37 public static boolean getNamedBoolean(TypedArray a, XmlPullParser parser, String attrName,
47 public static int getNamedInt(TypedArray a, XmlPullParser parser, String attrName,
57 public static int getNamedColor(TypedArray a, XmlPullParser parser, String attrName,
  /external/v8/test/mjsunit/es6/
built-in-accessor-names.js 24 let TypedArray = Uint8Array.__proto__;
26 assertGetterName('get buffer', TypedArray.prototype, 'buffer');
27 assertGetterName('get byteOffset', TypedArray.prototype, 'byteOffset');
28 assertGetterName('get byteLength', TypedArray.prototype, 'byteLength');
29 assertGetterName('get length', TypedArray.prototype, 'length');
30 assertGetterName('get [Symbol.toStringTag]', TypedArray.prototype, Symbol.toStringTag);
typedarray-proto.js 5 // Test that the methods for different TypedArray types have the same
21 let TypedArray = Uint8Array.__proto__;
22 let TypedArrayPrototype = TypedArray.prototype;
24 assertEquals(TypedArray.__proto__, Function.prototype);
53 // Abstract %TypedArray% class can't be constructed directly
55 assertThrows(() => new TypedArray(), TypeError);
58 // both for %TypedArray% and for all subclasses
60 let desc = Object.getOwnPropertyDescriptor(TypedArray, "prototype");
  /frameworks/support/core-utils/java/android/support/v4/content/res/
TypedArrayUtils.java 19 import android.content.res.TypedArray;
29 * Compat methods for accessing TypedArray values.
35 public static boolean getBoolean(TypedArray a, @StyleableRes int index,
41 public static Drawable getDrawable(TypedArray a, @StyleableRes int index,
50 public static int getInt(TypedArray a, @StyleableRes int index,
56 public static @AnyRes int getResourceId(TypedArray a, @StyleableRes int index,
62 public static String getString(TypedArray a, @StyleableRes int index,
71 public static CharSequence[] getTextArray(TypedArray a, @StyleableRes int index,
  /cts/tests/tests/preference2/src/android/preference2/cts/
CustomDialogPreference.java 21 import android.content.res.TypedArray;
44 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
ResourceHelper.java 23 import android.content.res.TypedArray;
45 TypedArray ta = theme.obtainStyledAttributes(new int[] {attribute});
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
ResourceHelper.java 23 import android.content.res.TypedArray;
45 TypedArray ta = theme.obtainStyledAttributes(new int[] {attribute});
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
ResourceHelper.java 23 import android.content.res.TypedArray;
45 TypedArray ta = theme.obtainStyledAttributes(new int[] {attribute});
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTypedArray.java 4 import android.content.res.TypedArray;
10 @Implements(TypedArray.class)
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
AbstractItemHierarchy.java 20 import android.content.res.TypedArray;
39 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SuwAbstractItem);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
ResourceHelper.java 23 import android.content.res.TypedArray;
45 TypedArray ta = theme.obtainStyledAttributes(new int[] {attribute});
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraPreference.java 21 import android.content.res.TypedArray;
44 TypedArray a = context.obtainStyledAttributes(
  /packages/apps/Messaging/src/com/android/messaging/ui/
MaxHeightScrollView.java 19 import android.content.res.TypedArray;
36 final TypedArray attr = context.obtainStyledAttributes(attrs,
  /packages/apps/Settings/src/com/android/settings/widget/
AspectRatioFrameLayout.java 18 import android.content.res.TypedArray;
44 TypedArray array =
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ColorPicker.java 20 import android.content.res.TypedArray;
40 private static TypedArray sColors;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
VerticalGridView.java 17 import android.content.res.TypedArray;
58 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.lbVerticalGridView);
64 void setColumnWidth(TypedArray array) {
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallUIMaterialColorMapUtils.java 4 import android.content.res.TypedArray;
12 private final TypedArray sPrimaryColors;
13 private final TypedArray sSecondaryColors;
  /external/v8/test/mjsunit/es7/
typed-array-includes.js 6 // https://github.com/tc39/Array.prototype.includes/tree/master/test/built-ins/TypedArray/prototype/includes
30 // %TypedArray%.prototype.includes throws a TypeError when used on non-typed
57 // %TypedArray%.prototype.includes should terminate if ToNumber ends up being
70 // %TypedArray%.prototype.includes should terminate if an exception occurs
91 // %TypedArray%.prototype.includes should search the whole array, as the
103 // %TypedArray%.prototype.includes returns false if fromIndex is greater or
114 // %TypedArray%.prototype.includes searches the whole array if the computed
125 // %TypedArray%.prototype.includes should use a negative value as the offset
137 // %TypedArray%.prototype.includes converts its fromIndex parameter to an
161 // %TypedArray%.prototype.includes should have length
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewGroup_LayoutParamsTest.java 24 import android.content.res.TypedArray;
54 TypedArray array = mContext.getTheme().obtainStyledAttributes(R.style.Whatever, attrs);
78 protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) {

Completed in 967 milliseconds

1 2 3 4 5 6 7 8 91011>>