/external/replicaisland/src/com/replica/replicaisland/ |
SliderPreference.java | 97 protected Object onGetDefaultValue(TypedArray ta,int index) { 98 int dValue = (int)ta.getInt(index, INITIAL_VALUE);
|
/frameworks/base/services/java/com/android/server/ |
AttributeCache.java | 58 public Entry(Context c, TypedArray ta) { 60 array = ta;
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeContext.java | 477 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs); local 478 map.put(resid, ta); 480 return ta; 491 TypedArray ta = map.get(resid); local 493 if (ta == null) { 494 ta = createStyleBasedTypedArray(style, attrs); 495 map.put(resid, ta); 498 return ta; 542 BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length, local 701 ta.bridgeSetValue(index, attrName, frameworkAttr, resValue) 734 BridgeTypedArray ta = ((BridgeResources) mSystemResources).newTypeArray(attrs.length, local [all...] |
/cts/tests/tests/content/src/android/content/res/cts/ |
TypedArrayTest.java | 166 final TypedArray ta = getContext().getResources().obtainAttributes(set, local 168 assertEquals(1, ta.getIndexCount()); 169 assertEquals(EXPECTED_NON_RESOURCE_STRING, ta.getNonResourceString( 171 ta.recycle();
|
ResourcesTest.java | 109 final TypedArray ta = mResources.obtainTypedArray(R.array.string); local 110 assertEquals(3, ta.length()); 111 assertEquals("Test String 1", ta.getString(0)); 112 assertEquals("Test String 2", ta.getString(1)); 113 assertEquals("Test String 3", ta.getString(2)); 114 assertEquals(mResources, ta.getResources());
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
SplineMath.java | 61 double ta = a * y1; local 65 double y = ta + tb + (delta2 / 6) * (tc + td); 102 double ta = a * y1; local 106 double y = ta + tb + (delta2 / 6) * (tc + td);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieTransition.java | 68 final TransitionAlpha ta = (TransitionAlpha)transition; local 69 mAlphaMaskFilename = ta.getMaskFilename(); 71 mAlphaMaskBlendingPercent = ta.getBlendingPercent(); 72 mAlphaInvert = ta.isInvert();
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3commontreeadaptor.c | 179 pANTLR3_BASE_TREE_ADAPTOR ta; local 183 ta = ANTLR3_TREE_ADAPTORNew(strFactory); 185 if (ta != NULL) 189 antlr3BaseTreeAdaptorInit(ta, debugger); 190 ta->create = (void * (*) (pANTLR3_BASE_TREE_ADAPTOR, pANTLR3_COMMON_TOKEN)) 192 ta->setTokenBoundaries = (void (*) (pANTLR3_BASE_TREE_ADAPTOR, void *, pANTLR3_COMMON_TOKEN, pANTLR3_COMMON_TOKEN)) 196 return ta;
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_asm.c | 472 BN_ULONG ta=(a),tb=(b); \ 473 BN_UMULT_LOHI(t1,t2,ta,tb); \ 479 BN_ULONG ta=(a),tb=(b),t0; \ 480 BN_UMULT_LOHI(t0,t1,ta,tb); \ 488 BN_ULONG ta=(a)[i]; \ 489 BN_UMULT_LOHI(t1,t2,ta,ta); \ 500 BN_ULONG ta=(a),tb=(b); \ 501 t1 = ta * tb; \ 502 t2 = BN_UMULT_HIGH(ta,tb); [all...] |
bn_lcl.h | 360 BN_ULONG high,low,ret,ta=(a); \ 361 BN_UMULT_LOHI(low,high,w,ta); \ 388 BN_ULONG high,low,ret,ta=(a); \ 389 low = (w) * ta; \ 390 high= BN_UMULT_HIGH(w,ta); \
|
/external/openssl/crypto/bn/ |
bn_asm.c | 472 BN_ULONG ta=(a),tb=(b); \ 473 BN_UMULT_LOHI(t1,t2,ta,tb); \ 479 BN_ULONG ta=(a),tb=(b),t0; \ 480 BN_UMULT_LOHI(t0,t1,ta,tb); \ 488 BN_ULONG ta=(a)[i]; \ 489 BN_UMULT_LOHI(t1,t2,ta,ta); \ 500 BN_ULONG ta=(a),tb=(b); \ 501 t1 = ta * tb; \ 502 t2 = BN_UMULT_HIGH(ta,tb); [all...] |
bn_lcl.h | 360 BN_ULONG high,low,ret,ta=(a); \ 361 BN_UMULT_LOHI(low,high,w,ta); \ 388 BN_ULONG high,low,ret,ta=(a); \ 389 low = (w) * ta; \ 390 high= BN_UMULT_HIGH(w,ta); \
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r3xx_vertprog.c | 559 struct temporary_allocation * ta; local 585 ta = (struct temporary_allocation*)memory_pool_malloc(&compiler->Base.Pool, 587 memset(ta, 0, sizeof(struct temporary_allocation) * num_orig_temps); 619 ta[inst->U.I.SrcReg[i].Index].LastRead = end_loop ? end_loop : inst; 631 inst->U.I.SrcReg[i].Index = ta[orig].HwTemp; 633 if (ta[orig].Allocated && inst == ta[orig].LastRead) 634 hwtemps[ta[orig].HwTemp] = 0; 642 if (!ta[orig].Allocated) { 647 ta[orig].Allocated = 1 [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r3xx_vertprog.c | 559 struct temporary_allocation * ta; local 585 ta = (struct temporary_allocation*)memory_pool_malloc(&compiler->Base.Pool, 587 memset(ta, 0, sizeof(struct temporary_allocation) * num_orig_temps); 619 ta[inst->U.I.SrcReg[i].Index].LastRead = end_loop ? end_loop : inst; 631 inst->U.I.SrcReg[i].Index = ta[orig].HwTemp; 633 if (ta[orig].Allocated && inst == ta[orig].LastRead) 634 hwtemps[ta[orig].HwTemp] = 0; 642 if (!ta[orig].Allocated) { 647 ta[orig].Allocated = 1 [all...] |
/bionic/libthread_db/ |
libthread_db.c | 57 td_ta_delete(td_thragent_t * ta) 59 free(ta);
|
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg.h | 135 char td, ta; // DC & AC huffman tables member in struct:GrFmtJpegReader::cmp_info
|
/cts/tests/tests/app/src/android/app/cts/ |
DialogTest.java | 97 TypedArray ta = local 99 assertTextAppearanceStyle(ta); 102 ta = w.getContext().getTheme().obtainStyledAttributes(R.styleable.TextAppearance); 103 assertTextAppearanceStyle(ta); 120 private void assertTextAppearanceStyle(TypedArray ta) { 127 assertEquals(expectedTa.getIndexCount(), ta.getIndexCount()); 129 ta.getColor(R.styleable.TextAppearance_textColor, defValue)); 131 ta.getColor(R.styleable.TextAppearance_textColorHint, defValue)); 133 ta.getColor(R.styleable.TextAppearance_textColorLink, defValue)); 135 ta.getColor(R.styleable.TextAppearance_textColorHighlight, defValue)) [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
TestUtils.java | 121 TrustAnchor ta = getTrustAnchor(); local 122 if (ta == null) { 126 if (!set.add(ta)) {
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_swtnl_t.c | 172 struct tnl_clipspace_attr *ta = &vtx->attr[i]; local 173 struct nouveau_array *a = &render->attrs[ta->attrib]; 176 a->offset = swtnl->offset + ta->vertoffset;
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_swtnl_t.c | 172 struct tnl_clipspace_attr *ta = &vtx->attr[i]; local 173 struct nouveau_array *a = &render->attrs[ta->attrib]; 176 a->offset = swtnl->offset + ta->vertoffset;
|
/bionic/libthread_db/include/ |
thread_db.h | 129 extern td_err_e td_ta_delete(td_thragent_t * ta);
|
/development/ndk/platforms/android-9/include/ |
thread_db.h | 131 extern td_err_e td_ta_delete(td_thragent_t * ta);
|
/external/chromium_org/v8/test/cctest/ |
test-weaktypedarrays.cc | 77 JSArrayBufferView* ta) { 81 if (ta == o) return true; 303 i::OS::SNPrintF(source, "ta%d = null;", i); 317 i::OS::SNPrintF(source, "ta%d", j); 318 v8::Handle<TypedArray> ta = local 320 CHECK(HasViewInWeakList(*iab, *v8::Utils::OpenHandle(*ta)));
|
/external/clang/utils/ |
FuzzTest | 336 ta = TestApplication(tg, t) 338 ta.apply() 339 test_result = run_one_test(ta, test, input_files, args) 345 ta.revert()
|
/external/jpeg/ |
jcmarker.c | 311 int i, td, ta; local 324 ta = compptr->ac_tbl_no; 332 ta = 0; /* DC scan */ 339 emit_byte(cinfo, (td << 4) + ta);
|