HomeSort by relevance Sort by last modified time
    Searched refs:orig (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/core/java/android/content/pm/
ProviderInfo.java 88 public ProviderInfo(ProviderInfo orig) {
89 super(orig);
90 authority = orig.authority;
91 readPermission = orig.readPermission;
92 writePermission = orig.writePermission;
93 grantUriPermissions = orig.grantUriPermissions;
94 uriPermissionPatterns = orig.uriPermissionPatterns;
95 pathPermissions = orig.pathPermissions;
96 multiprocess = orig.multiprocess;
97 initOrder = orig.initOrder
    [all...]
InstrumentationInfo.java 72 public InstrumentationInfo(InstrumentationInfo orig) {
73 super(orig);
74 targetPackage = orig.targetPackage;
75 sourceDir = orig.sourceDir;
76 publicSourceDir = orig.publicSourceDir;
77 dataDir = orig.dataDir;
78 nativeLibraryDir = orig.nativeLibraryDir;
79 handleProfiling = orig.handleProfiling;
80 functionalTest = orig.functionalTest;
ConfigurationInfo.java 86 public ConfigurationInfo(ConfigurationInfo orig) {
87 reqTouchScreen = orig.reqTouchScreen;
88 reqKeyboardType = orig.reqKeyboardType;
89 reqNavigation = orig.reqNavigation;
90 reqInputFeatures = orig.reqInputFeatures;
91 reqGlEsVersion = orig.reqGlEsVersion;
PermissionGroupInfo.java 67 public PermissionGroupInfo(PermissionGroupInfo orig) {
68 super(orig);
69 descriptionRes = orig.descriptionRes;
70 nonLocalizedDescription = orig.nonLocalizedDescription;
71 flags = orig.flags;
72 priority = orig.priority;
ApplicationInfo.java 519 public ApplicationInfo(ApplicationInfo orig) {
520 super(orig);
521 taskAffinity = orig.taskAffinity;
522 permission = orig.permission;
523 processName = orig.processName;
524 className = orig.className;
525 theme = orig.theme;
526 flags = orig.flags;
527 requiresSmallestWidthDp = orig.requiresSmallestWidthDp;
528 compatibleWidthLimitDp = orig.compatibleWidthLimitDp
    [all...]
FeatureInfo.java 61 public FeatureInfo(FeatureInfo orig) {
62 name = orig.name;
63 reqGlEsVersion = orig.reqGlEsVersion;
64 flags = orig.flags;
ServiceInfo.java 62 public ServiceInfo(ServiceInfo orig) {
63 super(orig);
64 permission = orig.permission;
65 flags = orig.flags;
UserInfo.java 69 public UserInfo(UserInfo orig) {
70 name = orig.name;
71 id = orig.id;
72 flags = orig.flags;
  /frameworks/base/services/java/com/android/server/pm/
PackageSetting.java 41 PackageSetting(PackageSetting orig) {
42 super(orig);
44 appId = orig.appId;
45 pkg = orig.pkg;
46 sharedUser = orig.sharedUser;
  /external/valgrind/main/VEX/unused/
dispatch.c 14 char* find_translation ( char* orig )
18 if (transtab[i].orig == orig)
28 char* orig; member in struct:__anon13663
44 void add_translation ( char* orig, int orig_size, char* trans, int trans_size )
48 transtab[n_transtab_used].orig = orig;
  /build/tools/
merge-event-log-tags.py 91 orig = by_tagname[t.tagname] variable
94 if orig.tagnum is None:
95 orig.tagnum = t.tagnum
97 t.tagnum = orig.tagnum
99 if (t.tagnum == orig.tagnum and
100 t.description == orig.description):
105 (t.tagname, t.tagnum, orig.filename, orig.linenum),
110 (t.tagname, orig.tagnum, orig.filename, orig.linenum)
115 orig = by_tagnum[t.tagnum] variable
    [all...]
  /external/openssh/regress/
connect-privsep.sh 6 cp $OBJ/sshd_proxy $OBJ/sshd_proxy.orig
16 cp $OBJ/sshd_proxy.orig $OBJ/sshd_proxy
  /external/qemu-pc-bios/vgabios/
dataseghack 21 cp $1 $1.orig
23 /bin/rm -f temp.awk.1 temp.awk.2 temp.awk.3 $1.orig
  /external/valgrind/main/none/tests/x86/
bt_literal.c 12 UInt mash_reg_L ( UInt orig )
47 : "r" (orig)
97 UInt mash_reg_W ( UInt orig )
132 : "r" (orig)
  /hardware/ti/wpan/
.gitignore 43 *.orig
  /external/stlport/test/eh/
test_algo.cpp 88 : orig( buf ), partitionPoint(SortClass::kRange / 2) {
109 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
135 const SortBuffer& orig; member in struct:test_stable_partition
139 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf );
144 EFFECTS: Asserts that buf is a stable-sorted version of orig.
146 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf )
155 for ( const SortClass *q = orig.begin(); q != orig.end(); q++ )
182 : orig( buf )
193 const SortBuffer& orig; member in struct:test_stable_sort_1
210 const SortBuffer& orig; member in struct:test_stable_sort_2
227 const SortBuffer& orig; member in struct:test_inplace_merge_1
245 const SortBuffer& orig; member in struct:test_inplace_merge_2
    [all...]
test_push_back.h 32 test_push_back( const C& orig ) : original( orig )
test_push_front.h 29 test_push_front( const C& orig ) : original( orig ) {
  /external/valgrind/main/VEX/priv/
host_generic_regs.c 145 ppHReg(map->orig[i]);
160 void addToHRegRemap ( HRegRemap* map, HReg orig, HReg replacement )
164 if (map->orig[i] == orig)
166 if (!hregIsVirtual(orig))
167 vpanic("addToHRegMap: orig is not a vreg");
172 map->orig[map->n_used] = orig;
178 HReg lookupHRegRemap ( HRegRemap* map, HReg orig )
181 if (!hregIsVirtual(orig))
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
SerializableTesterTest.java 38 ClassWhichDoesNotImplementEquals orig = local
42 SerializableTester.reserializeAndAssert(orig);
52 ClassWhichIsAlwaysEqualButHasDifferentHashcodes orig = local
56 SerializableTester.reserializeAndAssert(orig);
66 ObjectWhichIsEqualButChangesClass orig = local
70 SerializableTester.reserializeAndAssert(orig);
  /external/regex-re2/util/
valgrind.h     [all...]
  /external/valgrind/dynamic_annotations/third_party/valgrind/
valgrind.h     [all...]
  /cts/tools/signature-tools/src/signature/
Main.java 120 * @param orig
126 private static String[] without(String[] orig, int n) {
127 int len = orig.length - 1;
129 System.arraycopy(orig, 0, newa, 0, n);
130 System.arraycopy(orig, n + 1, newa, n, len - n);
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_memory.c 46 void *orig; local
69 orig = gcm = XMALLOC(sizeof(*gcm));
71 orig = gcm = XMALLOC(sizeof(*gcm) + 16);
78 * note that we only modify gcm and keep orig intact. This code is not portable
101 XFREE(orig);
  /external/valgrind/main/coregrind/
pub_core_redir.h 86 extern Addr VG_(redir_do_lookup) ( Addr orig, Bool* isWrap );

Completed in 1331 milliseconds

1 2 3 4 5 6 7 8 91011