Searched refs:local (Results 1 - 25 of 5363) sorted by relevance

1234567891011>>

/external/freetype/src/gzip/
H A Dinffixed.h10 local const uInt fixed_bl = 9;
11 local const uInt fixed_bd = 5;
12 local const inflate_huft fixed_tl[] = {
142 local const inflate_huft fixed_td[] = {
H A Dinfblock.h17 local inflate_blocks_statef * inflate_blocks_new OF((
22 local int inflate_blocks OF((
27 local void inflate_blocks_reset OF((
32 local int inflate_blocks_free OF((
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
H A Dequlocal.asm2 .local equ 5
4 db blah.local
5 .local
7 je .local
H A Dlocallabel.asm3 .local:
7 dw label.local
12 $.local:
16 dw label2.local
18 dw $label2.local
/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/llvm/test/MC/ELF/
H A Dalign-bss.s5 .local foo
H A Dcommon2.s6 .local vimvardict
/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/jsilver/src/com/google/clearsilver/jsilver/data/
H A DLocalAndGlobalData.java20 * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
26 private final Data local; field in class:LocalAndGlobalData
29 * Creates a Data object that encapsulates both request-scoped local HDF and an application
33 * @param local the request-specific HDF data that takes priority.
37 public LocalAndGlobalData(Data local, Data global) { argument
38 this(local, global, false);
42 * Creates a Data object that encapsulates both request-scoped local HDF and an application
47 * @param local th
56 LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) argument
[all...]
/external/chromium_org/remoting/webapp/
H A Dopen_sans.css10 src: local('Open Sans'), local('OpenSans'),
/external/chromium_org/third_party/zlib/
H A Dtrees.h3 local const ct_data static_ltree[L_CODES+2] = {
64 local const ct_data static_dtree[D_CODES] = {
118 local const int base_length[LENGTH_CODES] = {
123 local const int base_dist[D_CODES] = {
/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/
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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dtrees.h3 local const ct_data static_ltree[L_CODES+2] = {
64 local const ct_data static_dtree[D_CODES] = {
118 local const int base_length[LENGTH_CODES] = {
123 local const int base_dist[D_CODES] = {
/external/qemu/distrib/zlib-1.2.8/
H A Dtrees.h3 local const ct_data static_ltree[L_CODES+2] = {
64 local const ct_data static_dtree[D_CODES] = {
118 local const int base_length[LENGTH_CODES] = {
123 local const int base_dist[D_CODES] = {
/external/zlib/src/
H A Dtrees.h3 local const ct_data static_ltree[L_CODES+2] = {
64 local const ct_data static_dtree[D_CODES] = {
118 local const int base_length[LENGTH_CODES] = {
123 local const int base_dist[D_CODES] = {
/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/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalEnd.java25 * register to a named local variable. That is, an instance of this
31 * {@code non-null;} register spec representing the local variable ended
34 * is implicit in the ambient local variable state, but other code
37 private final RegisterSpec local; field in class:LocalEnd
44 * @param local {@code non-null;} register spec representing the local
47 public LocalEnd(SourcePosition position, RegisterSpec local) { argument
50 if (local == null) {
51 throw new NullPointerException("local == null");
54 this.local
[all...]
H A DLocalStart.java24 * Pseudo-instruction which is used to introduce a new local variable. That
31 * {@code non-null;} register spec representing the local variable introduced
34 private final RegisterSpec local; field in class:LocalStart
37 * Returns the local variable listing string for a single register spec.
52 * @param local {@code non-null;} register spec representing the local
55 public LocalStart(SourcePosition position, RegisterSpec local) { argument
58 if (local == null) {
59 throw new NullPointerException("local == null");
62 this.local
[all...]
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java39 * present in the local one. The state of the local collection can be mutated,
53 private final HttpParams local; field in class:DefaultedHttpParams
56 public DefaultedHttpParams(final HttpParams local, final HttpParams defaults) { argument
58 if (local == null) {
61 this.local = local;
66 * Creates a copy of the local collection with the same default
69 HttpParams clone = this.local.copy();
74 * Retrieves the value of the parameter from the local collectio
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DDefaultedHttpContext.java37 * present in the local one. The state of the local context can be mutated,
51 private final HttpContext local; field in class:DefaultedHttpContext
54 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) { argument
56 if (local == null) {
59 this.local = local;
64 Object obj = this.local.getAttribute(id);
73 return this.local.removeAttribute(id);
77 this.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/compiler-rt/test/asan/TestCases/
H A Ddeep_call_stack.cc15 int local; local
16 RecursiveFunc(depth - 1, &local);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
H A Dwin32-segof.asm5 mov ax, seg local
10 local: label

Completed in 579 milliseconds

1234567891011>>