HomeSort by relevance Sort by last modified time
    Searched defs:BASE (Results 1 - 25 of 46) sorted by null

1 2

  /external/clang/test/SemaCXX/
ambig-user-defined-conversions.cpp 4 struct BASE {
11 struct B : public BASE, BASE1 {};
66 bool f(D d) { return !d; } // expected-error{{ambiguous conversion from derived class 'rdar8876150::D' to base class 'rdar8876150::A':}}
decl-init-ref.cpp 5 struct BASE {
13 class B : public BASE , public BASE1
  /external/qemu/distrib/zlib-1.2.3/
adler32.c 11 #define BASE 65521UL /* largest prime smaller than 65536 */
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 13);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
adler32.c 11 #define BASE 65521UL /* largest prime smaller than 65536 */
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 13);
    [all...]
  /external/zlib/
adler32.c 14 #define BASE 65521UL /* largest prime smaller than 65536 */
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
28 if (a >= (BASE << 16)) a -= (BASE << 16); \
29 if (a >= (BASE << 15)) a -= (BASE << 15); \
30 if (a >= (BASE << 14)) a -= (BASE << 14); \
31 if (a >= (BASE << 13)) a -= (BASE << 13);
    [all...]
  /frameworks/base/include/ui/egl/
android_natives.h 25 // FIXME: remove this header, it's for legacy use. native_window is pulled from frameworks/base/native/include/android/
71 typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE;
82 static inline TYPE* getSelf(android_native_base_t* base) {
83 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
85 static inline TYPE const * getSelf(android_native_base_t const* base) {
86 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
88 static void incRef(android_native_base_t* base) {
89 EGLNativeBase* self = getSelf(base);
92 static void decRef(android_native_base_t* base) {
93 EGLNativeBase* self = getSelf(base);
    [all...]
  /development/apps/Development/src/com/android/development/
AppHwPref.java 53 private static final int BASE = 0;
54 private static final int TOUCHSCREEN = BASE + 1;
55 private static final int KEYBOARD_TYPE = BASE + 2;
56 private static final int NAVIGATION = BASE + 3;
57 private static final int GLES_VERSION = BASE + 4;
  /external/icu4c/common/
punycode.c 59 #define BASE 36
86 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
107 * BASE-1, or -1 if b is does not represent a value.
169 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
170 delta/=(BASE-TMIN);
173 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
324 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
348 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0)
    [all...]
  /frameworks/base/core/java/android/net/
DhcpStateMachine.java 83 private static final int BASE = Protocol.BASE_DHCP;
86 public static final int CMD_START_DHCP = BASE + 1;
87 public static final int CMD_STOP_DHCP = BASE + 2;
88 public static final int CMD_RENEW_DHCP = BASE + 3;
91 public static final int CMD_PRE_DHCP_ACTION = BASE + 4;
94 public static final int CMD_POST_DHCP_ACTION = BASE + 5;
98 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 6;
DnsPinger.java 76 private static final int BASE = Protocol.BASE_DNS_PINGER;
83 public static final int DNS_PING_RESULT = BASE;
92 private static final int ACTION_PING_DNS = BASE + 1;
93 private static final int ACTION_LISTEN_FOR_RESPONSE = BASE + 2;
94 private static final int ACTION_CANCEL_ALL_PINGS = BASE + 3;
  /frameworks/base/core/java/android/os/
Build.java 139 public static final int BASE = 1;
  /frameworks/base/services/java/com/android/server/am/
DeviceMonitor.java 78 private static final File BASE = new File("/data/anr/");
80 if (!BASE.isDirectory() && !BASE.mkdirs()) {
81 throw new AssertionError("Couldn't create " + BASE + ".");
97 File[] files = BASE.listFiles();
114 new File(BASE, String.valueOf(System.currentTimeMillis())));
  /external/v8/src/
compiler.h 128 bool IsOptimizable() const { return mode_ == BASE; }
151 // BASE is generated by the full codegen, optionally prepared for bailouts.
157 BASE,
  /external/webkit/Source/WebCore/editing/
SelectionController.h 106 Position base() const { return m_selection.base(); } function in class:WebCore::SelectionController
187 enum EPositionType { START, END, BASE, EXTENT };
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
JarURLConnectionTest.java 44 private static final String BASE =
51 URL u = new URL("jar:"+BASE+"!/swt.dll");
64 URL u = new URL("jar:"+BASE+"!/plus.bmp");
68 u = new URL("jar:"+BASE+"!/");
80 URL u = new URL("jar:"+BASE+"!/plus.bmp");
84 u = new URL("jar:"+BASE+"!/");
94 url = new URL("jar:"+BASE+"!/missing");
124 new URL("jar:"+BASE+"!/");
185 URL fileURL = new URL(BASE);
186 URL u = new URL("jar:"+BASE+"!/plus.bmp")
309 String base = "file:resources\/org\/apache\/harmony\/luni\/tests\/java\/net\/url-test.jar"; local
    [all...]
URLTest.java     [all...]
  /external/grub/netboot/
smc9000.h 87 #define RCR_CLEAR 0x0 /* set it to a base state */
97 #define BASE 2
3c509.h 58 #define BASE (eth_nic_base)
76 #define GO_WINDOW(x) outw(WINDOW_SELECT|(x), BASE+EP_COMMAND)
93 #define EEPROM_ADDR_CFG 0x8 /* Base addr */
105 #define EP_COMMAND 0x0e /* Write. BASE+0x0e is always a
107 #define EP_STATUS 0x0e /* Read. BASE+0x0e is always status
109 #define EP_WINDOW 0x0f /* Read. BASE+0x0f is always window
3c595.h 67 #define BASE (eth_nic_base)
99 #define EEPROM_ADDR_CFG 0x8 /* Base addr */
117 #define VX_COMMAND 0x0e /* Write. BASE+0x0e is always a
119 #define VX_STATUS 0x0e /* Read. BASE+0x0e is always status
121 #define VX_WINDOW 0x0f /* Read. BASE+0x0f is always window
296 #define VX_BUSY_WAIT while (inw(BASE + VX_STATUS) & S_COMMAND_IN_PROGRESS)
416 #define GO_WINDOW(x) outw(WINDOW_SELECT|(x),BASE+VX_COMMAND)
  /external/icu4c/i18n/
dtitvinf.cpp 437 const int32_t BASE = 0x41;
504 (char)(i+BASE) ) ) {
  /frameworks/base/core/java/com/android/internal/util/
AsyncChannel.java 93 private static final int BASE = Protocol.BASE_SYSTEM_ASYNC_CHANNEL;
108 public static final int CMD_CHANNEL_HALF_CONNECTED = BASE + 0;
117 public static final int CMD_CHANNEL_FULL_CONNECTION = BASE + 1;
127 public static final int CMD_CHANNEL_FULLY_CONNECTED = BASE + 2;
138 public static final int CMD_CHANNEL_DISCONNECT = BASE + 3;
151 public static final int CMD_CHANNEL_DISCONNECTED = BASE + 4;
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataConnectionAc.java 41 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC;
43 public static final int REQ_IS_INACTIVE = BASE + 0;
44 public static final int RSP_IS_INACTIVE = BASE + 1;
46 public static final int REQ_GET_CID = BASE + 2;
47 public static final int RSP_GET_CID = BASE + 3;
49 public static final int REQ_GET_APNSETTING = BASE + 4;
50 public static final int RSP_GET_APNSETTING = BASE + 5;
52 public static final int REQ_GET_LINK_PROPERTIES = BASE + 6;
53 public static final int RSP_GET_LINK_PROPERTIES = BASE + 7;
55 public static final int REQ_SET_LINK_PROPERTIES_HTTP_PROXY = BASE + 8
    [all...]
DataConnection.java 44 * This is an abstract base class for representing a single data connection.
197 protected static final int BASE = Protocol.BASE_DATA_CONNECTION;
198 protected static final int EVENT_CONNECT = BASE + 0;
199 protected static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
200 protected static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2;
201 protected static final int EVENT_DEACTIVATE_DONE = BASE + 3;
202 protected static final int EVENT_DISCONNECT = BASE + 4;
203 protected static final int EVENT_RIL_CONNECTED = BASE + 5;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pManager.java 199 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER;
202 public static final int ENABLE_P2P = BASE + 1;
204 public static final int ENABLE_P2P_FAILED = BASE + 2;
206 public static final int ENABLE_P2P_SUCCEEDED = BASE + 3;
209 public static final int DISABLE_P2P = BASE + 4;
211 public static final int DISABLE_P2P_FAILED = BASE + 5;
213 public static final int DISABLE_P2P_SUCCEEDED = BASE + 6;
216 public static final int DISCOVER_PEERS = BASE + 7;
218 public static final int DISCOVER_PEERS_FAILED = BASE + 8;
220 public static final int DISCOVER_PEERS_SUCCEEDED = BASE + 9
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiMonitor.java 202 private static final int BASE = Protocol.BASE_WIFI_MONITOR;
205 public static final int SUP_CONNECTION_EVENT = BASE + 1;
207 public static final int SUP_DISCONNECTION_EVENT = BASE + 2;
209 public static final int NETWORK_CONNECTION_EVENT = BASE + 3;
211 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4;
213 public static final int SCAN_RESULTS_EVENT = BASE + 5;
215 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6;
217 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7;
219 public static final int WPS_OVERLAP_EVENT = BASE + 8;
221 public static final int DRIVER_HUNG_EVENT = BASE + 9
    [all...]

Completed in 523 milliseconds

1 2