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

1 2 3 4 5 6 7 8 910

  /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 38 GuardedObject go = new GuardedObject(obj, null); local
39 assertNull(go.getObject());
42 go = new GuardedObject(obj, null);
43 assertEquals(obj, go.getObject());
52 GuardedObject go = new GuardedObject(objBuffer, new Guard() { local
60 assertEquals(objBuffer, go.getObject());
64 go.getObject();
  /external/chromium_org/third_party/skia/tools/bug_chomper/
run_server.sh 1 if [[ -z `which go` ]]; then
2 echo "Please install Go before running the server."
12 go get github.com/gorilla/securecookie
13 go get code.google.com/p/goauth2/oauth
22 GOPATH="$GOPATH:$DIR" go run $DIR/src/server/server.go $@
  /external/chromium_org/third_party/skia/experimental/webtry/setup/
continue_install 19 # Install Go
20 if [ -d go ]; then
21 echo Go already installed.
23 wget https://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
26 export GOROOT=$HOME/go
60 go get -d
61 go build webtry.go
  /external/chromium_org/third_party/skia/experimental/webtry/
build 21 go build webtry.go
  /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/mksh/src/
misc.c 61 /*XXX this should go away */
360 Getopt go; local
382 ksh_getopt_reset(&go, GF_ERROR|GF_PLUSOPT);
383 while ((optc = ksh_getopt(argv, &go, opts)) != -1) {
384 set = tobool(!(go.info & GI_PLUS));
390 array = go.optarg;
396 if (go.optarg == NULL) {
407 i = option(go.optarg);
430 bi_errorf("%s: %s", go.optarg, "bad option");
443 chvt(&go);
    [all...]
  /external/chromium_org/mojo/spy/
PRESUBMIT.py 29 def go(): function in function:CheckChangeOnUpload
33 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
36 def go(): function in function:CheckChangeOnCommit
40 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
  /external/chromium_org/tools/telemetry/
PRESUBMIT.py 48 def go(): function in function:CheckChangeOnUpload
52 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
55 def go(): function in function:CheckChangeOnCommit
59 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
  /external/compiler-rt/test/lsan/TestCases/
high_allocator_contention.cc 17 bool go = false; variable
21 while (!go) pthread_cond_wait(&cond, &mutex);
43 go = true;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp 94 go(context, -1);
99 go(context, 1);
102 void History::go(ExecutionContext* context, int distance) function in class:blink::History
History.idl 34 [CallWith=ExecutionContext] void go([Default=Undefined] optional long distance);
History.h 59 void go(ExecutionContext*, int distance);
  /external/chromium-trace/trace-viewer/
PRESUBMIT.py 76 def go(): function in function:CheckChangeOnUpload
80 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
84 def go(): function in function:CheckChangeOnCommit
88 return RunWithPrependedPath(GetPathsToPrepend(input_api), go)
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
code.c 81 void Go_compact(Go *g){
93 void Go_unmap(Go *g, Go *base, State *x){
116 static void doGen(Go *g, State *s, unsigned char *bm, unsigned char m){
126 static void prt(FILE *o, Go *g, State *s){
136 static int matches(Go *g1, State *s1, Go *g2, State *s2){
152 Go *go; member in struct:BitMap
159 static BitMap *BitMap_find_go(Go*, State*)
562 Go go; local
    [all...]
  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
ForwardingTest.java 75 mButton = (Button) getActivity().findViewById(R.id.go);
88 mButton = (Button) activity.findViewById(R.id.go);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-358088.js 18 f(o); // Store should go generic.
regress-crbug-385002.js 7 %Break(); // Schedule an interrupt that does not go away.
  /external/llvm/test/MC/ARM/
relocated-mapping.s 4 @ go via MCStreamer::EmitBytes; make sure they still emit a mapping symbol.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilter.java 42 Button button = (Button)findViewById(R.id.go);
Forwarding.java 36 go back from it.</p>
67 Button goButton = (Button)findViewById(R.id.go);
LocalSample.java 42 Button button = (Button)findViewById(R.id.go);
RedirectEnter.java 44 Button goButton = (Button)findViewById(R.id.go);

Completed in 1062 milliseconds

1 2 3 4 5 6 7 8 910