Searched refs:choices (Results 1 - 25 of 185) sorted by relevance

12345678

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DScanner.java35 * @param choices
43 boolean checkToken(Token.ID... choices); argument
/external/autotest/client/common_lib/
H A Dhost_protections.py43 choices = Protection.choices() variable
H A Denum.py16 >>> e.choices()
53 def choices(self): member in class:Enum
54 'Return choice list suitable for Django model choices.'
/external/libcups/cups/
H A Dppd-emit.c52 * 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
57 ppdCollect(ppd_file_t *ppd, ppd_section_t section, ppd_choice_t ***choices) argument
76 ppdCollect2(ppd_file_t *ppd, ppd_section_t section, float min_order, ppd_choice_t ***choices) argument
608 ppd_choice_t **choices; /* Choices */ local
[all...]
/external/autotest/frontend/client/src/autotest/common/table/
H A DBooleanFilter.java7 private static final String[] choices = {"Yes", "No"}; field in class:BooleanFilter
11 setChoices(choices);
H A DMultipleListFilter.java39 public void setChoices(String[] choices) { argument
40 super.setChoices(choices);
H A DListFilter.java78 public void setChoices(String[] choices) { argument
86 for (int i = 0; i < choices.length; i++) {
87 select.addItem(choices[i]);
/external/python/cpython2/Demo/tkinter/matt/
H A Dmenu-all-types-of-entries.py110 Cascade_button.menu.choices = Menu(Cascade_button.menu)
113 Cascade_button.menu.choices.weirdones = Menu(Cascade_button.menu.choices)
116 Cascade_button.menu.choices.weirdones.add_command(label='avacado')
117 Cascade_button.menu.choices.weirdones.add_command(label='belgian endive')
118 Cascade_button.menu.choices.weirdones.add_command(label='beefaroni')
121 Cascade_button.menu.choices.add_command(label='Chocolate')
122 Cascade_button.menu.choices.add_command(label='Vanilla')
123 Cascade_button.menu.choices.add_command(label='TuttiFruiti')
124 Cascade_button.menu.choices
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDriverPropertyInfoTest.java75 assertTrue(Arrays.equals(testChoices, aDriverPropertyInfo.choices));
81 aDriverPropertyInfo.choices = updateChoices;
87 assertTrue(Arrays.equals(updateChoices, aDriverPropertyInfo.choices));
/external/python/cpython3/Lib/test/
H A Dtest_random.py147 choices = self.gen.choices
155 choices(data, k=5),
156 choices(data, range(4), k=5),
157 choices(k=5, population=data, weights=range(4)),
158 choices(k=5, population=data, cum_weights=range(4)),
166 choices(2)
168 self.assertEqual(choices(data, k=0), []) # k == 0
169 self.assertEqual(choices(data, k=-1), []) # negative k behaves like ``[0] * -1``
171 choices(dat
[all...]
/external/autotest/site_utils/tester_feedback/
H A Dinput_handlers.py16 """Returns a pair of supplement strings representing input choices.
19 choices, and a corresponding concise descriptor of available
20 input choices with optional default.
32 """Returns an input choices descriptor and a default (if any)."""
37 """Returns a detailed description (string) of input choices."""
109 def __init__(self, choices, default=None):
112 @param choices: An iterable of input choices.
115 max_idx = len(choices)
118 self._choices = choices
[all...]
H A Daudio_query_delegate_impl.py51 choices = []
55 choices.append(tool)
57 choices.append('Manual playback')
65 input_handlers.MultipleChoiceInputHandler(choices, default=1),
68 if idx < len(choices) - 1:
/external/brotli/python/
H A Dbro.py89 choices=[0, 1, 2],
98 choices=list(range(0, 12)),
106 choices=list(range(10, 25)),
113 choices=[0] + list(range(16, 25)),
/external/chromium-trace/catapult/devil/devil/utils/
H A Dupdate_mapping.py31 action='append', choices=['plugable_7port',
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dupdate_mapping.py31 action='append', choices=['plugable_7port',
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
H A DTransliteratorInputMethod.java74 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...]
/external/autotest/frontend/afe/
H A Drdb_model_extensions.py191 choices=Status.choices(), variable in class:AbstractHostModel
196 choices=host_protections.choices, variable in class:AbstractHostModel
/external/autotest/frontend/server/
H A Dmodels.py34 choices=STATUS.choices()) variable in class:Server
109 role = dbmodels.CharField(max_length=128, choices=ROLE.choices())
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgsEnum.java41 @Parameter(names = "-choices", variableArity = true)
42 public List<ChoiceType> choices = new ArrayList<ChoiceType>(); field in class:ArgsEnum
/external/autotest/client/cros/video/
H A Dcollect_golden_images.py44 choices=['mp4', 'webm'],
48 choices=['480p', '720p', '1080p', '720p_1080p'],
/external/deqp/scripts/
H A Dlaunchcontrol_build.py81 choices=BUILD_CONFIGS.keys(),
87 choices=["Debug", "Release"],
/external/python/cpython2/Demo/tkinter/guido/
H A Dtkman.py60 self.choices = []
138 self.choices = []
142 if choice not in self.choices:
143 self.choices.append(choice)
144 self.choices.sort()
148 self.choices[len(self.choices):] = list
149 self.choices.sort()
176 self.choices)
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DHtmlPolicyBuilderFuzzerTest.java162 private static String pick(Random rnd, String[] choices) { argument
163 return choices[rnd.nextInt(choices.length)];
/external/libcxx/
H A Drun_tests.py54 '--compiler', choices=('clang', 'gcc'), default='clang')
56 '--bitness', choices=(32, 64), type=int, default=32)
/external/autotest/client/site_tests/firmware_TouchMTB/tools/
H A Dmtplot_play.py84 choices=['touchpad', 'touchscreen'],

Completed in 830 milliseconds

12345678