HomeSort by relevance Sort by last modified time
    Searched defs:orig (Results 26 - 50 of 193) sorted by null

12 3 4 5 6 7 8

  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/netfilter_bridge/
ebt_802_3.h 36 __u8 orig[3]; member in struct:hdr_ui
45 __u8 orig[3]; member in struct:hdr_ni
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 349 public AnimatedRotateState(AnimatedRotateState orig, AnimatedRotateDrawable owner,
351 if (orig != null) {
353 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
355 mDrawable = orig.mDrawable.getConstantState().newDrawable();
358 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
359 mDrawable.setBounds(orig.mDrawable.getBounds());
360 mDrawable.setLevel(orig.mDrawable.getLevel());
361 mPivotXRel = orig.mPivotXRel;
362 mPivotX = orig.mPivotX;
363 mPivotYRel = orig.mPivotYRel
    [all...]
ClipDrawable.java 280 ClipState(ClipState orig, ClipDrawable owner, Resources res) {
281 if (orig != null) {
283 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
285 mDrawable = orig.mDrawable.getConstantState().newDrawable();
288 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
289 mDrawable.setBounds(orig.mDrawable.getBounds());
290 mDrawable.setLevel(orig.mDrawable.getLevel());
291 mOrientation = orig.mOrientation;
292 mGravity = orig.mGravity;
InsetDrawable.java 394 InsetState(InsetState orig, InsetDrawable owner, Resources res) {
395 if (orig != null) {
396 mThemeAttrs = orig.mThemeAttrs;
397 mChangingConfigurations = orig.mChangingConfigurations;
399 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
401 mDrawable = orig.mDrawable.getConstantState().newDrawable();
404 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
405 mDrawable.setBounds(orig.mDrawable.getBounds());
406 mDrawable.setLevel(orig.mDrawable.getLevel());
407 mInsetLeft = orig.mInsetLeft
    [all...]
RotateDrawable.java 510 public RotateState(RotateState orig, RotateDrawable owner, Resources res) {
511 if (orig != null) {
513 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
515 mDrawable = orig.mDrawable.getConstantState().newDrawable();
518 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
519 mDrawable.setBounds(orig.mDrawable.getBounds());
520 mDrawable.setLevel(orig.mDrawable.getLevel());
521 mPivotXRel = orig.mPivotXRel;
522 mPivotX = orig.mPivotX;
523 mPivotYRel = orig.mPivotYRel
    [all...]
ScaleDrawable.java 290 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) {
291 if (orig != null) {
293 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
295 mDrawable = orig.mDrawable.getConstantState().newDrawable();
298 mDrawable.setLayoutDirection(orig.mDrawable.getLayoutDirection());
299 mDrawable.setBounds(orig.mDrawable.getBounds());
300 mDrawable.setLevel(orig.mDrawable.getLevel());
301 mScaleWidth = orig.mScaleWidth;
302 mScaleHeight = orig.mScaleHeight;
303 mGravity = orig.mGravity
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 285 TypeBearer orig = stack[idx]; local
287 if ((orig == null) ||
288 (orig.getType().getCategory() != type.getType().getCategory())) {
290 stackElementString(orig) + " -> " +
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PKIXCertPath.java 101 List orig = new ArrayList(certs); local
130 return orig;
152 return orig;
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 154 gfx::Rect orig = r1; local
165 EXPECT_TRUE(r1.Contains(orig));
  /external/chromium_org/third_party/libxml/src/include/libxml/
entities.h 49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_clone.cpp 363 ir_constant *const orig = (ir_constant *) node; local
365 c->components.push_tail(orig->clone(mem_ctx, NULL));
  /external/e2fsprogs/lib/ext2fs/
irel.h 19 ext2_ino_t orig; member in struct:ext2_inode_relocate_entry
46 errcode_t (*get_by_orig)(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
105 #define ext2fs_irel_get_by_orig(irel, orig, old, ent) \
106 ((irel)->get_by_orig((irel), orig, old, ent))
  /external/libxml2/include/libxml/
entities.h 49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
  /external/mesa3d/src/glsl/
ir_clone.cpp 363 ir_constant *const orig = (ir_constant *) node; local
365 c->components.push_tail(orig->clone(mem_ctx, NULL));
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 484 Cursor orig = cr.query( local
494 if (orig != null) {
495 if (orig.moveToFirst()) {
498 text = orig.getString(colNoteIndex);
499 title = orig.getString(colTitleIndex);
503 orig.close();
  /bionic/tests/
fortify_test.cpp 402 char *orig = strdup("0123456789"); local
403 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
404 free(orig);
415 char *orig = strdup(""); local
416 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
417 free(orig);
428 char *orig = strdup("1"); local
429 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
430 free(orig);
441 char *orig = strdup("12") local
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
InstrumentationTest.java 174 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, local
176 mInstrumentation.sendTrackballEventSync(orig);
180 assertEquals(orig.getMetaState(), motionEvent.getMetaState());
181 assertEquals(orig.getEventTime(), motionEvent.getEventTime());
182 assertEquals(orig.getDownTime(), motionEvent.getDownTime());
320 MotionEvent orig = MotionEvent.obtain(now, now, MotionEvent.ACTION_DOWN, local
322 mInstrumentation.sendPointerSync(orig);
  /external/bluetooth/bluedroid/stack/sdp/
sdp_discovery.c 323 UINT16 total, cur_handles, orig; local
331 orig = p_ccb->num_handles;
346 for (xx = orig; xx < p_ccb->num_handles; xx++)
    [all...]
  /external/chromium_org/third_party/skia/gm/
strokes.cpp 231 SkPath orig; local
233 procs[i](&orig, bounds, &str);
238 canvas->drawPath(orig, strokePaint);
239 canvas->drawPath(orig, origPaint);
241 strokePaint.getFillPath(orig, &fill);
  /external/chromium_org/third_party/skia/samplecode/
SampleColorFilter.cpp 28 int orig = x & 7; local
32 int diff = fake - orig;
  /external/chromium_org/third_party/skia/src/xml/
SkXMLWriter.cpp 118 char orig[2]; local
119 const char* seq = escape_char(*src, orig);
  /external/e2fsprogs/tests/progs/
test_rel.c 111 ent->new, ent->orig, ent->max_refs);
446 ext2_ino_t orig, old; local
456 if (parse_inode(argv[0], "original inode", argv[1], &orig))
459 retval = ext2fs_irel_get_by_orig(irel, orig, &old, &ent);
  /external/ltrace/
value.c 493 struct arg_type_info *orig; local
494 value_take_type(value, &orig, &own);
495 type_init_pointer(new_info, orig, own);
496 new_info->lens = orig->lens;
  /external/skia/gm/
strokes.cpp 231 SkPath orig; local
233 procs[i](&orig, bounds, &str);
238 canvas->drawPath(orig, strokePaint);
239 canvas->drawPath(orig, origPaint);
241 strokePaint.getFillPath(orig, &fill);
  /external/skia/samplecode/
SampleColorFilter.cpp 28 int orig = x & 7; local
32 int diff = fake - orig;

Completed in 858 milliseconds

12 3 4 5 6 7 8