Searched refs:local (Results 1 - 25 of 408) 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'}}
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/kernel-headers/original/asm-arm/
H A Dlocal.h1 #include <asm-generic/local.h>
/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
21 .local common2
33 .local common6
46 // Test that without an explicit .local we produce a global.
59 // 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/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,
46 private final HttpContext local; field in class:DefaultedHttpContext
49 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) { argument
51 if (local == null) {
54 this.local = local;
59 Object obj = this.local.getAttribute(id);
68 return this.local.removeAttribute(id);
72 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/qemu/distrib/zlib-1.2.3/
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/
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/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/bluetooth/glib/gio/
H A Dglocalfileenumerator.c97 free_entries (GLocalFileEnumerator *local) argument
102 if (local->entries != NULL)
104 for (i = 0; local->entries[i].name != NULL; i++)
105 g_free (local->entries[i].name);
107 g_free (local->entries);
115 GLocalFileEnumerator *local; local
117 local = G_LOCAL_FILE_ENUMERATOR (object);
119 g_free (local->filename);
120 g_file_attribute_matcher_unref (local->matcher);
121 if (local
150 g_local_file_enumerator_init(GLocalFileEnumerator *local) argument
200 GLocalFileEnumerator *local; local
261 next_file_helper(GLocalFileEnumerator *local) argument
318 GLocalFileEnumerator *local = G_LOCAL_FILE_ENUMERATOR (enumerator); local
374 GLocalFileEnumerator *local = G_LOCAL_FILE_ENUMERATOR (enumerator); 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,
48 private final HttpParams local; field in class:DefaultedHttpParams
51 public DefaultedHttpParams(final HttpParams local, final HttpParams defaults) { argument
53 if (local == null) {
56 this.local = local;
61 * Creates a copy of the local collection with the same default
64 HttpParams clone = this.local.copy();
69 * Retrieves the value of the parameter from the local collectio
[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/bluetooth/bluez/src/
H A Devent.h26 void btd_event_device_found(bdaddr_t *local, bdaddr_t *peer, uint32_t class,
28 void btd_event_set_legacy_pairing(bdaddr_t *local, bdaddr_t *peer, gboolean legacy);
29 void btd_event_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class);
30 void btd_event_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status, char *name);
31 void btd_event_conn_complete(bdaddr_t *local, bdaddr_t *peer);
32 void btd_event_conn_failed(bdaddr_t *local, bdaddr_t *peer, uint8_t status);
33 void btd_event_disconn_complete(bdaddr_t *local, bdaddr_t *peer);
34 void btd_event_bonding_complete(bdaddr_t *local, bdaddr_t *peer,
36 void btd_event_simple_pairing_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status);
37 void btd_event_returned_link_key(bdaddr_t *local, bdaddr_
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java87 StringBuffer local = new StringBuffer(40); // manipulate
95 local.append(inwd, 1, inwd.length - 1);
97 local.append(inwd);
102 local.append(inwd, 1, inwd.length - 1);
104 local.append(inwd);
109 local.append(inwd, 1, inwd.length - 1);
113 local.append(inwd, 1, inwd.length - 1);
114 local.setCharAt(0, 'W'); // WH -> W
116 local.append(inwd);
121 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...]
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp14 void local() { function
18 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
/external/libnl-headers/
H A Dnetlink-generic.h15 #include <netlink-local.h>
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebSerializedJSValuePrivate.idl43 [local] HRESULT setInternalRepresentation([in] void* internalRepresentation);
44 [local] HRESULT getInternalRepresentation([out, retval] void** internalRepresentation);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dtkip_countermeasures.h12 void michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
/external/wpa_supplicant_8/src/ap/
H A Dtkip_countermeasures.h12 void michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dtkip_countermeasures.h12 void michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);

Completed in 370 milliseconds

1234567891011>>