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

1 2 3 4 5 6 7 8

  /external/autotest/client/common_lib/
enum.py 16 >>> e.choices()
53 def choices(self): member in class:Enum
54 'Return choice list suitable for Django model choices.'
host_protections.py 43 choices = Protection.choices() variable
  /external/autotest/frontend/client/src/autotest/common/table/
BooleanFilter.java 7 private static final String[] choices = {"Yes", "No"}; field in class:BooleanFilter
11 setChoices(choices);
  /libcore/ojluni/src/main/java/java/sql/
DriverPropertyInfo.java 40 * name and value. The <code>description</code> and <code>choices</code>
83 public String[] choices = null; field in class:DriverPropertyInfo
  /external/lisa/experiments/
run_binder_throughput.py 74 choices=["cs", "payload"], variable
  /external/lisa/tools/analysis/
run_binder_transaction_analysis.py 86 choices=["queue", "buffer", "alloc"], variable
run_binder_throughput_analysis.py 125 choices=["cs", "payload"], variable
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoActionPopup.java 45 /** If set, show choices to take a picture with the camera, or pick one from the gallery. */
48 * If set, modifies the wording in the choices for TAKE_OR_PICK_PHOTO
74 // Build choices, depending on the current mode. We assume this Dialog is never called
75 // if there are NO choices (e.g. a read-only picture is already super-primary)
76 final ArrayList<ChoiceListItem> choices = new ArrayList<ChoiceListItem>(4); local
79 choices.add(new ChoiceListItem(ChoiceListItem.ID_REMOVE,
90 choices.add(new ChoiceListItem(ChoiceListItem.ID_TAKE_PHOTO, takePhotoString));
92 choices.add(new ChoiceListItem(ChoiceListItem.ID_PICK_PHOTO, pickPhotoString));
94 return choices;
99 final ArrayList<ChoiceListItem> choices = getChoices(context, mode) local
    [all...]
PhotoSourceDialogFragment.java 67 final ArrayList<ChoiceListItem> choices = local
71 final CharSequence[] items = new CharSequence[choices.size()];
73 items[i] = choices.get(i).toString();
79 final ChoiceListItem choice = choices.get(which);
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsEnum.java 41 @Parameter(names = "-choices", variableArity = true)
42 public List<ChoiceType> choices = new ArrayList<ChoiceType>(); field in class:ArgsEnum
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 59 String[] choices = info[0].choices; local
60 assertNull(choices);
  /prebuilts/go/darwin-x86/test/chan/
select5.go 438 var choices []choice var
446 if cp >= len(choices) {
448 choices = append(choices, choice{0, n})
449 cp = len(choices)
453 if n != choices[cp].n {
454 panic("inconsistent choices")
456 i := choices[cp].i
469 cp = len(choices) - 1
470 for cp >= 0 && choices[cp].i == choices[cp].n-1
    [all...]
  /prebuilts/go/linux-x86/test/chan/
select5.go 438 var choices []choice var
446 if cp >= len(choices) {
448 choices = append(choices, choice{0, n})
449 cp = len(choices)
453 if n != choices[cp].n {
454 panic("inconsistent choices")
456 i := choices[cp].i
469 cp = len(choices) - 1
470 for cp >= 0 && choices[cp].i == choices[cp].n-1
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/setup/
ConnectionTypeFragment.java 84 String[] choices = getResources().getStringArray(R.array.ut_connection_choices); local
85 int length = choices.length - 1;
91 .title(choices[i])
ScanResultFragment.java 103 String[] choices; local
106 choices = getResources().getStringArray(R.array.ut_result_found_choices);
109 choices = getResources().getStringArray(R.array.ut_result_not_found_choices);
112 for (int i = 0; i < choices.length; ++i) {
117 .title(choices[i])
123 .title(choices[i])
WelcomeFragment.java 106 String[] choices = local
112 for (int i = 0; i < choices.length - 1; ++i) {
114 new GuidedAction.Builder(getActivity()).id(i).title(choices[i]).build());
119 .title(choices[choices.length - 1])
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 60 List<Pair<String, String>> choices = new ArrayList<Pair<String, String>>(); local
74 choices.add(Pair.of(version.getCodename(), version.getCodename()));
76 choices.add(Pair.of(Integer.toString(apiLevel), target.getFullName()));
82 choices.add(Pair.of(Integer.toString(api), name));
85 addMatchingProposals(proposals, choices.toArray(), offset, node, wordPrefix,
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
AutofillHints.java 59 List<String> choices = fakeData.strictExampleSet.strings; local
60 text = choices.get(seed % choices.size());
  /external/autotest/frontend/afe/
rdb_model_extensions.py 191 choices=Status.choices(), variable in class:AbstractHostModel
196 choices=host_protections.choices, variable in class:AbstractHostModel
  /external/autotest/frontend/server/
models.py 34 choices=STATUS.choices()) variable in class:Server
109 role = dbmodels.CharField(max_length=128, choices=ROLE.choices())
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationPrimitiveDiscardTests.cpp 106 float choices[6][numChoices]; local
111 choices[levelNdx][choiceNdx] = (choiceNdx == 0 || !useLessThanOneInnerLevels) ? baseTessLevels[levelNdx] : invalidTessLevelChoices[choiceNdx-1];
127 result.push_back(choices[j][i[j]]);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
TransliteratorInputMethod.java 74 private static JComboBox choices; field in class:TransliteratorInputMethod
150 choices = new JComboBox(types.toArray());
152 choices.setEditable(false);
153 choices.setSelectedIndex(0);
154 choices.setRenderer(new NameRenderer());
155 choices.setActionCommand("transliterator");
157 choices.addActionListener(new ActionListener() {
165 sw.add(choices);
260 choices.setSelectedIndex(selectedIndex == -1 ? choices
    [all...]
  /cts/tests/app/src/android/app/cts/
RemoteInputTest.java 61 CharSequence[] choices = new CharSequence[2]; local
62 choices[0] = "first";
63 choices[1] = "second";
66 .setChoices(choices)
205 CharSequence[] choices = new CharSequence[2]; local
206 choices[0] = "first";
207 choices[1] = "second";
210 .setChoices(choices)
  /external/libcups/cups/
ppd-emit.c 52 * The choices array should be freed using @code free@ when you are
59 ppd_choice_t ***choices) /* O - Pointers to choices */
61 return (ppdCollect2(ppd, section, 0.0, choices));
69 * The choices array should be freed using @code free@ when you are
79 ppd_choice_t ***choices) /* O - Pointers to choices */
84 int count; /* Number of choices collected */
85 ppd_choice_t **collect; /* Collected choices */
89 DEBUG_printf(("ppdCollect2(ppd=%p, section=%d, min_order=%f, choices=%p)"
608 ppd_choice_t **choices; \/* Choices *\/ local
    [all...]
  /external/python/cpython3/Lib/
random.py 54 "getstate","setstate", "getrandbits", "choices",
340 def choices(self, population, weights=None, *, cum_weights=None, k=1): member in class:Random
752 choices = _inst.choices variable

Completed in 798 milliseconds

1 2 3 4 5 6 7 8