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

1 2 3

  /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/open-vcdiff/src/zlib/
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/src/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
    [all...]
  /frameworks/native/include/ui/
ANativeObjectBase.h 70 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF> BASE;
81 static inline TYPE* getSelf(android_native_base_t* base) {
82 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
84 static inline TYPE const * getSelf(android_native_base_t const* base) {
85 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
87 static void incRef(android_native_base_t* base) {
88 ANativeObjectBase* self = getSelf(base);
91 static void decRef(android_native_base_t* base) {
92 ANativeObjectBase* self = getSelf(base);
  /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.cpp 62 #define BASE 36
89 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
110 * BASE-1, or -1 if b is does not represent a value.
172 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
173 delta/=(BASE-TMIN);
176 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
327 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0)
    [all...]
  /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 79 private static final File BASE = new File("/data/anr/");
81 if (!BASE.isDirectory() && !BASE.mkdirs()) {
82 throw new AssertionError("Couldn't create " + BASE + ".");
84 if (!SELinux.restorecon(BASE)) {
85 throw new AssertionError("Couldn't restorecon " + BASE + ".");
101 File[] files = BASE.listFiles();
118 new File(BASE, String.valueOf(System.currentTimeMillis())));
  /external/v8/src/
compiler.h 150 bool IsOptimizable() const { return mode_ == BASE; }
177 // BASE is generated by the full codegen, optionally prepared for bailouts.
182 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 };
  /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;
96 public static final int CMD_ON_QUIT = BASE + 6;
100 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 7;
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/telephony/java/com/android/internal/telephony/
DctConstants.java 59 public static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER;
60 public static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
61 public static final int EVENT_RADIO_AVAILABLE = BASE + 1;
62 public static final int EVENT_RECORDS_LOADED = BASE + 2;
63 public static final int EVENT_TRY_SETUP_DATA = BASE + 3;
64 public static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
65 public static final int EVENT_POLL_PDP = BASE + 5;
66 public static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
67 public static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
68 public static final int EVENT_VOICE_CALL_ENDED = BASE + 8
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcAsyncChannel.java 39 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC;
41 public static final int REQ_IS_INACTIVE = BASE + 0;
42 public static final int RSP_IS_INACTIVE = BASE + 1;
44 public static final int REQ_GET_CID = BASE + 2;
45 public static final int RSP_GET_CID = BASE + 3;
47 public static final int REQ_GET_APNSETTING = BASE + 4;
48 public static final int RSP_GET_APNSETTING = BASE + 5;
50 public static final int REQ_GET_LINK_PROPERTIES = BASE + 6;
51 public static final int RSP_GET_LINK_PROPERTIES = BASE + 7;
53 public static final int REQ_SET_LINK_PROPERTIES_HTTP_PROXY = BASE + 8
    [all...]
  /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
  /external/icu4c/i18n/
dtitvinf.cpp 456 const int32_t BASE = 0x41;
517 (char)(i+BASE) ) ) {
  /frameworks/base/core/java/android/net/nsd/
NsdManager.java 161 private static final int BASE = Protocol.BASE_NSD_MANAGER;
164 public static final int DISCOVER_SERVICES = BASE + 1;
166 public static final int DISCOVER_SERVICES_STARTED = BASE + 2;
168 public static final int DISCOVER_SERVICES_FAILED = BASE + 3;
170 public static final int SERVICE_FOUND = BASE + 4;
172 public static final int SERVICE_LOST = BASE + 5;
175 public static final int STOP_DISCOVERY = BASE + 6;
177 public static final int STOP_DISCOVERY_FAILED = BASE + 7;
179 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 8;
182 public static final int REGISTER_SERVICE = BASE + 9
    [all...]
  /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;
153 private static final int CMD_TO_STRING_COUNT = CMD_CHANNEL_DISCONNECTED - BASE + 1;
156 sCmdToString[CMD_CHANNEL_HALF_CONNECTED - BASE] = "CMD_CHANNEL_HALF_CONNECTED";
157 sCmdToString[CMD_CHANNEL_FULL_CONNECTION - BASE] = "CMD_CHANNEL_FULL_CONNECTION";
158 sCmdToString[CMD_CHANNEL_FULLY_CONNECTED - BASE] = "CMD_CHANNEL_FULLY_CONNECTED"
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiController.java 103 private static final int BASE = Protocol.BASE_WIFI_CONTROLLER;
105 static final int CMD_EMERGENCY_MODE_CHANGED = BASE + 1;
106 static final int CMD_SCREEN_ON = BASE + 2;
107 static final int CMD_SCREEN_OFF = BASE + 3;
108 static final int CMD_BATTERY_CHANGED = BASE + 4;
109 static final int CMD_DEVICE_IDLE = BASE + 5;
110 static final int CMD_LOCKS_CHANGED = BASE + 6;
111 static final int CMD_SCAN_ALWAYS_MODE_CHANGED = BASE + 7;
112 static final int CMD_WIFI_TOGGLED = BASE + 8;
113 static final int CMD_AIRPLANE_TOGGLED = BASE + 9
    [all...]

Completed in 975 milliseconds

1 2 3