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

12 3 4 5 6

  /external/bluetooth/glib/tests/gobject/
gvalue-test.c 40 GValue orig = { 0, }; local
46 g_value_init (&orig, type);
47 g_value_set_enum (&orig, 1);
51 g_value_transform (&orig, &xform);
56 g_value_transform (&orig, &xform);
61 g_value_transform (&orig, &xform);
66 g_value_transform (&orig, &xform);
71 g_value_transform (&orig, &xform);
76 g_value_transform (&orig, &xform);
81 g_value_transform (&orig, &xform);
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
Method.java 87 * @param orig non-null; the original instance to clone
89 /*package*/ Method(Method orig) {
90 this(orig.declaringClass, orig.parameterTypes, orig.exceptionTypes,
91 orig.returnType, orig.name, orig.slot);
94 if (orig.flag) {
Field.java 82 * @param orig non-null; the original instance to clone
84 /*package*/ Field(Field orig) {
85 this(orig.declaringClass, orig.type, orig.name, orig.slot);
88 if (orig.flag) {
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
15.11.7.6-002.js 59 var orig = F.prototype;
61 return F.prototype === orig;
15.11.7.6-003.js 59 var orig = F.prototype;
61 return F.prototype === orig;
  /frameworks/base/awt/java/awt/image/
FilteredImageSource.java 53 * @param orig
58 public FilteredImageSource(ImageProducer orig, ImageFilter imgf) {
59 source = orig;
  /frameworks/base/graphics/java/android/graphics/drawable/
InsetDrawable.java 266 InsetState(InsetState orig, InsetDrawable owner, Resources res) {
267 if (orig != null) {
269 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
271 mDrawable = orig.mDrawable.getConstantState().newDrawable();
274 mInsetLeft = orig.mInsetLeft;
275 mInsetTop = orig.mInsetTop;
276 mInsetRight = orig.mInsetRight;
277 mInsetBottom = orig.mInsetBottom;
LevelListDrawable.java 157 LevelListState(LevelListState orig, LevelListDrawable owner, Resources res) {
158 super(orig, owner, res);
160 if (orig != null) {
161 mLows = orig.mLows;
162 mHighs = orig.mHighs;
ScaleDrawable.java 263 ScaleState(ScaleState orig, ScaleDrawable owner, Resources res) {
264 if (orig != null) {
266 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
268 mDrawable = orig.mDrawable.getConstantState().newDrawable();
271 mScaleWidth = orig.mScaleWidth;
272 mScaleHeight = orig.mScaleHeight;
273 mGravity = orig.mGravity;
ShapeDrawable.java 379 ShapeState(ShapeState orig) {
380 if (orig != null) {
381 mPaint = orig.mPaint;
382 mShape = orig.mShape;
383 mPadding = orig.mPadding;
384 mIntrinsicWidth = orig.mIntrinsicWidth;
385 mIntrinsicHeight = orig.mIntrinsicHeight;
386 mAlpha = orig.mAlpha;
387 mShaderFactory = orig.mShaderFactory;
ClipDrawable.java 244 ClipState(ClipState orig, ClipDrawable owner, Resources res) {
245 if (orig != null) {
247 mDrawable = orig.mDrawable.getConstantState().newDrawable(res);
249 mDrawable = orig.mDrawable.getConstantState().newDrawable();
252 mOrientation = orig.mOrientation;
253 mGravity = orig.mGravity;
AnimationDrawable.java 300 AnimationState(AnimationState orig, AnimationDrawable owner,
302 super(orig, owner, res);
304 if (orig != null) {
305 mDurations = orig.mDurations;
306 mOneShot = orig.mOneShot;
StateListDrawable.java 254 StateListState(StateListState orig, StateListDrawable owner, Resources res) {
255 super(orig, owner, res);
257 if (orig != null) {
258 mStateSets = orig.mStateSets;
LayerDrawable.java 566 LayerState(LayerState orig, LayerDrawable owner, Resources res) {
567 if (orig != null) {
568 final ChildDrawable[] origChildDrawable = orig.mChildren;
569 final int N = orig.mNum;
574 mChangingConfigurations = orig.mChangingConfigurations;
575 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations;
593 mHaveOpacity = orig.mHaveOpacity;
594 mOpacity = orig.mOpacity;
595 mHaveStateful = orig.mHaveStateful;
596 mStateful = orig.mStateful
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form35c.java 164 * @param orig {@code non-null;} the original list
167 private static RegisterSpecList explicitize(RegisterSpecList orig) {
168 int wordCount = wordCount(orig);
169 int sz = orig.size();
172 return orig;
179 RegisterSpec one = orig.get(i);
  /external/e2fsprogs/lib/ext2fs/
bmove.c 42 blk_t block, orig; local
45 block = orig = *block_nr;
55 if (block == orig) {
62 retval = io_channel_read_blk(fs->io, orig, 1, pb->buf);
77 blockcnt, orig, block);
irel_ma.c 30 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
152 * Force the orig field to the correct value; the application
156 ent->orig = old;
158 ent->orig = ma->entries[(unsigned) old].orig;
175 ma->orig_map[(unsigned) ent->orig] = old;
193 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
200 if (orig > ma->max_inode)
202 ino = ma->orig_map[(unsigned) orig];
324 ma->orig_map[ma->entries[new].orig] = new
    [all...]
  /external/stlport/test/eh/
test_insert.h 186 // not found in input range, probably re-ordered from the orig
330 test_insert_one( const C& orig, int pos =-1 )
331 : original( orig ), fPos( random_number( orig.size() ))
367 test_insert_n( const C& orig, size_t insCnt, int pos =-1 )
368 : original( orig ), fPos( random_number( orig.size() )), fInsCnt(insCnt)
405 test_insert_value( const C& orig )
406 : original( orig )
429 test_insert_noresize( const C& orig )
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 247 TypeBearer orig = stack[idx]; local
249 if ((orig == null) ||
250 (orig.getType().getCategory() != type.getType().getCategory())) {
252 stackElementString(orig) + " -> " +
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/
shell.js 361 this.orig = {};
362 this.orig.strict = this.strict = false;
363 this.orig.werror = this.werror = false;
409 this.orig.strict = this.strict =
418 this.orig.werror = this.werror =
475 this.setOption('strict', this.orig.strict);
476 this.setOption('werror', this.orig.werror);
  /external/openssl/
import_openssl.sh 96 rm -rf openssl-$OPENSSL_VERSION.orig/
104 mv openssl-$OPENSSL_VERSION openssl-$OPENSSL_VERSION.orig
105 find openssl-$OPENSSL_VERSION.orig -type f -print0 | xargs -0 chmod a-w
116 find . -type f -name "*.orig" -print0 | xargs -0 rm -f
178 rm -rf openssl-$OPENSSL_VERSION.orig/
191 diff -uap openssl-$OPENSSL_VERSION.orig/$i openssl-$OPENSSL_VERSION/$i >> $patch && die "ERROR: No diff for patch $path in file $i"
  /external/skia/xcode/Simple/
SimpleApp.cpp 60 void SimpleWindow::afterChildren(SkCanvas* orig) {
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 520 TypeBearer orig = type; local
523 if (orig instanceof Type) {
524 newType = (Type) orig;
526 newType = orig.getType();
533 if (newType == orig) {
  /external/libxml2/
entities.c 122 if ((entity->orig != NULL) && (!xmlDictOwns(dict, entity->orig)))
123 xmlFree((char *) entity->orig);
135 if (entity->orig != NULL)
136 xmlFree((char *) entity->orig);
191 ret->orig = NULL;
847 if (ent->orig != NULL)
848 cur->orig = xmlStrdup(ent->orig);
926 if (ent->orig != NULL
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
ClassCache.java 355 * @param orig non-null; array to copy
358 public static Method[] deepCopy(Method[] orig) {
359 int length = orig.length;
363 result[i] = REFLECT.clone(orig[i]);
522 * @param orig non-null; array to copy
525 public static Field[] deepCopy(Field[] orig) {
526 int length = orig.length;
530 result[i] = REFLECT.clone(orig[i]);

Completed in 247 milliseconds

12 3 4 5 6