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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/arch-arm/asm/
local.h 12 #include <asm-generic/local.h>
  /development/ndk/platforms/android-3/arch-arm/include/asm/
local.h 12 #include <asm-generic/local.h>
  /external/kernel-headers/original/asm-arm/
local.h 1 #include <asm-generic/local.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
local.h 12 #include <asm-generic/local.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
local.h 12 #include <asm-generic/local.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
local.h 12 #include <asm-generic/local.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
local.h 12 #include <asm-generic/local.h>
  /bionic/libc/kernel/arch-sh/asm/
local.h 15 #include <asm-generic/local.h>
  /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,
46 private final HttpContext local; field in class:DefaultedHttpContext
49 public DefaultedHttpContext(final HttpContext local, final HttpContext defaults) {
51 if (local == null) {
54 this.local = local;
59 Object obj = this.local.getAttribute(id);
68 return this.local.removeAttribute(id);
72 this.local.setAttribute(id, obj)
    [all...]
  /external/chromium/third_party/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/qemu/distrib/zlib-1.2.3/
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/
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/dx/src/com/android/dx/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/bluetooth/glib/gio/
glocalfileenumerator.c 97 free_entries (GLocalFileEnumerator *local)
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->dir
200 GLocalFileEnumerator *local; local
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/
DefaultedHttpParams.java 39 * 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) {
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 collection and, if the
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 87 StringBuffer local = new StringBuffer(40); // manipulate local
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.append(inwd)
    [all...]
  /external/bluetooth/bluez/src/
dbus-hci.h 26 void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class, int8_t rssi, uint8_t *data);
27 void hcid_dbus_set_legacy_pairing(bdaddr_t *local, bdaddr_t *peer, gboolean legacy);
28 void hcid_dbus_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class);
29 void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status, char *name);
30 void hcid_dbus_conn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, bdaddr_t *peer);
31 void hcid_dbus_disconn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, uint8_t reason);
32 void hcid_dbus_bonding_process_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status);
33 void hcid_dbus_simple_pairing_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status);
34 void hcid_dbus_setscan_enable_complete(bdaddr_t *local);
35 void hcid_dbus_write_simple_pairing_mode_complete(bdaddr_t *local);
    [all...]
storage.h 37 int write_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class);
38 int read_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t *class);
39 int write_device_name(bdaddr_t *local, bdaddr_t *peer, char *name);
41 int write_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data);
42 int read_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data);
43 int write_l2cap_info(bdaddr_t *local, bdaddr_t *peer,
46 int read_l2cap_info(bdaddr_t *local, bdaddr_t *peer,
49 int write_version_info(bdaddr_t *local, bdaddr_t *peer, uint16_t manufacturer, uint8_t lmp_ver, uint16_t lmp_subver);
50 int write_features_info(bdaddr_t *local, bdaddr_t *peer, unsigned char *page1, unsigned char *page2);
51 int read_remote_features(bdaddr_t *local, bdaddr_t *peer, unsigned char *page1, unsigned char *page2)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 49 /** {@code null-ok;} local variable info associated with this register, if any */
50 private final LocalItem local; field in class:RegisterSpec
58 * @param local {@code null-ok;} the associated local variable, if any
62 LocalItem local) {
63 theInterningItem.set(reg, type, local);
97 * @param local {@code non-null;} the associated local variable
101 LocalItem local) {
102 if (local == null)
605 private LocalItem local; field in class:RegisterSpec.ForComparison
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 180 Time local = new Time("America/Los_Angeles"); local
185 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
187 local.normalize(false /* use isDst */);
188 local.monthDay += test.offset;
189 local.normalize(true /* ignore isDst */);
190 if (local.year != test.year2 || local.month != test.month2
191 || local.monthDay != test.day2 || local.hour != test.hour2
192 || local.minute != test.minute2)
    [all...]
  /bionic/libc/kernel/common/linux/
if_pppopns.h 24 __u16 local; member in struct:sockaddr_pppopns
  /external/kernel-headers/original/linux/
if_pppopns.h 30 __u16 local; member in struct:sockaddr_pppopns
  /external/webkit/WebKit/win/Interfaces/
IWebCookieManager.idl 49 [local] HRESULT cookieStorage([out, retval] CFHTTPCookieStorageRef* storage);
51 [local] HRESULT setCookieStorage([in] CFHTTPCookieStorageRef storage);
IWebSerializedJSValue.idl 38 [local] HRESULT serialize([in] JSContextRef context, [in] JSValueRef value, [out, retval] JSValueRef* exception);
39 [local] HRESULT deserialize([in] JSContextRef context, [out, retval] JSValueRef* value);

Completed in 2563 milliseconds

1 2 3 4 5 6 7 8 91011>>