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

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/gzip/
inffixed.h 10 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[] = {
infblock.h 17 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((
infcodes.h 17 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/
p11.cpp 4 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/
align-bss.s 5 .local foo
common2.s 3 // Test local common construction.
7 .local vimvardict
  /external/swiftshader/third_party/LLVM/test/MC/ELF/
align-bss.s 5 .local foo
common2.s 6 .local vimvardict
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
align-bss.s 5 .local foo
addrsig.s 35 // CHECK-NEXT: Name: local
67 // CHECK-NEXT: Sym: local (2)
78 // ASM: .addrsig_sym local
79 .addrsig_sym local
83 local: label
common2.s 3 // Test local common construction.
7 .local vimvardict
  /external/clang/test/Index/
complete-lambdas.cpp 8 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/
LocalAndGlobalData.java 20 * 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) {
38 this(local, global, false);
42 * Creates a Data object that encapsulates both request-scoped local HDF and an application
47 * @param local the request-specific HDF data that takes priority
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.h 3 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] = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.h 3 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/python/cpython2/Modules/zlib/
trees.h 3 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/u-boot/lib/zlib/
trees.h 3 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/
trees.h 3 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] = {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalEnd.java 25 * 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) {
50 if (local == null) {
51 throw new NullPointerException("local == null");
54 this.local = local
    [all...]
LocalStart.java 24 * 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) {
58 if (local == null) {
59 throw new NullPointerException("local == null");
62 this.local = local
    [all...]
  /external/clang/test/Analysis/
comparison-implicit-casts.cpp 25 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 + 1)); // expected-warning{{TRUE}
    [all...]
  /external/apache-http/src/org/apache/http/params/
DefaultedHttpParams.java 39 * 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) {
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 collection and, if the
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
DefaultedHttpContext.java 37 * 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) {
56 if (local == null) {
59 this.local = local;
64 Object obj = this.local.getAttribute(id);
73 return this.local.removeAttribute(id);
77 this.local.setAttribute(id, obj)
    [all...]
  /external/clang/test/CXX/class/class.local/
p1.cpp 10 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/Posix/
deep_call_stack.cc 15 int local; local
16 RecursiveFunc(depth - 1, &local);

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 91011>>