HomeSort by relevance Sort by last modified time
    Searched refs:BASE (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/quake/quake/src/QW/gas2masm/
gas2masm.mak 41 # PROP BASE Use_MFC 0
42 # PROP BASE Use_Debug_Libraries 0
43 # PROP BASE Output_Dir "Release"
44 # PROP BASE Intermediate_Dir "Release"
45 # PROP BASE Target_Dir ""
63 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
69 # ADD BASE RSC /l 0x409 /d "NDEBUG"
72 # ADD BASE BSC32 /nologo
78 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
94 # PROP BASE Use_MFC 0
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataConnectionTracker.java 102 protected static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER;
103 protected static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
104 protected static final int EVENT_RADIO_AVAILABLE = BASE + 1;
105 protected static final int EVENT_RECORDS_LOADED = BASE + 2;
106 protected static final int EVENT_TRY_SETUP_DATA = BASE + 3;
107 protected static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
108 protected static final int EVENT_POLL_PDP = BASE + 5;
109 protected static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
110 protected static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
111 protected static final int EVENT_VOICE_CALL_ENDED = BASE + 8
    [all...]
DataConnection.java 44 * This is an abstract base class for representing a single data connection.
200 protected static final int BASE = Protocol.BASE_DATA_CONNECTION;
201 protected static final int EVENT_CONNECT = BASE + 0;
202 protected static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
203 protected static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2;
204 protected static final int EVENT_DEACTIVATE_DONE = BASE + 3;
205 protected static final int EVENT_DISCONNECT = BASE + 4;
206 protected static final int EVENT_RIL_CONNECTED = BASE + 5;
207 protected static final int EVENT_DISCONNECT_ALL = BASE + 6;
    [all...]
  /dalvik/tests/etc/
host-run-test-jar 122 BASE="$OUT" # from build environment
143 framework="${BASE}/system/framework"
  /system/media/mca/filterfw/native/core/
value.cpp 52 template<typename BASE, int TYPEID>
53 Value MakePtrValue(const BASE* values, int count) {
56 result.value = malloc(sizeof(BASE) * count);
57 memcpy(result.value, values, sizeof(BASE) * count);
76 template<typename BASE, int TYPEID>
77 int SetPtrValue(Value* value, const BASE* new_values, int count) {
80 value->value = malloc(sizeof(BASE) * count);
84 memcpy(value->value, new_values, sizeof(BASE) * count);
  /external/chromium/base/
string_number_conversions.cc 5 #include "base/string_number_conversions.h"
12 #include "base/logging.h"
13 #include "base/third_party/dmg_fp/dmg_fp.h"
14 #include "base/utf_string_conversions.h"
16 namespace base { namespace
99 // Utility to convert a character to a digit in a given base
100 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit {
104 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true> {
107 if (c >= '0' && c < '0' + BASE) {
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateMachine.java 204 /* The base for wifi message types */
205 static final int BASE = Protocol.BASE_WIFI;
207 static final int CMD_LOAD_DRIVER = BASE + 1;
209 static final int CMD_UNLOAD_DRIVER = BASE + 2;
211 static final int CMD_LOAD_DRIVER_SUCCESS = BASE + 3;
213 static final int CMD_LOAD_DRIVER_FAILURE = BASE + 4;
215 static final int CMD_UNLOAD_DRIVER_SUCCESS = BASE + 5;
217 static final int CMD_UNLOAD_DRIVER_FAILURE = BASE + 6;
220 static final int CMD_START_SUPPLICANT = BASE + 11;
222 static final int CMD_STOP_SUPPLICANT = BASE + 12
    [all...]
WifiWatchdogStateMachine.java 109 private static final int BASE = Protocol.BASE_WIFI_WATCHDOG;
114 private static final int EVENT_WATCHDOG_TOGGLED = BASE + 1;
120 private static final int EVENT_NETWORK_STATE_CHANGE = BASE + 2;
125 private static final int EVENT_RSSI_CHANGE = BASE + 3;
126 private static final int EVENT_SCAN_RESULTS_AVAILABLE = BASE + 4;
127 private static final int EVENT_WIFI_RADIO_STATE_CHANGE = BASE + 5;
128 private static final int EVENT_WATCHDOG_SETTINGS_CHANGE = BASE + 6;
130 private static final int MESSAGE_HANDLE_WALLED_GARDEN = BASE + 100;
131 private static final int MESSAGE_HANDLE_BAD_AP = BASE + 101;
135 private static final int MESSAGE_SINGLE_DNS_CHECK = BASE + 102
    [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;
  /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/clang/lib/AST/
DumpXML.cpp 70 #define DECL(DERIVED, BASE) \
82 #define DECL(DERIVED, BASE) \
84 DISPATCH(dispatch##BASE##Attrs, BASE); \
89 DISPATCH(dispatch##BASE##Children, BASE); \
94 DISPATCH(dispatch##BASE##AsContext, BASE); \
125 #define TYPE(DERIVED, BASE) \
131 #define ABSTRACT_TYPE(DERIVED, BASE)
    [all...]
DeclBase.cpp 38 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
47 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
66 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED;
81 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s;
87 #define DECL(DERIVED, BASE) \
104 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break;
562 #define DECL(NAME, BASE)
569 #define DECL(NAME, BASE)
581 #define DECL(NAME, BASE)
588 #define DECL(NAME, BASE)
    [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...]
  /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/core/java/android/os/
Build.java 139 public static final int BASE = 1;
  /frameworks/base/libs/ui/
GraphicBuffer.cpp 40 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
53 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
68 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
81 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
  /external/grub/netboot/
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)
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/clang/include/clang/AST/
RecursiveASTVisitor.h 84 /// 3. given a (node, class) combination, where 'class' is some base
302 #define ABSTRACT_TYPE(CLASS, BASE)
303 #define TYPE(CLASS, BASE) \
311 #define TYPE(CLASS, BASE) \
313 TRY_TO(WalkUpFrom##BASE(T)); \
324 #define ABSTRACT_TYPELOC(CLASS, BASE)
325 #define TYPELOC(CLASS, BASE) \
345 // Note that BASE includes trailing 'Type' which CLASS doesn't.
346 #define TYPE(CLASS, BASE) \
348 TRY_TO(WalkUpFrom##BASE##Loc(TL));
    [all...]
DeclBase.h 1 //===-- DeclBase.h - Base Classes for representing declarations -*- C++ -*-===//
81 #define DECL(DERIVED, BASE) DERIVED,
83 #define DECL_RANGE(BASE, START, END) \
84 first##BASE = START, last##BASE = END,
85 #define LAST_DECL_RANGE(BASE, START, END) \
86 first##BASE = START, last##BASE = END
800 /// DeclContext - This is used only as base class of specific decl types that
    [all...]
  /external/elfutils/libebl/
eblcorenote.c 83 NEW_AT (BASE);
  /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,
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java 119 private static final int BASE = Protocol.BASE_WIFI_P2P_SERVICE;
122 public static final int P2P_ENABLE_PENDING = BASE + 1;
124 public static final int WIFI_ENABLE_PROCEED = BASE + 2;
127 public static final int GROUP_NEGOTIATION_TIMED_OUT = BASE + 3;
130 private static final int WIFI_DISABLE_USER_ACCEPT = BASE + 4;
132 private static final int WIFI_DISABLE_USER_REJECT = BASE + 5;
135 private static final int GROUP_NEGOTIATION_USER_ACCEPT = BASE + 6;
137 private static final int GROUP_NEGOTIATION_USER_REJECT = BASE + 7;
140 private static final int GROUP_INVITATION_USER_ACCEPT = BASE + 8;
142 private static final int GROUP_INVITATION_USER_REJECT = BASE + 9
    [all...]

Completed in 1731 milliseconds

12 3 4