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

1 23 4 5 6

  /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);
  /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...]
  /dalvik/libcore/nio_char/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) {
  /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,
entities.h 49 xmlChar *orig; /* content without ref substitution */ member in struct:_xmlEntity
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 233 TransitionState(TransitionState orig, TransitionDrawable owner,
235 super(orig, owner, res);
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 175 * @param orig {@code non-null;} array to duplicate
178 private static RegisterSpec[] dupArray(RegisterSpec[] orig) {
179 RegisterSpec[] copy = new RegisterSpec[orig.length];
181 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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
KeyboardSwitcher.java 208 Resources orig = mContext.getResources(); local
209 Configuration conf = orig.getConfiguration();
212 orig.updateConfiguration(conf, null);
232 orig.updateConfiguration(conf, null);
  /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(&copy, 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/icu4c/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/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;
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
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;
  /packages/apps/Mms/src/com/android/mms/data/
Contact.java 466 private boolean contactChanged(Contact orig, Contact newContactData) {
470 String oldName = emptyIfNull(orig.mName);
477 String oldLabel = emptyIfNull(orig.mLabel);
484 if (orig.mPersonId != newContactData.mPersonId) {
489 if (orig.mPresenceResId != newContactData.mPresenceResId) {
494 if (!Arrays.equals(orig.mAvatarData, newContactData.mAvatarData)) {
  /external/skia/src/animator/
SkDrawGroup.cpp 276 bool SkGroup::resolveIDs(SkAnimateMaker& maker, SkDisplayable* orig, SkApply* apply) {
277 SkGroup* original = (SkGroup*) orig;
282 SkDrawable** origChild = ((SkGroup*) orig)->fChildren.begin();
  /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);
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageItemInfoTest.java 172 public MockPackageItemInfo(PackageItemInfo orig) {
173 super(orig);

Completed in 347 milliseconds

1 23 4 5 6