HomeSort by relevance Sort by last modified time
    Searched defs:choice (Results 1 - 20 of 20) sorted by null

  /frameworks/base/libs/rs/
rsg_generator.c 252 char choice = fgetc(input); local
255 if (choice < '0' || choice > '3') {
256 fprintf(stderr, "Uknown command: \'%c\'\n", choice);
266 switch(choice) {
  /external/bluetooth/glib/gio/
gmountoperation.c 72 int choice; member in struct:_GMountOperationPrivate
169 g_value_set_int (value, priv->choice);
272 * @choices: an array of strings for each possible choice.
402 * GMountOperation:choice:
404 * The index of the user's choice when a question is asked during the
409 g_param_spec_int ("choice",
410 P_("Choice"),
411 P_("The users choice"),
616 * Gets a choice from the mount operation.
618 * Returns: an integer containing an index of the user's choice from
    [all...]
  /external/skia/src/images/
SkImageDecoder_libico.cpp 102 int choice; local
107 choice = 0;
140 choice = chooser->choose();
144 if (choice >= count || choice < 0)
150 int w = readByte(buf, 6 + choice*16);
151 int h = readByte(buf, 7 + choice*16);
152 int colorCount = readByte(buf, 8 + choice*16);
153 //int reservedToo = readByte(buf, 9 + choice*16); //0
154 //int planes = read2Bytes(buf, 10 + choice*16); //1 - but often
    [all...]
  /libcore/luni/src/main/java/java/text/
ChoiceFormat.java 29 * numbers. The choice is specified with an ascending list of doubles, where
219 ChoiceFormat choice = (ChoiceFormat) object; local
220 return Arrays.equals(choiceLimits, choice.choiceLimits)
221 && Arrays.equals(choiceFormats, choice.choiceFormats);
  /sdk/draw9patch/src/com/android/draw9patch/ui/
MainFrame.java 106 int choice = chooser.showOpenDialog(this); local
107 if (choice == JFileChooser.APPROVE_OPTION) {
ImageEditorPanel.java 356 int choice = chooser.showSaveDialog(this); local
357 if (choice == JFileChooser.APPROVE_OPTION) {
    [all...]
  /system/media/opensles/tests/sandbox/
monkey.c 273 unsigned choice = (rand() & 0x7FFFFFFF) % totalProbability; local
279 if (totalProbability <= choice)
  /external/chromium/third_party/icu/source/common/
uniset_props.cpp 1050 UCharNameChoice choice = (p == UCHAR_NAME) ? local
    [all...]
  /external/speex/libspeex/
nb_celp.c 456 int choice=0; local
471 choice = mode;
476 mode=choice;
    [all...]
  /external/icu4c/common/
uniset_props.cpp 1115 UCharNameChoice choice = (p == UCHAR_NAME) ? local
    [all...]
  /external/chromium/net/third_party/nss/ssl/
ssl3prot.h 102 SSL3ChangeCipherSpecChoice choice; member in struct:__anon2575
  /external/chromium/third_party/icu/source/i18n/
ucurr.cpp 497 int32_t choice = (int32_t) nameStyle; local
498 if (choice < 0 || choice > 1) {
535 s = ures_getStringByIndex(rb, choice, len, &ec2);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cucdtst.c 2681 int32_t p, v, choice=0, rev; local
    [all...]
  /external/icu4c/i18n/
ucurr.cpp 489 int32_t choice = (int32_t) nameStyle; local
490 if (choice < 0 || choice > 1) {
527 s = ures_getStringByIndex(rb, choice, len, &ec2);
    [all...]
decNumber.c 6115 const decNumber *choice; local
    [all...]
  /external/icu4c/test/cintltst/
cucdtst.c 2727 int32_t p, v, choice=0, rev; local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 207 int choice = chooser.showOpenDialog(this); local
208 if (choice == JFileChooser.APPROVE_OPTION) {
Workspace.java 1014 int choice = chooser.showSaveDialog(sceneView); local
1055 int choice = chooser.showSaveDialog(sceneView); local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 826 String choice = mDecInfo.getCandidate(candId); local
827 if (null != choice) {
828 commitResultText(choice);
848 // choiceId >= 0 means user finishes a choice selection.
    [all...]
  /external/v8/src/
jsregexp.cc 490 // * Choice nodes
523 // * Choice nodes are implemented as follows:
524 // For each choice except the last {
527 // <generate code to test for choice>
531 // <generate code to test for last choice>
550 // by the choice nodes, whereas the registers are saved and restored by
567 // * Choice nodes have 1-character lookahead.
568 // A choice node looks at the following character and eliminates some of
3137 ChoiceNode* choice() { return choice_; } function in class:v8::internal::TableEntryBodyPrinter
    [all...]

Completed in 922 milliseconds