HomeSort by relevance Sort by last modified time
    Searched refs:typedArray (Results 1 - 12 of 12) 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/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 28 import android.content.res.TypedArray;
120 final TypedArray typedArray = context.obtainStyledAttributes(attrs,
124 final String nonResourceString = typedArray.getNonResourceString(
132 int id = typedArray.getResourceId(
150 typedArray.recycle();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingPreviewText.java 19 import android.content.res.TypedArray;
60 public GesturePreviewTextParams(final TypedArray mainKeyboardViewAttr) {
103 public GestureFloatingPreviewText(final View drawingView, final TypedArray typedArray) {
105 mParams = new GesturePreviewTextParams(typedArray);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8TypedArrayCustom.h 47 template<typename TypedArray>
52 return TypedArrayTraits<TypedArray>::IsInstance(value);
57 return TypedArrayTraits<TypedArray>::IsInstance(value);
60 static TypedArray* toNative(v8::Handle<v8::Object>);
65 static v8::Handle<v8::Object> wrap(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
69 return V8TypedArray<TypedArray>::createWrapper(impl, creationContext, isolate);
72 static v8::Handle<v8::Value> toV8(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
83 static void v8SetReturnValue(const CallbackInfo& info, TypedArray* impl)
96 static void v8SetReturnValueForMainWorld(const CallbackInfo& info, TypedArray* impl)
110 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();
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 

Completed in 2472 milliseconds