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

1 2 3 4 5 6 7 8 91011

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_codeop.py 126 ai = self.assertIncomplete
128 ai("(a **")
129 ai("(a,b,")
130 ai("(a,b,(")
131 ai("(a,b,(")
132 ai("a = (")
133 ai("a = {")
134 ai("b + {")
136 ai("if 9==3:\n pass\nelse:")
137 ai("if 9==3:\n pass\nelse:\n")
    [all...]
  /external/python/cpython2/Lib/test/
test_codeop.py 126 ai = self.assertIncomplete
128 ai("(a **")
129 ai("(a,b,")
130 ai("(a,b,(")
131 ai("(a,b,(")
132 ai("a = (")
133 ai("a = {")
134 ai("b + {")
136 ai("if 9==3:\n pass\nelse:")
137 ai("if 9==3:\n pass\nelse:\n"
    [all...]
  /external/python/cpython3/Lib/test/
test_codeop.py 126 ai = self.assertIncomplete
128 ai("(a **")
129 ai("(a,b,")
130 ai("(a,b,(")
131 ai("(a,b,(")
132 ai("a = (")
133 ai("a = {")
134 ai("b + {")
136 ai("if 9==3:\n pass\nelse:")
137 ai("if 9==3:\n pass\nelse:\n"
    [all...]
  /external/clang/test/CodeGen/
blocks-aligned-byref-variable.c 3 typedef int __attribute__((aligned(32))) ai; typedef
6 __block ai a = 10;
may-alias.c 9 void test0(aliasing_int *ai, int *i)
13 *ai = 0;
  /external/compiler-rt/test/msan/
getaddrinfo-positive.cc 14 struct addrinfo *ai; local
16 int res = getaddrinfo("localhost", NULL, NULL, &ai);
17 if (ai) z = 1; // OK
18 res = getaddrinfo("localhost", NULL, &hint, &ai);
getaddrinfo.cc 16 struct addrinfo *ai; local
22 int res = getaddrinfo("not-in-etc-hosts", NULL, NULL, &ai);
  /external/compiler-rt/test/ubsan/TestCases/Misc/
log-path_test.cc 30 unsigned int ai = (unsigned int) a; local
31 printf("%f %u\n", a, ai);
  /development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
AppListFragment.java 37 protected void onBindAction2(Button v, LauncherActivityInfo ai, OnClickListener listener) {
39 if (mUserManager.isUserUnlocked(ai.getUser())
41 mQuery.setPackage(ai.getComponentName().getPackageName());
46 mQuery.setActivity(ai.getComponentName());
48 if (mLauncherApps.getShortcuts(mQuery, ai.getUser()).size() > 0) {
60 protected void onLaunch(LauncherActivityInfo ai) {
61 mLauncherApps.startMainActivity(ai.getComponentName(), ai.getUser(), null, null);
65 protected void onAction2(LauncherActivityInfo ai) {
68 ai.getComponentName().getPackageName()
    [all...]
  /external/curl/tests/unit/
unit1305.c 78 static Curl_addrinfo *ai; local
80 ai = calloc(1, sizeof(Curl_addrinfo));
81 if(!ai)
84 ai->ai_canonname = strdup("dummy");
85 if(!ai->ai_canonname) {
86 free(ai);
90 ai->ai_addr = calloc(1, sizeof(struct sockaddr_in));
91 if(!ai->ai_addr) {
92 free(ai->ai_canonname);
93 free(ai);
    [all...]
  /external/openssh/openbsd-compat/
fake-rfc2553.c 110 freeaddrinfo(struct addrinfo *ai)
114 for(; ai != NULL;) {
115 next = ai->ai_next;
116 free(ai);
117 ai = next;
126 struct addrinfo *ai; local
128 ai = malloc(sizeof(*ai) + sizeof(struct sockaddr_in));
129 if (ai == NULL)
132 memset(ai, '\0', sizeof(*ai) + sizeof(struct sockaddr_in))
    [all...]
  /external/u-boot/drivers/mtd/ubi/
attach.c 87 static int self_check_ai(struct ubi_device *ubi, struct ubi_attach_info *ai);
95 * @ai: attaching information
114 static int add_to_list(struct ubi_attach_info *ai, int pnum, int vol_id,
119 if (list == &ai->free) {
121 } else if (list == &ai->erase) {
123 } else if (list == &ai->alien) {
125 ai->alien_peb_count += 1;
129 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
146 * @ai: attaching information
155 static int add_corrupted(struct ubi_attach_info *ai, int pnum, int ec
1300 struct ubi_attach_info *ai; local
1399 struct ubi_attach_info *ai; local
    [all...]
  /external/toybox/lib/
net.c 22 struct addrinfo info, *ai; local
32 rc = getaddrinfo(host, port, &info, &ai);
33 if (rc || !ai)
37 return ai;
42 struct addrinfo *ai; local
46 for (ai = ai_arg; ai; ai = ai->ai_next) {
47 fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype
    [all...]
  /external/curl/lib/
curl_addrinfo.c 121 const struct addrinfo *ai; local
137 for(ai = aihead; ai != NULL; ai = ai->ai_next) {
141 if(ai->ai_family == AF_INET)
144 else if(ai->ai_family == AF_INET6)
151 if((ai->ai_addr == NULL) || !(ai->ai_addrlen > 0))
155 if((size_t)ai->ai_addrlen < ss_size
279 Curl_addrinfo *ai; local
399 Curl_addrinfo *ai; local
497 Curl_addrinfo *ai; local
    [all...]
hostip4.c 97 Curl_addrinfo *ai = NULL; local
105 ai = Curl_ipv4_resolve_r(hostname, port);
106 if(!ai)
109 return ai;
129 Curl_addrinfo *ai = NULL; local
152 (void)Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &ai);
300 ai = Curl_he2ai(h, port);
306 return ai;
hostip6.c 100 static void dump_addrinfo(struct connectdata *conn, const Curl_addrinfo *ai)
103 for(; ai; ai = ai->ai_next) {
107 ai->ai_family, ai->ai_canonname ? ai->ai_canonname : "<none>");
108 if(Curl_printable_address(ai, buf, sizeof(buf)))
hostasyn.c 71 struct Curl_addrinfo *ai)
79 if(ai) {
85 dns = Curl_cache_addr(data, ai,
93 Curl_freeaddrinfo(ai);
  /external/clang/test/SemaTemplate/
operator-function-id-template.cpp 13 bool test_qualified_id(A<int> ai) {
14 return ::operator==<0, int>(ai, ai);
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
co-586.pl 29 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
34 &comment("mul a[$ai]*b[$bi]");
37 # &mov("eax",&DWP($ai*4,$a,"",0)) ;
57 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
62 &comment("sqr a[$ai]*a[$bi]");
65 # &mov("eax",&DWP($ai*4,$a,"",0)) ;
68 if ($ai == $bi)
86 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
91 &comment("sqr a[$ai]*a[$bi]");
94 # &mov("eax",&DWP($ai*4,$a,"",0))
    [all...]
  /external/libevent/test/
regress_util.c 787 ai_find_by_family(struct evutil_addrinfo *ai, int family)
789 while (ai) {
790 if (ai->ai_family == family)
791 return ai;
792 ai = ai->ai_next;
798 ai_find_by_protocol(struct evutil_addrinfo *ai, int protocol)
800 while (ai) {
801 if (ai->ai_protocol == protocol)
802 return ai;
927 struct evutil_addrinfo *ai = NULL, *a; local
1063 struct evutil_addrinfo *ai = NULL; local
    [all...]
  /external/boringssl/src/crypto/asn1/
a_enum.c 150 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai)
155 if (ai == NULL)
158 ret = ai;
181 if (ret != ai)
186 BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn)
190 if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
192 else if (ai->type == V_ASN1_NEG_ENUMERATED)
  /external/lzma/CPP/7zip/UI/Common/
UpdatePair.cpp 140 const CArcItem *ai = NULL; local
154 ai = &arcItems[arcIndex2];
158 compareResult = CompareFileNames(dirNames[dirIndex2], ai->Name);
161 if (di->IsDir() != ai->IsDir)
162 compareResult = (ai->IsDir ? 1 : -1);
176 name = &ai->Name;
177 pair.State = ai->Censored ?
187 ThrowError(k_Duplicate_inArc_Message, ai->Name, arcItems[arcIndices[arcIndex + dupl]].Name);
190 if (!ai->Censored)
191 ThrowError(k_NotCensoredCollision_Message, *name, ai->Name);
    [all...]
  /external/clang/test/Modules/
merge-template-members.cpp 19 N::A<int> ai; variable
  /external/toybox/toys/net/
ping.c 89 struct addrinfo *ai, *ai2; local
124 for (ai = ai2; ai; ai = ai->ai_next) {
127 if (family && family!=ai->ai_family) continue;
128 if (ai->ai_family!=AF_INET && ai->ai_family!=AF_INET6) continue;
133 if (!ifa->ifa_addr || ifa->ifa_addr->sa_family!=ai->ai_family
142 if (!ai)
    [all...]
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
PackageUtil.java 66 ApplicationInfo ai = getPackageManager().getApplicationInfo(packageName, local
68 return ai != null && ((ai.flags & SYSTEM_APP_MASK) != 0);
80 ApplicationInfo ai = getPackageManager().getApplicationInfo(packageName, local
82 return ai != null && ((ai.flags & SYSTEM_APP_MASK) != 0) && ai.isPrivilegedApp();

Completed in 465 milliseconds

1 2 3 4 5 6 7 8 91011