Searched defs:local (Results 26 - 50 of 271) sorted by relevance

1234567891011

/external/mesa3d/src/mesa/
H A DAndroid.gen.mk30 intermediates := $(call local-intermediates-dir)
72 define local-l-to-c
78 define local-y-to-c-and-h
107 $(local-y-to-c-and-h)
110 $(local-l-to-c)
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionOperator.java85 * @param local the local address to route from, or
94 InetAddress local,
92 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
/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/expr/expr.prim/expr.prim.lambda/
H A Dp10.cpp28 int local; // expected-note{{declared here}} local
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
/external/clang/test/Index/
H A Dcomment-c-decls.c30 * \brief local variable;
43 * \brief a local variable
45 int local = 10; local
46 return local;
49 // CHECK: <Declaration>int local = 10</Declaration>
H A Dformat-comment-cdecls.c25 * \brief local variable;
38 * \brief a local variable
40 int local = 10; local
41 return local;
44 // CHECK: <Declaration>int local = 10</Declaration>
/external/compiler-rt/test/asan/TestCases/Linux/
H A Duar_signals.cc17 int local; local
18 g = &local;
20 // printf("s: %p\n", &local);
44 int local; local
45 g = &local;
46 // printf("r: %p\n", &local);
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dbind_io_completion_callback.cc27 int local; local
/external/compiler-rt/test/asan/TestCases/
H A Dstack-use-after-return.cc41 char local[kSize]; local
42 return Ident(local);
52 // CHECK: 'local' <== Memory access at offset {{16|32}} is inside this variable
56 // THREAD: 'local' <== Memory access at offset {{16|32}} is inside this variable
/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/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/skia/src/animator/
H A DSkDrawSaveLayer.cpp48 SkPaint local = SkPaint(*maker.fPaint); local
49 maker.fPaint = &local;
/external/srtp/test/
H A Droc_driver.c86 xtd_seq_num_t local, est, ref; local
93 index_init(&local);
99 delta = index_guess(&local, &est, (uint16_t) ref);
121 index_init(&local);
135 delta = index_guess(&local, &est, (uint16_t) ref);
137 printf("ref: %lld, local: %lld, est: %lld, ircvd: %d, delta: %d\n",
138 ref, local, est, ircvd, delta);
141 /* now update local xtd_seq_num_t as necessary */
143 index_advance(&local, delta);
152 /* reset local valu
[all...]
/external/valgrind/memcheck/tests/
H A Dvarinfo1.c46 int local; local
56 croak( &local );
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dtkip_countermeasures.c69 int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local) argument
74 if (addr && local) {
/external/wpa_supplicant_8/src/ap/
H A Dtkip_countermeasures.c69 int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local) argument
74 if (addr && local) {
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dtkip_countermeasures.c69 int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local) argument
74 if (addr && local) {
/external/apache-http/src/org/apache/http/conn/params/
H A DConnRouteParams.java174 * :: for IPv6) to override a specific local address in a hierarchy.
178 * @return the local address set in the argument parameters, or
185 InetAddress local = (InetAddress)
188 return local;
197 * @param local the value to set, may be <code>null</code>
200 InetAddress local) {
204 params.setParameter(LOCAL_ADDRESS, local);
199 setLocalAddress(HttpParams params, InetAddress local) argument
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnectionOperator.java107 InetAddress local,
120 // local address may be null
152 local, 0, params);
105 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
/external/bison/
H A Dcfg.mk43 local-checks-to-skip = \
50 # The local directory containing the checked-out copy of gnulib used in
/external/compiler-rt/test/ubsan/TestCases/Misc/
H A Dnonnull-arg.cpp37 int local = 0; local
38 int *arg = (argv[1][0] == '0') ? 0x0 : &local;
45 return C(0x0, &local).method(arg, 0x0);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java22 * A local variable item: either a name or a signature or both.
25 /** {@code null-ok;} local variable name */
28 /** {@code null-ok;} local variable signature */
36 * @param name {@code null-ok;} local variable name
37 * @param signature {@code null-ok;} local variable signature
51 * @param name {@code null-ok;} local variable name
52 * @param signature {@code null-ok;} local variable signature
66 LocalItem local = (LocalItem) other;
68 return 0 == compareTo(local);
91 public int compareTo(LocalItem local) { argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/tools/
H A DTestVersionTracker.java73 String local,
80 if (local.equals("plugin") || local.equals("fragment")) {
82 } else if (local.equals("feature"))
84 else if (local.equals("includes")) {
71 startElement( String uri, String local, String qName, Attributes atts) argument

Completed in 737 milliseconds

1234567891011