/frameworks/base/graphics/java/android/graphics/drawable/ |
StateListDrawable.java | 256 StateListState(StateListState orig, StateListDrawable owner, Resources res) { 257 super(orig, owner, res); 259 if (orig != null) { 260 mStateSets = orig.mStateSets;
|
LayerDrawable.java | 567 LayerState(LayerState orig, LayerDrawable owner, Resources res) { 568 if (orig != null) { 569 final ChildDrawable[] origChildDrawable = orig.mChildren; 570 final int N = orig.mNum; 575 mChangingConfigurations = orig.mChangingConfigurations; 576 mChildrenChangingConfigurations = orig.mChildrenChangingConfigurations; 594 mHaveOpacity = orig.mHaveOpacity; 595 mOpacity = orig.mOpacity; 596 mHaveStateful = orig.mHaveStateful; 597 mStateful = orig.mStateful [all...] |
TransitionDrawable.java | 235 TransitionState(TransitionState orig, TransitionDrawable owner, 237 super(orig, owner, res);
|
/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...] |
/external/webkit/WebKit/chromium/src/js/ |
DevTools.js | 396 var orig = InjectedScriptAccess.prototype.getProperties; 404 orig.apply(this, arguments); 435 var orig = WebInspector.ConsoleMessage.prototype.setMessageBody; 442 orig.call(this, args); 449 var orig = InjectedScriptAccess.prototype.getCompletions; 455 return orig.apply(this, arguments);
|
/frameworks/base/tools/aidl/ |
aidl_language_l.l | 132 char* orig = g_nextExtraText->data; 137 memcpy(g_nextExtraText->data, orig, oldLen); 140 free(orig);
|
/libcore/luni/src/main/java/java/lang/reflect/ |
Field.java | 78 * @param orig non-null; the original instance to clone 80 /*package*/ Field(Field orig) { 81 this(orig.declaringClass, orig.type, orig.name, orig.slot); 84 if (orig.flag) { [all...] |
/build/tools/droiddoc/src/ |
Converter.java | 629 private static AnnotationInstanceInfo[] convertAnnotationInstances(AnnotationDesc[] orig) 631 int len = orig.length; 634 out[i] = Converter.obtainAnnotationInstance(orig[i]); 713 Object orig = o.value(); local 715 if (orig instanceof Type) { 717 converted = Converter.obtainType((Type)orig); 719 else if (orig instanceof FieldDoc) { 721 converted = Converter.obtainField((FieldDoc)orig); 723 else if (orig instanceof AnnotationDesc) { 725 converted = Converter.obtainAnnotationInstance((AnnotationDesc)orig); [all...] |
/external/e2fsprogs/util/ |
gen-tarball.in | 31 (cd $top_srcdir/.. ; find $base_e2fsprogs \( -name \*~ -o -name \*.orig \
|
/external/libxml2/include/libxml/ |
catalog.h | 80 const xmlChar *orig, 134 const xmlChar *orig,
|
/libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/ |
CharsetEncoderTest.java | 212 byte[] orig = new byte[] { (byte) 0xed, (byte) 0xa0, 214 String s = new String(orig, "UTF-8"); 219 // for (byte o : orig) {
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 196 * @param orig {@code non-null;} array to duplicate 199 private static RegisterSpec[] dupArray(RegisterSpec[] orig) { 200 RegisterSpec[] copy = new RegisterSpec[orig.length]; 202 System.arraycopy(orig, 0, copy, 0, orig.length);
|
/external/skia/include/core/ |
SkPaint.h | 445 The returned rect will either be orig or storage, thus the caller 447 use the retured value. It is legal for orig and storage to be the same 460 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const { 461 return this->getStyle() == kFill_Style ? orig : 462 this->computeStrokeFastBounds(orig, storage); [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PKIXCertPath.java | 96 List orig = new ArrayList(certs); local 125 return orig; 147 return orig;
|
/external/netcat/ |
stupidh | 431 static char orig[16]; 432 strcpy (orig, "ABCDEFGHIJK"); 433 yow.bletch = orig;
|
/external/skia/gm/ |
gmmain.cpp | 170 SkBitmap orig; local 171 bool success = SkImageDecoder::DecodeFile(path.c_str(), &orig, 175 compare(bitmap, orig, name);
|
/external/webkit/WebCore/platform/graphics/android/ |
ImageBufferAndroid.cpp | 77 const SkBitmap& orig = device->accessBitmap(false); local 80 orig.copyTo(©, orig.config());
|
/dalvik/dx/src/com/android/dx/dex/code/ |
LocalList.java | 829 * @param orig {@code null-ok;} the original spec 833 private static RegisterSpec filterSpec(RegisterSpec orig) { 834 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { 835 return orig.withType(Type.OBJECT); 838 return orig;
|
/external/kernel-headers/original/linux/mtd/ |
map.h | 322 static inline map_word map_word_load_partial(struct map_info *map, map_word orig, const unsigned char *buf, int start, int len) 327 char *dest = (char *)&orig; 337 orig.x[0] &= ~(0xff << bitpos); 338 orig.x[0] |= buf[i-start] << bitpos; 341 return orig;
|
/external/chromium/third_party/icu/source/tools/gencase/ |
store.c | 598 * The initial function call has prev2<0, prev<0, and c==orig 602 * The second-level function call has prev2<0, prev==orig, and c is 604 * The function checks if any of c's case mappings go back to orig 607 * orig->c 609 * orig<->c 611 * The third-level function call has prev2==orig, prev>=0, and c is 614 * The function checks if any of c's case mappings go back to orig 617 * orig->prev->c or orig->prev<->c 619 * orig->prev->c->orig or orig->prev<->c->ori [all...] |
/external/icu4c/tools/gencase/ |
store.c | 606 * The initial function call has prev2<0, prev<0, and c==orig 610 * The second-level function call has prev2<0, prev==orig, and c is 612 * The function checks if any of c's case mappings go back to orig 615 * orig->c 617 * orig<->c 619 * The third-level function call has prev2==orig, prev>=0, and c is 622 * The function checks if any of c's case mappings go back to orig 625 * orig->prev->c or orig->prev<->c 627 * orig->prev->c->orig or orig->prev<->c->ori [all...] |
/external/dbus/dbus/ |
dbus-string-util.c | 144 DBusString orig; local 152 if (!_dbus_string_init (&orig)) 161 if (!_dbus_string_append_len (&orig, data, len)) 162 _dbus_assert_not_reached ("couldn't append orig data"); 164 if (!_dbus_string_hex_encode (&orig, 0, &encoded, 0)) 172 if (!_dbus_string_equal (&orig, &decoded)) 177 _dbus_string_get_length (&orig), 186 _dbus_string_free (&orig);
|
/external/ipsec-tools/src/racoon/ |
remoteconf.c | 334 dupetypes(orig) 335 struct etypes *orig; 339 if (!orig) 346 new->type = orig->type; 349 if (orig->next) 350 new->next=dupetypes(orig->next);
|
/external/webkit/SunSpider/tests/sunspider-0.9/ |
3d-raytrace.js | 160 Triangle.prototype.intersect = function(orig, dir, near, far) { 164 var t = (this.nd - orig[this.axis] - this.nu * orig[u] - this.nv * orig[v]) / d; 167 var Pu = orig[u] + t * dir[u] - this.eu; 168 var Pv = orig[v] + t * dir[v] - this.ev;
|