HomeSort by relevance Sort by last modified time
    Searched refs:typedArray (Results 1 - 22 of 22) sorted by null

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TypedArrayTest.java 18 private android.content.res.TypedArray typedArray;
22 typedArray = Robolectric.newInstanceOf(android.content.res.TypedArray.class);
32 assertThat(typedArray.getBoolean(0, true), equalTo(true));
33 assertThat(typedArray.getBoolean(0, false), equalTo(false));
38 assertThat(typedArray.getInt(0, 15), equalTo(15));
39 assertThat(typedArray.getInteger(0, 24), equalTo(24));
44 assertThat(typedArray.getFloat(0, 0.5f), equalTo(0.5f));
49 assertThat(typedArray.getDimension(0, 0.5f), equalTo(0.5f))
    [all...]
  /frameworks/support/v4/jellybean/android/support/v4/app/
BundleUtil.java 22 Bundle[] typedArray = Arrays.copyOf(array, array.length,
24 bundle.putParcelableArray(key, typedArray);
25 return typedArray;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
DrawerArrowDrawable.java 20 import android.content.res.TypedArray;
69 final TypedArray typedArray = context.getTheme()
74 mPaint.setColor(typedArray.getColor(R.styleable.DrawerArrowToggle_color, 0));
75 mSize = typedArray.getDimensionPixelSize(R.styleable.DrawerArrowToggle_drawableSize, 0);
77 mBarSize = Math.round(typedArray.getDimension(R.styleable.DrawerArrowToggle_barSize, 0));
79 mTopBottomArrowSize = Math.round(typedArray.getDimension(
81 mBarThickness = typedArray.getDimension(R.styleable.DrawerArrowToggle_thickness, 0);
83 mBarGap = Math.round(typedArray.getDimension(
85 mSpin = typedArray.getBoolean(R.styleable.DrawerArrowToggle_spinBars, true)
    [all...]
  /frameworks/base/core/java/android/text/style/
SuggestionSpan.java 21 import android.content.res.TypedArray;
170 TypedArray typedArray = context.obtainStyledAttributes(
172 mMisspelledUnderlineThickness = typedArray.getDimension(
174 mMisspelledUnderlineColor = typedArray.getColor(
178 typedArray = context.obtainStyledAttributes(
180 mEasyCorrectUnderlineThickness = typedArray.getDimension(
182 mEasyCorrectUnderlineColor = typedArray.getColor(
186 typedArray = context.obtainStyledAttributes(
188 mAutoCorrectionUnderlineThickness = typedArray.getDimension
    [all...]
  /external/mockito/src/org/mockito/internal/util/collections/
HashCodeAndEqualsSafeSet.java 109 public <T> T[] toArray(T[] typedArray) {
110 T[] array = typedArray.length >= size() ? typedArray :
111 (T[]) newInstance(typedArray.getClass().getComponentType(), size());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
LocalizedNameResolver.java 26 import android.content.res.TypedArray;
105 final TypedArray typedArray = context.obtainStyledAttributes(attrs,
109 final String nonResourceString = typedArray.getNonResourceString(
117 int id = typedArray.getResourceId(
135 typedArray.recycle();
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 20 import android.content.res.TypedArray;
39 TypedArray typedArray = context.obtainStyledAttributes(attrs,
41 mColumnCount = typedArray.getInteger(R.styleable.PrintOptionsLayout_columnCount, 0);
42 typedArray.recycle();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8TypedArrayCustom.h 47 template<typename TypedArray>
52 return TypedArrayTraits<TypedArray>::IsInstance(value);
55 static TypedArray* toImpl(v8::Handle<v8::Object>);
56 static TypedArray* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
63 static v8::Handle<v8::Object> wrap(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
67 return V8TypedArray<TypedArray>::createWrapper(impl, creationContext, isolate);
70 static v8::Handle<v8::Value> toV8(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
81 static void v8SetReturnValue(const CallbackInfo& info, TypedArray* impl)
94 static void v8SetReturnValueForMainWorld(const CallbackInfo& info, TypedArray* impl)
108 static void v8SetReturnValueFast(const CallbackInfo& info, TypedArray* impl, Wrappable* wrappable
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkAnimatorScript2.cpp 430 SkDisplayArray* typedArray = (SkDisplayArray*) displayable;
431 original = typedArray->values.getType();
539 "<typedArray id='emptyArray' />"
540 "<typedArray id='intArray' values='[1, 4, 6]' />"
SkAnimatorScript.cpp 253 SkDisplayArray* typedArray = (SkDisplayArray*) displayable;
254 original = typedArray->values.getType();
  /external/skia/src/animator/
SkAnimatorScript2.cpp 430 SkDisplayArray* typedArray = (SkDisplayArray*) displayable;
431 original = typedArray->values.getType();
539 "<typedArray id='emptyArray' />"
540 "<typedArray id='intArray' values='[1, 4, 6]' />"
SkAnimatorScript.cpp 253 SkDisplayArray* typedArray = (SkDisplayArray*) displayable;
254 original = typedArray->values.getType();
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java     [all...]
  /frameworks/base/core/java/android/app/
Fragment.java 26 import android.content.res.TypedArray;
    [all...]
Notification.java     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/1.9.5/
mockito-core-1.9.5.jar 

Completed in 1495 milliseconds