Searched refs:pref (Results 1 - 25 of 138) sorted by relevance

123456

/external/libdrm/nouveau/
H A Dbufctx.c89 struct nouveau_bufref_priv *pref; local
93 while ((pref = pctx->free)) {
94 pctx->free = pref->next;
95 free(pref);
107 struct nouveau_bufref_priv *pref; local
109 while ((pref = pbin->list)) {
110 DRMLISTDELINIT(&pref->base.thead);
111 pbin->list = pref->next;
112 pref->next = pctx->free;
113 pctx->free = pref;
126 struct nouveau_bufref_priv *pref = pctx->free; local
[all...]
/external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
H A Dpath.pass.cpp38 path const& pref = e.path(); local
39 assert(pref == p);
40 assert(&pref == &e.path());
42 assert(pref == p2);
43 assert(&pref == &e.path());
71 path const& pref = e; local
72 assert(&pref == &e.path());
77 path const& pref = e; local
78 assert(&pref == &e.path());
81 assert(pref
[all...]
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/
H A Dsource.pass.cpp55 path& pref = (p = S); local
56 assert(&pref == &p);
67 path& pref = p.assign(S); local
68 assert(&pref == &p);
81 path& pref = (p = S); local
82 assert(&pref == &p);
93 path& pref = p.assign(S); local
94 assert(&pref == &p);
108 path& pref = (p = TestPath); local
109 assert(&pref
118 path& pref = p.assign(TestPath); local
128 path& pref = p.assign(TestPath, TestPathEnd); local
143 path& pref = (p = it); local
154 path& pref = p.assign(it); local
166 path& pref = p.assign(it, e); local
[all...]
H A Dcopy.pass.cpp33 path& pref = (p2 = p); local
36 assert(&pref == &p2);
H A Dmove.pass.cpp38 path& pref = (p2 = std::move(p)); local
41 assert(&pref == &p2);
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DSharedPrefUtil.java55 SharedPreferences pref = context.getSharedPreferences(EAB_SHARED_PREF,
57 contactModifySyncTime = pref.getLong(CONTACT_CHANGED_PREF_KEY, time);
69 SharedPreferences pref = context.getSharedPreferences(EAB_SHARED_PREF,
71 profileModifySyncTime = pref.getLong(CONTACT_PROFILE_CHANGED_PREF_KEY, time);
83 SharedPreferences pref = context.getSharedPreferences(EAB_SHARED_PREF,
85 contactDeleteSyncTime = pref.getLong(CONTACT_DELETE_PREF_KEY, time);
H A DCapabilityPolling.java163 PresencePreferences pref = PresencePreferences.getInstance();
164 if (pref != null) {
165 if (pref.getRcsTestMode() != test) {
166 pref.setRcsTestMode(test);
314 PresencePreferences pref = PresencePreferences.getInstance();
315 if (pref != null) {
316 String mdn_old = pref.getLine1Number();
317 String subscriberId_old = pref.getSubscriberId();
320 pref.setLine1Number(mdn);
322 pref
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dipv6_route.h36 #define RTF_PREF(pref) ((pref) << 27)
/external/ltp/testcases/open_posix_testsuite/include/
H A Dnoatime.h24 int strpref(const char *str, const char *pref) argument
28 for (i = 0; pref[i] != '\0'; i++) {
34 if (str[i] != pref[i])
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_urllib.py83 pref = import_mod.prefix
89 names.extend([Name(name[0], prefix=pref), Comma()])
90 names.append(Name(MAPPING[import_mod.value][-1][0], prefix=pref))
99 pref = mod_member.prefix
113 mod_member.replace(Name(new_name, prefix=pref))
152 names.extend(handle_name(elt, pref))
154 names.extend(handle_name(elts[-1], pref))
/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_urllib.py82 pref = import_mod.prefix
88 names.extend([Name(name[0], prefix=pref), Comma()])
89 names.append(Name(MAPPING[import_mod.value][-1][0], prefix=pref))
98 pref = mod_member.prefix
112 mod_member.replace(Name(new_name, prefix=pref))
151 names.extend(handle_name(elt, pref))
153 names.extend(handle_name(elts[-1], pref))
/external/curl/lib/
H A Dchecksrc.pl126 my $pref = (' ' x $col);
127 print "${pref}^\n";
410 my $pref=$1;
412 if($pref =~ / *\#/) {
416 elsif($pref =~ /\/\*/) {
420 elsif($pref =~ /[\"\']/) {
424 if($pref =~ /\"/) {
427 elsif($pref =~ /\'$/) {
435 checkwarn("COMMANOSPACE", $line, length($pref)+1, $file, $l,
/external/libxml2/
H A Dtestdict.c154 xmlChar *cur, *pref; local
275 pref = &prefix[0];
276 while (*cur != ':') *pref++ = *cur++;
278 *pref = 0;
292 pref = &prefix[0];
293 while (*cur != ':') *pref++ = *cur++;
295 *pref = 0;
317 xmlChar *cur, *pref; local
406 pref = &prefix[0];
407 while (*cur != ':') *pref
[all...]
/external/chromium-trace/catapult/devil/devil/android/sdk/
H A Dshared_prefs.py362 pref = _PREF_TYPES[child.tag](child)
363 d[child.get('name')] = pref.get()
399 pref = pref_cls(self._GetChild(key))
400 old_value = pref.get()
402 pref = pref_cls(ElementTree.SubElement(
406 pref.set(value)
408 logger.info('Setting property: %s', pref)
/external/libmojo/third_party/catapult/devil/devil/android/sdk/
H A Dshared_prefs.py345 pref = _PREF_TYPES[child.tag](child)
346 d[child.get('name')] = pref.get()
382 pref = pref_cls(self._GetChild(key))
383 old_value = pref.get()
385 pref = pref_cls(ElementTree.SubElement(
389 pref.set(value)
391 logging.info('Setting property: %s', pref)
/external/python/cpython2/Lib/
H A Dmimify.py141 pref = prefix
143 pref = ''
151 ofile.write(pref + line)
171 pref = prefix
173 pref = ''
178 ofile.write(pref + line)
183 ofile.write(pref + line)
201 if line and is_base64 and not pref:
205 ofile.write(pref + line)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationServiceTest.java500 String[] pref = Collator.getKeywordValuesForLocale("collation", loc, true);
502 if (!arrayContains(pref, expected[j])) {
511 if (pref.length == all.length) {
513 for (int j = 0; j < pref.length; j++) {
516 if (pref[j].equals(all[k])) {
529 + " got:" + Arrays.toString(all) + " expected:" + Arrays.toString(pref));
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationServiceTest.java497 String[] pref = Collator.getKeywordValuesForLocale("collation", loc, true);
499 if (!arrayContains(pref, expected[j])) {
508 if (pref.length == all.length) {
510 for (int j = 0; j < pref.length; j++) {
513 if (pref[j].equals(all[k])) {
526 + " got:" + Arrays.toString(all) + " expected:" + Arrays.toString(pref));
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
H A DOptionsMessage.java82 public void setProtocolRolePreference(ProtocolRole pref) { argument
83 mProtocolRolePreference = pref;
189 ret.append(" pref=" + mProtocolRolePreference);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2];
77 " non-preferred channel list (op class %u, pref %u, reason code %u, channels %s)",
78 MAC2STR(sta->addr), info->op_class, info->pref,
136 count, info->op_class, info->pref,
/external/wpa_supplicant_8/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2];
77 " non-preferred channel list (op class %u, pref %u, reason code %u, channels %s)",
78 MAC2STR(sta->addr), info->op_class, info->pref,
136 count, info->op_class, info->pref,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2];
77 " non-preferred channel list (op class %u, pref %u, reason code %u, channels %s)",
78 MAC2STR(sta->addr), info->op_class, info->pref,
136 count, info->op_class, info->pref,
/external/ipsec-tools/src/racoon/
H A Dracoonctl.c1012 get_comindex(str, name, port, pref)
1013 char *str, **name, **port, **pref;
1017 *name = *port = *pref = NULL;
1027 *pref = racoon_strdup(p + 1);
1028 STRDUP_FATAL(*pref);
1029 p = strchr(*pref, '[');
1036 p = strchr(*pref, ']');
1042 if (*pref == NULL)
1047 p = strchr(*pref, ']');
1064 if (*pref)
[all...]
/external/elfutils/libcpu/
H A Di386_disasm.c116 #define prefbit(pref) has_##pref = 1 << idx_##pref
153 #define newpref(pref) [idx_##pref] = prefix_##pref
173 #define newpref(pref) [idx_##pref] = #pref
/external/iproute2/ip/
H A Diprule.c48 " [ iif STRING ] [ oif STRING ] [ pref NUMBER ] [ l3mdev ]\n"
68 unsigned int pref, prefmask; member in struct:__anon8823
88 filter.pref ^ (tb[FRA_PRIORITY] ? rta_getattr_u32(tb[FRA_PRIORITY]) : 0))
438 __u32 pref; local
441 if (get_u32(&pref, *argv, 0))
443 filter.pref = pref;
625 __u32 pref; local
628 if (get_u32(&pref, *argv, 0))
630 addattr32(&req.n, sizeof(req), FRA_PRIORITY, pref);
[all...]

Completed in 1464 milliseconds

123456