HomeSort by relevance Sort by last modified time
    Searched refs:states (Results 51 - 75 of 435) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothMap.aidl 33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
IBluetoothHealth.aidl 40 List<BluetoothDevice> getHealthDevicesMatchingConnectionStates(in int[] states);
IBluetoothInputDevice.aidl 31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
  /external/chromium_org/third_party/icu/source/tools/makeconv/
makeconv.c 495 staticData->maxBytesPerChar=(int8_t)data->ucm->states.maxCharLength;
496 staticData->minBytesPerChar=(int8_t)data->ucm->states.minCharLength;
497 staticData->conversionType=data->ucm->states.conversionType;
545 if(data->ucm->states.outputType<0) {
546 data->ucm->states.outputType=(int8_t)data->ucm->states.maxCharLength-1;
589 baseStates=&data->ucm->states;
640 UCMStates *states, *baseStates; local
654 states=&data->ucm->states;
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
makeconv.c 495 staticData->maxBytesPerChar=(int8_t)data->ucm->states.maxCharLength;
496 staticData->minBytesPerChar=(int8_t)data->ucm->states.minCharLength;
497 staticData->conversionType=data->ucm->states.conversionType;
545 if(data->ucm->states.outputType<0) {
546 data->ucm->states.outputType=(int8_t)data->ucm->states.maxCharLength-1;
589 baseStates=&data->ucm->states;
640 UCMStates *states, *baseStates; local
654 states=&data->ucm->states;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
Display.java 44 String[] states = new String[3]; local
46 states[0] = r.getString(R.string.small_font);
47 states[1] = r.getString(R.string.medium_font);
48 states[2] = r.getString(R.string.large_font);
50 android.R.layout.simple_spinner_item, states);
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 978 FileState states[4];
982 states[0].modTime_sec = 0xfedcba98;
983 states[0].modTime_nsec = 0xdeadbeef;
984 states[0].mode = 0777; // decimal 511, hex 0x000001ff
985 states[0].size = 0xababbcbc;
986 states[0].crc32 = 0x12345678;
987 states[0].nameLen = -12;
988 r.s = states[0];
992 states[1].modTime_sec = 0x93400031;
993 states[1].modTime_nsec = 0xdeadbeef
    [all...]
  /external/bison/src/
ielr.c 87 * - The from states of gotos \c i and \c j are the same.
93 * goto \c j and it's an internal edge because the from states are the
112 for (rulep = derives[states[to_state[i]]->accessing_symbol
203 if (states[i]->nitems > max_nitems)
204 max_nitems = states[i]->nitems;
211 size_t nitems = states[from_state[i]]->nitems;
212 item_number *items = states[from_state[i]]->items;
220 == states[to_state[i]]->accessing_symbol
261 transitions *trans = states[to_state[i]]->transitions;
311 for (j = 0; j < states[i]->transitions->num; ++j
    [all...]
lalr.c 84 transitions *sp = states[s]->transitions;
118 transitions *sp = states[s]->transitions;
124 to_state[k] = sp->states[i]->number;
172 transitions *sp = states[stateno]->transitions;
230 symbol_number symbol1 = states[to_state[i]]->accessing_symbol;
238 state *s = states[from_state[i]];
384 state_lookahead_tokens_count (states[i],
397 state_lookahead_tokens_count (states[i],
401 states[i]->reductions->lookahead_tokens = pLA;
420 reductions *reds = states[i]->reductions
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 363 String states[] = (String[])ar.result; local
370 if (states.length > 9) {
372 if (states[4] != null) {
373 baseStationId = Integer.parseInt(states[4]);
375 if (states[5] != null) {
376 baseStationLatitude = Integer.parseInt(states[5]);
378 if (states[6] != null) {
379 baseStationLongitude = Integer.parseInt(states[6]);
386 if (states[8] != null) {
387 systemId = Integer.parseInt(states[8])
596 String states[]; local
    [all...]
CdmaLteServiceStateTracker.java 141 String states[] = (String[])ar.result; local
143 log("handlePollStateResultMessage: EVENT_POLL_STATE_GPRS states.length=" +
144 states.length + " states=" + states);
149 if (states.length > 0) {
151 regState = Integer.parseInt(states[0]);
153 // states[3] (if present) is the current radio technology
154 if (states.length >= 4 && states[3] != null)
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-modifier-key.js 8 * The possible states of the key.
23 var states = {};
125 if (!(key in states))
126 states[key] = KEY_STATES.UNLOCKED;
127 return states[key];
132 states[key] = value;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Core.py 95 states = {
102 if state not in states:
105 return states[state]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_vbuf.h 73 const struct pipe_vertex_element *states);
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.h 73 const struct pipe_vertex_element *states);
  /frameworks/base/core/java/android/view/inputmethod/
InputConnection.java     [all...]
InputConnectionWrapper.java 117 public boolean clearMetaKeyStates(int states) {
118 return mTarget.clearMetaKeyStates(states);
  /ndk/sources/host-tools/ndk-stack/regex/
regexec.c 55 /* macros for manipulating states, small version */
56 #define states long macro
57 #define states1 states /* for later use in regexec() decision */
83 #undef states macro
103 /* macros for manipulating states, large version */
104 #define states char * macro
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkService.java 136 List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
138 return mStateMachine.getDevicesMatchingConnectionStates(states);
195 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
198 return service.getDevicesMatchingConnectionStates(states);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 120 states, first = dfa
121 arcs = states[state]
132 while states[state] == [(0, state)]:
138 states, first = dfa
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 120 states, first = dfa
121 arcs = states[state]
132 while states[state] == [(0, state)]:
138 states, first = dfa
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 84 Vector<sp<BufferedTextOutput::BufferState> > states; member in struct:android::BufferedTextOutput::ThreadState
266 while (ts->states.size() <= (size_t)mIndex) ts->states.add(NULL);
267 BufferState* bs = ts->states[mIndex].get();
270 ts->states.editItemAt(mIndex) = new BufferState(mIndex);
271 bs = ts->states[mIndex].get();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewState.java 154 final Bundle states = new Bundle(); local
157 states.putParcelable(uri.toString(), mvs);
159 dest.writeBundle(states);
164 final Bundle states = source.readBundle(loader); local
165 for (String key : states.keySet()) {
166 final MessageViewState state = states.getParcelable(key);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 348 String states[] = (String[])ar.result; local
351 if (states.length >= 3) {
353 if (states[1] != null && states[1].length() > 0) {
354 lac = Integer.parseInt(states[1], 16);
356 if (states[2] != null && states[2].length() > 0) {
357 cid = Integer.parseInt(states[2], 16);
662 String states[]; local
693 states = (String[])ar.result
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucm.h 103 UCMStates states; member in struct:UCMFile
175 * Check the validity of mappings against a base table's states;
237 ucm_addState(UCMStates *states, const char *s);
240 ucm_processStates(UCMStates *states, UBool ignoreSISOCheck);
243 ucm_countChars(UCMStates *states,
264 /* finalize and optimize states after the toUnicode mappings are processed */
266 ucm_optimizeStates(UCMStates *states,

Completed in 3594 milliseconds

1 23 4 5 6 7 8 91011>>