Searched refs:local (Results 1 - 25 of 632) 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((
H A Dinfcodes.h17 local inflate_codes_statef *inflate_codes_new OF((
22 local int inflate_codes OF((
27 local void inflate_codes_free OF((
/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
H A Dcommon.s6 // Test that this produces a regular local symbol.
8 .local common1
23 .local common2
38 .local common6
52 // Test that without an explicit .local we produce a global.
67 // Test that without an explicit .local we produce a global, even if the first
/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/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.h4 local const ct_data static_ltree[L_CODES+2] = {
65 local const ct_data static_dtree[D_CODES] = {
119 local const int base_length[LENGTH_CODES] = {
124 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.cc16 int local; local
17 RecursiveFunc(depth - 1, &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);
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java92 StringBuffer local = new StringBuffer(40); // manipulate
100 local.append(inwd, 1, inwd.length - 1);
102 local.append(inwd);
107 local.append(inwd, 1, inwd.length - 1);
109 local.append(inwd);
114 local.append(inwd, 1, inwd.length - 1);
118 local.append(inwd, 1, inwd.length - 1);
119 local.setCharAt(0, 'W'); // WH -> W
121 local.append(inwd);
126 local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java50 * {@code null-ok;} local variable info associated with this register,
53 private final LocalItem local; field in class:RegisterSpec
61 * @param local {@code null-ok;} the associated local variable, if any
65 LocalItem local) {
67 theInterningItem.set(reg, type, local);
102 * @param local {@code non-null;} the associated local variable
106 LocalItem local) {
107 if (local
64 intern(int reg, TypeBearer type, LocalItem local) argument
105 make(int reg, TypeBearer type, LocalItem local) argument
126 makeLocalOptional( int reg, TypeBearer type, LocalItem local) argument
151 RegisterSpec(int reg, TypeBearer type, LocalItem local) argument
227 equals(int reg, TypeBearer type, LocalItem local) argument
278 hashCodeOf(int reg, TypeBearer type, LocalItem local) argument
552 withLocalItem(LocalItem local) argument
612 private LocalItem local; field in class:RegisterSpec.ForComparison
624 set(int reg, TypeBearer type, LocalItem local) argument
[all...]

Completed in 1034 milliseconds

1234567891011>>