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

12 3 4 5

  /frameworks/base/libs/utils/
BackupHelpers.cpp 698 FileState states[4];
702 states[0].modTime_sec = 0xfedcba98;
703 states[0].modTime_nsec = 0xdeadbeef;
704 states[0].mode = 0777; // decimal 511, hex 0x000001ff
705 states[0].size = 0xababbcbc;
706 states[0].crc32 = 0x12345678;
707 states[0].nameLen = -12;
708 r.s = states[0];
712 states[1].modTime_sec = 0x93400031;
713 states[1].modTime_nsec = 0xdeadbeef
    [all...]
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/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
InputModeSwitcher.java 207 * Maximum toggle states for a soft keyboard.
365 * Used to store all other toggle states for the current input mode.
370 * Number of states to toggle.
738 int states[] = mToggleStates.mKeyStates; local
748 // Chinese and Chinese symbol are always the default states,
754 states[statesNum] = mToggleStateSmiley;
762 states[statesNum] = mToggleStateEnLower;
765 states[statesNum] = mToggleStateEnUpper;
769 states[statesNum] = mToggleStateEnSym1;
772 states[statesNum] = mToggleStateEnSym2
    [all...]
  /bionic/libc/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
  /frameworks/base/core/java/android/view/inputmethod/
InputConnection.java 311 * Clear the given meta key pressed states in the given input connection.
313 * @param states The states to be cleared, may be one or more bits as
319 public boolean clearMetaKeyStates(int states);
InputConnectionWrapper.java 114 public boolean clearMetaKeyStates(int states) {
115 return mTarget.clearMetaKeyStates(states);
  /external/bison/src/
conflicts.c 302 | and flag as inconsistent the states that still have conflicts. |
319 set_conflicts (states[i], errors);
321 /* For uniformity of the code, make sure all the states have a valid
323 if (!states[i]->errs)
324 states[i]->errs = errs_new (0, 0);
411 | Output the detailed description of states with conflicts. |
421 state *s = states[i];
452 count += count_sr_conflicts (states[i]);
453 count += count_rr_conflicts (states[i], false);
484 src_total += count_sr_conflicts (states[i])
    [all...]
state.c 46 transitions *res = xmalloc (offsetof (transitions, states) + states_size);
48 memcpy (res->states, the_states, states_size);
66 return shifts->states[j];
116 | States. |
254 /* Initial capacity of states hash table. */
259 /* Two states are equal if they have the same core items. */
300 | Create the states hash table. |
315 | Free the states hash table, not the states. |
355 /* All the decorated states, indexed by the state number. *
356 state **states = NULL; variable
    [all...]
  /frameworks/base/libs/surfaceflinger_client/
ISurfaceComposerClient.cpp 117 virtual status_t setState(int32_t count, const layer_state_t* states)
123 states[i].write(data);
196 layer_state_t* states = new layer_state_t[count]; local
198 states[i].read(data);
199 status_t err = setState(count, states);
200 delete [] states;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 403 String states[] = (String[])ar.result; local
406 if (states.length >= 3) {
408 if (states[1] != null && states[1].length() > 0) {
409 lac = Integer.parseInt(states[1], 16);
411 if (states[2] != null && states[2].length() > 0) {
412 cid = Integer.parseInt(states[2], 16);
622 String states[]; local
655 states = (String[])ar.result
    [all...]
  /external/chromium/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);
243 ucm_countChars(UCMStates *states,
264 /* finalize and optimize states after the toUnicode mappings are processed */
266 ucm_optimizeStates(UCMStates *states,
  /external/icu4c/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,
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 53 * states that a view must either be in or not be in and the color specifies the color associated
55 * An item with no state spec is considered to match any set of states and is generally useful as
76 * states to colors.
78 public ColorStateList(int[][] states, int[] colors) {
79 mStateSpecs = states;
82 if (states.length > 0) {
85 for (int i = 0; i < states.length; i++) {
86 if (states[i].length == 0) {
155 * Creates a new ColorStateList that has the same states and
264 * Return the color associated with the given set of {@link android.view.View} states
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
StateListDrawable.java 146 int[] states = new int[numAttrs]; local
153 states[j++] = attrs.getAttributeBooleanValue(i, false)
158 states = StateSet.trimStateSet(states, j);
175 mStateListState.addStateSet(states, dr);
186 * Gets the number of states contained in this drawable.
188 * @return The number of states contained in this drawable.
  /external/chromium/third_party/icu/source/tools/makeconv/
genmbcs.c 38 /* toUnicode (state table in ucm->states) */
197 sum=mbcsData->ucm->states.countToUCodeUnits;
215 maxCharLength=mbcsData->ucm->states.maxCharLength;
375 if(mbcsData->ucm->states.countStates==0) {
381 if(length==2 && mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO) {
391 entry=mbcsData->ucm->states.stateTable[state][bytes[i++]];
452 mbcsData->ucm->states.stateTable[state][bytes[i-1]]=entry;
553 return (UBool)(1==ucm_countChars(&mbcsData->ucm->states, bytes, length));
687 maxCharLength=mbcsData->ucm->states.maxCharLength;
689 if( mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO &
1326 UCMStates *states; local
    [all...]
  /external/icu4c/tools/makeconv/
genmbcs.c 38 /* toUnicode (state table in ucm->states) */
197 sum=mbcsData->ucm->states.countToUCodeUnits;
215 maxCharLength=mbcsData->ucm->states.maxCharLength;
375 if(mbcsData->ucm->states.countStates==0) {
381 if(length==2 && mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO) {
391 entry=mbcsData->ucm->states.stateTable[state][bytes[i++]];
452 mbcsData->ucm->states.stateTable[state][bytes[i-1]]=entry;
553 return (UBool)(1==ucm_countChars(&mbcsData->ucm->states, bytes, length));
687 maxCharLength=mbcsData->ucm->states.maxCharLength;
689 if( mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO &
1326 UCMStates *states; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
block_switch.c 34 IIRFilter(const Word16 in, const Word32 coeff[], Word32 states[]);
339 static Word16 IIRFilter(const Word16 in, const Word32 coeff[], Word32 states[])
345 accu3 = accu1 - states[0];
346 accu2 = fixmul( coeff[0], states[1] );
349 states[0] = accu1;
350 states[1] = out;
  /external/libxml2/
relaxng.c 319 int nbState; /* the number of states */
372 xmlRelaxNGStatesPtr states; /* the accumulated state list */ member in struct:_xmlRelaxNGValidCtxt
374 xmlRelaxNGStatesPtr freeState; /* the pool of free valid states */
1023 xmlRngVErrMemory(ctxt, "allocating states\n");
1032 xmlRngVErrMemory(ctxt, "allocating states\n");
1042 * @states: the states container
9984 xmlRelaxNGStatesPtr states = NULL, res = NULL; local
10137 xmlRelaxNGStatesPtr states = NULL; local
10427 xmlRelaxNGStatesPtr states, res; local
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputContext.aidl 65 void clearMetaKeyStates(int states);
  /frameworks/base/core/java/com/android/internal/widget/
EditableInputConnection.java 58 public boolean clearMetaKeyStates(int states) {
64 kl.clearMetaKeyState(mTextView, content, states);
  /frameworks/base/include/surfaceflinger/
ISurfaceComposerClient.h 83 virtual status_t setState(int32_t count, const layer_state_t* states) = 0;
  /packages/apps/Contacts/src/com/android/contacts/
TextHighlightingAnimation.java 185 int[] states = ds.drawableState; local
186 if (states != null) {
187 int count = states.length;
189 switch (states[i]) {
  /frameworks/base/core/java/android/text/method/
MetaKeyKeyListener.java 293 public void clearMetaKeyState(View view, Editable content, int states) {
294 clearMetaKeyState(content, states);
297 public static void clearMetaKeyState(Editable content, int states) {
298 if ((states&META_SHIFT_ON) != 0) content.removeSpan(CAP);
299 if ((states&META_ALT_ON) != 0) content.removeSpan(ALT);
300 if ((states&META_SYM_ON) != 0) content.removeSpan(SYM);
301 if ((states&META_SELECTING) != 0) content.removeSpan(SELECTING);
  /external/freetype/src/psnames/
psmodule.c 254 FT_UInt *states )
264 if ( states[n] == 0 )
267 states[n] = 1;
279 FT_UInt *states )
289 states[n] = 2;
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]

Completed in 709 milliseconds

12 3 4 5