Searched defs:local (Results 1 - 25 of 271) sorted by relevance

1234567891011

/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp11.cpp4 int local; // expected-note{{declared here}} local
10 return local + // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/
H A Dmain.c15 int local = 0; local
20 local += argc;
21 ++local; // Set 2nd break point for disable_then_enable test case.
22 printf("local: %d\n", local);
/external/lldb/test/python_api/watchpoint/
H A Dmain.c15 int local = 0; local
20 local += argc;
21 ++local;
22 printf("local: %d\n", local);
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dthreadinglocal.py4 Implementation of thread-local storage, for Python versions that don't
5 have thread local storage natively.
11 # No threads, so "thread local" means process-global
12 class local(object): class in inherits:object
16 local = threading.local variable in class:local
20 class local(object): class in inherits:object
/external/clang/test/CodeGen/
H A Dannotations-var.c32 void local(void) { function
34 // LOCAL-LABEL: define void @local()
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_seh.cc30 int local, zero = 0; local
31 fprintf(stderr, "Throw: %p\n", &local);
32 local = 5 / zero;
37 int local; local
41 fprintf(stderr, "__except: %p\n", &local);
H A Dseh.cc28 int local, zero = 0; local
29 fprintf(stderr, "Throw: %p\n", &local);
30 local = 5 / zero;
35 int local; local
39 fprintf(stderr, "__except: %p\n", &local);
H A Dqueue_user_work_item.cc27 int local; local
H A Dthrow_catch.cc23 int local; local
24 fprintf(stderr, "Throw: %p\n", &local);
30 int local; local
34 fprintf(stderr, "Catch: %p\n", &local);
/external/compiler-rt/test/asan/TestCases/
H A Ddeep_call_stack.cc16 int local; local
17 RecursiveFunc(depth - 1, &local);
H A Dthrow_catch.cc12 int local; local
13 fprintf(stderr, "Throw: %p\n", &local);
19 int local; local
23 fprintf(stderr, "Catch: %p\n", &local);
/external/kernel-headers/original/uapi/linux/
H A Dif_pppopns.h28 __u16 local; member in struct:sockaddr_pppopns
H A Dif_pppolac.h30 } local, remote; member in struct:sockaddr_pppolac
/external/lldb/test/functionalities/watchpoint/hello_watchpoint/
H A Dmain.c17 int local = 0; local
24 local += argc;
25 ++local;
26 printf("local: %d\n", local);
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
H A Dmain.cpp19 int local = 0; local
/external/lldb/test/python_api/watchpoint/condition/
H A Dmain.cpp19 int local = 0; local
/external/v8/test/mjsunit/
H A Dconst-eval-init.js31 // This only makes sense in local scopes since the declaration and
37 // Deleting 'x' removes the local const property.
51 // Delete 'x' to remove the local const property.
64 function local() {
68 local();
110 function local() {
114 local();
/external/mesa3d/src/glsl/
H A DAndroid.gen.mk30 intermediates := $(call local-intermediates-dir)
49 define local-l-or-ll-to-c-or-cpp
55 define local-y-to-c-and-h
61 define local-yy-to-cpp-and-h
74 $(call local-l-or-ll-to-c-or-cpp)
77 $(call local-yy-to-cpp-and-h,.cpp)
80 $(call local-l-or-ll-to-c-or-cpp)
83 $(call local-y-to-c-and-h)
/external/clang/test/Analysis/
H A Dcomparison-implicit-casts.cpp25 int local = x - 1; local
35 // Constant-folding will turn (local+1) back into the symbol for x.
40 clang_analyzer_eval((local + 1) >= 2); // expected-warning{{TRUE}}
41 clang_analyzer_eval(2 <= (local + 1)); // expected-warning{{TRUE}}
44 clang_analyzer_eval((local + 1) != 1); // expected-warning{{TRUE}}
45 clang_analyzer_eval(1 != (local + 1)); // expected-warning{{TRUE}}
50 signed char local = x - 1; local
55 // Constant-folding will turn (local+1) back into the symbol for x.
64 clang_analyzer_eval((local + 1) < value); // expected-warning{{TRUE}}
65 clang_analyzer_eval(value > (local
[all...]
/external/clang/test/CXX/class/class.local/
H A Dp1.cpp10 struct local { struct
11 int g() { return x; } // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}}
18 local* p = 0; // expected-error{{unknown type name 'local'}}
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp18 void local() { function
22 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
/external/clang/test/Index/
H A Dcomplete-lambdas.cpp8 int local; local
12 [local, this, inner_local] {
21 // CHECK-CC1-NEXT: VarDecl:{ResultType int}{TypedText local} (34)
38 // CHECK-CC4: VarDecl:{ResultType int}{TypedText local} (34)
/external/iptables/include/libipq/
H A Dlibipq.h52 struct sockaddr_nl local; member in struct:ipq_handle
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
H A Dmain.cpp20 int local = 0; local
/external/skia/gm/
H A Dcolortype.cpp20 SkMatrix local; local
21 local.setRotate(180);
23 SK_ARRAY_COUNT(colors), 0, &local);

Completed in 614 milliseconds

1234567891011