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

1 2 3 4 5 6 7 8 9

  /external/clang/test/CodeGen/
cast.c 3 extern void go(const void *p);
5 void foo(void) { go(v); }
  /external/clang/test/SemaTemplate/
instantiation-depth-exception-spec.cpp 3 template<typename T> T go(T a) noexcept(noexcept(go(a))); // \
4 // expected-error 16{{call to function 'go' that is neither visible}} \
5 // expected-note 16{{'go' should be declared prior to the call site}} \
9 int k = go(0); // \
10 // expected-note {{in instantiation of exception specification for 'go<int>' requested here}}
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 36 GuardedObject go = new GuardedObject(obj, null); local
37 assertNull(go.getObject());
40 go = new GuardedObject(obj, null);
41 assertEquals(obj, go.getObject());
48 GuardedObject go = new GuardedObject(objBuffer, new Guard() { local
56 assertEquals(objBuffer, go.getObject());
60 go.getObject();
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 39 GuardedObject go = new GuardedObject(obj, null); local
40 assertNull(go.getObject());
43 go = new GuardedObject(obj, null);
44 assertEquals(obj, go.getObject());
51 GuardedObject go = new GuardedObject(objBuffer, new Guard() { local
59 assertEquals(objBuffer, go.getObject());
63 go.getObject();
  /external/ppp/pppd/
lcp.c 626 lcp_options *go = &lcp_gotoptions[f->unit]; local
631 *go = *wo;
633 go->neg_mrru = 0;
634 go->neg_ssnhf = 0;
635 go->neg_endpoint = 0;
651 lcp_options *go = &lcp_gotoptions[f->unit]; local
664 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
665 LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF)
689 lcp_options *go = &lcp_gotoptions[f->unit]; local
777 lcp_options *go = &lcp_gotoptions[f->unit]; local
933 lcp_options *go = &lcp_gotoptions[f->unit]; local
1326 lcp_options *go = &lcp_gotoptions[f->unit]; local
1486 lcp_options *go = &lcp_gotoptions[f->unit]; local
1876 lcp_options *go = &lcp_gotoptions[f->unit]; local
1925 lcp_options *go = &lcp_gotoptions[f->unit]; local
    [all...]
ccp.c 533 ccp_options *go = &ccp_gotoptions[f->unit]; local
536 *go = ccp_wantoptions[f->unit];
540 if (go->mppe) {
587 if (go->mppe & MPPE_OPT_40) {
589 go->mppe &= ~MPPE_OPT_40;
595 if (!(go->mppe & (MPPE_OPT_40 | MPPE_OPT_128))) {
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
676 ccp_options *go = &ccp_gotoptions[f->unit]; local
695 ccp_options *go = &ccp_gotoptions[f->unit]; local
813 ccp_options *go = &ccp_gotoptions[f->unit]; local
902 ccp_options *go = &ccp_gotoptions[f->unit]; local
991 ccp_options *go = &ccp_gotoptions[f->unit]; local
1424 ccp_options *go = &ccp_gotoptions[f->unit]; local
    [all...]
ipcp.c 679 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
690 *go = *wo;
692 go->ouraddr = 0;
711 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
724 if (go->neg_addr && go->old_addrs && !ho->neg_addr && ho->old_addrs)
725 go->neg_addr = 0;
726 if (wo->neg_vj && !go->neg_vj && !go->old_vj) {
730 go->neg_vj = 1
754 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
844 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
970 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
1191 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
1686 ipcp_options *go = &ipcp_gotoptions[f->unit]; local
    [all...]
ipv6cp.c 520 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
528 *go = *wo;
529 eui64_zero(go->hisid); /* last proposed interface identifier */
540 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
545 return (LENCIIFACEID(go->neg_ifaceid) +
546 LENCIVJ(go->neg_vj));
559 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
586 ADDCIIFACEID(CI_IFACEID, go->neg_ifaceid, go->ourid);
588 ADDCIVJ(CI_COMPRESSTYPE, go->neg_vj, go->vj_protocol)
607 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
679 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
816 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
895 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
1174 ipv6cp_options *go = &ipv6cp_gotoptions[f->unit]; local
    [all...]
ipxcp.c 75 #define go (&ipxcp_gotoptions[0]) macro
581 *go = *wo;
594 len = go->neg_nn ? CILEN_NETN : 0;
595 len += go->neg_node ? CILEN_NODEN : 0;
596 len += go->neg_name ? CILEN_NAME + strlen (go->name) - 1 : 0;
599 if (go->neg_router && to_external(go->router) != RIP_SAP)
618 if (go->neg_nn) {
621 PUTLONG (go->our_network, ucp)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
IdleHandlerTest.java 34 public void go() { method in class:IdleHandlerTest.BaseTestHandler
63 public void go() {
64 super.go();
97 public void go() {
98 super.go();
134 public void go() {
135 super.go();
168 public void go() {
169 super.go();
HandlerTester.java 24 public abstract void go(); method in class:HandlerTester
63 go(); method
  /external/eigen/bench/btl/generic_bench/static/
static_size_generator.hh 30 static void go(vector<double> & tab_sizes, vector<double> & tab_mflops) function in struct:static_size_generator
37 static_size_generator<SIZE-1,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
45 static void go(vector<double> & tab_sizes, vector<double> & tab_mflops) function in struct:static_size_generator
bench_static.hh 51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
  /external/webkit/Source/WebCore/page/
History.cpp 66 go(-1);
71 go(context, -1);
76 go(1);
81 go(context, 1);
84 void History::go(int distance) function in class:WebCore::History
92 void History::go(ScriptExecutionContext* context, int distance) function in class:WebCore::History
History.h 51 void go(int distance);
55 void go(ScriptExecutionContext*, int distance);
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 18 struct p2p_device *go,
28 go->dialog_token++;
29 if (go->dialog_token == 0)
30 go->dialog_token = 1;
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token);
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid,
36 go->oper_ssid_len);
60 "P2P: GO acknowledged Device Discoverability Request - wait "
72 struct p2p_device *go; local
233 struct p2p_device *go; local
    [all...]
  /external/mksh/src/
misc.c 60 /*XXX this should go away */
305 Getopt go; local
356 ksh_getopt_reset(&go, GF_ERROR|GF_PLUSOPT);
357 while ((optc = ksh_getopt(argv, &go, opts)) != -1) {
358 set = tobool(!(go.info & GI_PLUS));
364 array = go.optarg;
370 if (go.optarg == NULL) {
381 i = option(go.optarg);
393 bi_errorf("%s: %s", go.optarg, "bad option");
406 chvt(go.optarg)
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
ConnectorAdapter.java 68 private AtomicBoolean go = new AtomicBoolean(true); field in class:ConnectorAdapter
111 // can go out in a way that blocks reads.
119 go.set(false);
147 if( !go.get() )
158 while( go.get() ) {
161 if( go.get() ) {
206 while( go.get() ) {
211 if( !go.get() )
  /external/valgrind/main/tests/
arch_test.c 19 // 'all_archs' as well as adding go().
35 static Bool go(char* arch) function
74 if (go( argv[1] )) {
  /frameworks/base/services/java/com/android/server/am/
TransferPipe.java 52 void go(IInterface iface, FileDescriptor fd, String prefix, method in interface:TransferPipe.Caller
73 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT); method
78 static void go(Caller caller, IInterface iface, FileDescriptor out, method in class:TransferPipe
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
92 tp.go(out, timeout);
117 tp.go(out, timeout);
123 void go(FileDescriptor out) throws IOException { method in class:TransferPipe
124 go(out, DEFAULT_TIMEOUT) method
127 void go(FileDescriptor out, long timeout) throws IOException { method in class:TransferPipe
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 39 abstract void go(); method in class:ContentQueryMapTest.LooperThread
44 go(); method
55 void go() {
  /external/chromium-trace/trace-viewer/
PRESUBMIT.py 89 def go(): function in function:CheckChangeOnUpload
93 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
96 def go(): function in function:CheckChangeOnCommit
100 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
  /external/webkit/Source/WebCore/inspector/front-end/
GoToLineDialog.js 34 this._element.className = "go-to-line-dialog";
43 dialogWindow.createChild("label").textContent = WebInspector.UIString("Go to line: ");
55 var go = dialogWindow.createChild("button");
56 go.textContent = WebInspector.UIString("Go");
57 go.addEventListener("click", this._onClick.bind(this), false);
58 go.addEventListener("mousedown", function(e) {
  /external/qemu/elff/
dwarf_cu.cc 481 const Elf_Byte* go = stmtl_header_.start; local
482 while (go < stmtl_header_.end) {
483 const Elf_Byte op = *go;
484 go++;
491 go = reinterpret_cast<const Elf_Byte*>
492 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&op_size));
494 const Elf_Byte* ex_op_ptr = go;
543 go += op_size.u32;
558 go = reinterpret_cast<const Elf_Byte*>
559 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&addr_add));
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_cu.cc 481 const Elf_Byte* go = stmtl_header_.start; local
482 while (go < stmtl_header_.end) {
483 const Elf_Byte op = *go;
484 go++;
491 go = reinterpret_cast<const Elf_Byte*>
492 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&op_size));
494 const Elf_Byte* ex_op_ptr = go;
543 go += op_size.u32;
558 go = reinterpret_cast<const Elf_Byte*>
559 (reinterpret_cast<const Dwarf_Leb128*>(go)->process_unsigned(&addr_add))
    [all...]

Completed in 637 milliseconds

1 2 3 4 5 6 7 8 9