Home
last modified time | relevance | path

Searched refs:ao (Results 1 – 25 of 114) sorted by relevance

12345

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
DAccessibleObjectTest.java34 AccessibleObject ao = TestClass.class.getField("aField"); in test_isAccessible() local
35 ao.setAccessible(true); in test_isAccessible()
36 assertTrue("Returned false to isAccessible", ao.isAccessible()); in test_isAccessible()
37 ao.setAccessible(false); in test_isAccessible()
38 assertTrue("Returned true to isAccessible", !ao.isAccessible()); in test_isAccessible()
49 AccessibleObject ao = TestClass.class.getField("aField"); in test_setAccessible$Ljava_lang_reflect_AccessibleObjectZ() local
50 AccessibleObject[] aoa = new AccessibleObject[] { ao }; in test_setAccessible$Ljava_lang_reflect_AccessibleObjectZ()
52 assertTrue("Returned false to isAccessible", ao.isAccessible()); in test_setAccessible$Ljava_lang_reflect_AccessibleObjectZ()
54 assertTrue("Returned true to isAccessible", !ao.isAccessible()); in test_setAccessible$Ljava_lang_reflect_AccessibleObjectZ()
/external/ppp/pppd/
Dlcp.c341 lcp_options *ao = &lcp_allowoptions[unit]; local
357 BZERO(ao, sizeof(*ao));
358 ao->neg_mru = 1;
359 ao->mru = MAXMRU;
360 ao->neg_asyncmap = 1;
361 ao->neg_chap = 1;
362 ao->chap_mdtype = chap_mdtype_all;
363 ao->neg_upap = 1;
364 ao->neg_eap = 1;
365 ao->neg_magicnumber = 1;
[all …]
Dipxcp.c74 #define ao (&ipxcp_allowoptions[0]) macro
398 ao->neg_node = 1;
399 ao->neg_nn = 1;
400 ao->neg_name = 1;
401 ao->neg_complete = 1;
402 ao->neg_router = 1;
404 ao->accept_local = 0;
405 ao->accept_remote = 0;
406 ao->accept_network = 0;
544 wo->req_node = wo->neg_node && ao->neg_node;
[all …]
Dccp.c541 ccp_options *ao = &ccp_allowoptions[f->unit]; local
603 ao->mppe = go->mppe;
605 ao->bsd_compress = go->bsd_compress = 0;
606 ao->predictor_1 = go->predictor_1 = 0;
607 ao->predictor_2 = go->predictor_2 = 0;
608 ao->deflate = go->deflate = 0;
1078 ccp_options *ao = &ccp_allowoptions[f->unit]; local
1105 if (!ao->mppe || clen != CILEN_MPPE) {
1141 if (ao->mppe & MPPE_OPT_128)
1143 else if (ao->mppe & MPPE_OPT_40)
[all …]
Dipcp.c563 ipcp_options *ao = &ipcp_allowoptions[unit]; local
571 memset(ao, 0, sizeof(*ao));
584 ao->neg_addr = ao->old_addrs = 1;
585 ao->neg_vj = 1;
586 ao->maxslotindex = MAX_STATES - 1;
587 ao->cflag = 1;
593 ao->proxy_arp = 1;
594 ao->default_route = 1;
680 ipcp_options *ao = &ipcp_allowoptions[f->unit]; local
683 (ao->neg_addr || ao->old_addrs);
[all …]
Dipv6cp.c418 ipv6cp_options *ao = &ipv6cp_allowoptions[unit]; local
426 memset(ao, 0, sizeof(*ao));
430 ao->neg_ifaceid = 1;
434 ao->neg_vj = 1;
894 ipv6cp_options *ao = &ipv6cp_allowoptions[f->unit]; local
936 if (!ao->neg_ifaceid ||
982 if (!ao->neg_vj ||
/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/SSAO/
Dssao15.frag75 float ao = 0.0;
84 ao += doAmbientOcclusion(texCoord + coord1.xy * 0.25, position, normal);
85 ao += doAmbientOcclusion(texCoord + coord2 * 0.50, position, normal);
86 ao += doAmbientOcclusion(texCoord + coord1.xy * 0.75, position, normal);
87 ao += doAmbientOcclusion(texCoord + coord2 * 1.00, position, normal);
90 ao /= float(iterations) * 4.0;
91 result = 1.0-ao;
Dssao.frag83 float ao = 0.0;
92 ao += doAmbientOcclusion(texCoord + coord1.xy * 0.25, position, normal);
93 ao += doAmbientOcclusion(texCoord + coord2 * 0.50, position, normal);
94 ao += doAmbientOcclusion(texCoord + coord1.xy * 0.75, position, normal);
95 ao += doAmbientOcclusion(texCoord + coord2 * 1.00, position, normal);
98 ao /= float(iterations) * 4.0;
99 result = 1.0-ao;
/external/clang/test/Analysis/
Delementtype.c9 ADDED_OBJ *ao[4]={((void*)0),((void*)0),((void*)0),((void*)0)}; in f() local
10 if (ao[0] != ((void*)0)) { in f()
11 ao[0]->type=0; in f()
/external/elfutils/tests/
Dget-files.c59 Dwarf_Off ao; in main() local
63 while (dwarf_nextcu (dbg, o, &ncu, &cuhl, &ao, &asz, &osz) == 0) in main()
66 cuhl, (unsigned long long int) ao, in main()
Dget-lines.c59 Dwarf_Off ao; in main() local
62 while (dwarf_nextcu (dbg, cuoff, &cuoff, &hsize, &ao, &asz, &osz) == 0) in main()
65 hsize, (unsigned long long int) ao, in main()
/external/openssl/crypto/objects/
Dobj_dat.c250 ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop; in OBJ_add_object() local
256 if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; in OBJ_add_object()
258 if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; in OBJ_add_object()
260 if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; in OBJ_add_object()
262 if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2; in OBJ_add_object()
266 if (ao[i] != NULL) in OBJ_add_object()
268 ao[i]->type=i; in OBJ_add_object()
269 ao[i]->obj=o; in OBJ_add_object()
270 aop=lh_ADDED_OBJ_insert(added,ao[i]); in OBJ_add_object()
284 if (ao[i] != NULL) OPENSSL_free(ao[i]); in OBJ_add_object()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
Dp2.cpp6 auto int ao; // expected-error {{illegal storage class on file-scoped variable}} variable
13 auto int ao; // expected-error {{storage class specified for a member declaration}} member
/external/javassist/src/main/javassist/util/proxy/
DSecurityActions.java99 static void setAccessible(final AccessibleObject ao,
102 ao.setAccessible(accessible);
106 ao.setAccessible(accessible);
/external/mksh/src/
DBuild.sh81 ao=
91 ao=''
103 $e "$bi==> $fd...$ao $ui$fr$ao$fx"
774 $e "Hi from$ao $bi$srcversion$ao on:"
806 $e "$bi$me: Building the MirBSD Korn Shell$ao $ui$dstversion$ao on $TARGET_OS ${TARGET_OSREV}..."
811 $e $bi$me: Scanning for functions... please ignore any errors.$ao
1060 $e "$bi==> which compiler seems to be used...$ao $ui$ct${et+ on $et}$ao"
1964 $e "${bi}run-time checks follow$ao, please ignore any weird errors"
2022 $e "${bi}end of run-time checks$ao"
2125 $e $bi$me: Finished configuration testing, now producing output.$ao
/external/icu4c/samples/ufortune/resources/
DMakefile31 CLEANFILES += *.[co] *.lst $(RESNAME)_*.mak $(RESNAME).dat $(RESFILES) *.ao README*resources.txt $(…
/external/icu4c/config/
Dmh-bsd-gcc32 STATIC_O = ao
Dmh-haiku33 STATIC_O = ao
Dmh-alpha-linux-gcc37 STATIC_O = ao
Dmh-solaris-gcc40 STATIC_O = ao
Dmh-irix40 STATIC_O = ao
Dmh-alpha-osf42 STATIC_O = ao
Dmh-linux38 STATIC_O = ao
Dmh-alpha-linux-cc42 STATIC_O = ao
/external/icu4c/data/translit/
Dit_ja.txt114 sa } nt[ao] → サ;

12345