Home
last modified time | relevance | path

Searched defs:choices (Results 1 – 25 of 64) sorted by relevance

123

/external/angle/doc/
DDevSetupAndroid.md124 ### ANGLE for a *single* OpenGL ES app
131 ### ANGLE for *multiple* OpenGL ES apps
141 ### ANGLE for *all* OpenGL ES apps
/external/mesa3d/bin/
Dmeson-options.py44 choices = '[' + ', '.join(["'" + v + "'" for v in value.choices]) + ']' variable
50 choices = '[' + ', '.join(["'" + v + "'" for v in value.choices]) + ']' variable
/external/python/parse_type/parse_type/
Dbuilder.py120 def _normalize_choices(choices, transform): argument
129 def make_choice(cls, choices, transform=None, strict=None): argument
158 def make_choice2(cls, choices, transform=None, strict=None): argument
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DVettingParameters.java7 final EnumSet<NotificationCategory> choices; field in VettingParameters
21 …public VettingParameters(EnumSet<NotificationCategory> choices, CLDRLocale locale, Level coverageL… in VettingParameters()
DVettingViewer.java383 private final EnumSet<NotificationCategory> choices; field in VettingViewer.FileInfo
386 …private FileInfo(String localeId, Level level, EnumSet<NotificationCategory> choices, T organizati… in FileInfo()
693 …blic void generatePriorityItemsSummary(Appendable output, EnumSet<NotificationCategory> choices, T… in generatePriorityItemsSummary()
743 private final EnumSet<NotificationCategory> choices; field in VettingViewer.WriteContext
751 …private WriteContext(Set<Entry<String, String>> entrySet, EnumSet<NotificationCategory> choices, T… in WriteContext()
899 EnumSet<NotificationCategory> choices = context.choices; in computeOne() local
957EnumSet<NotificationCategory> choices, T organization) throws IOException, ExecutionException { in writeSummaryTable()
1082 …private void writeSummaryRow(Appendable output, EnumSet<NotificationCategory> choices, Counter<Not… in writeSummaryRow()
/external/python/cpython2/Lib/
Dtokenize.py45 def group(*choices): return '(' + '|'.join(choices) + ')'
46 def any(*choices): return group(*choices) + '*'
47 def maybe(*choices): return group(*choices) + '?'
/external/rust/crates/rand/src/seq/
Dmod.rs1242 let choices = [('a', 2), ('b', 1), ('c', 0)]; in test_multiple_weighted_edge_cases() localVariable
1254 let choices = [('a', 0), ('b', 0), ('c', 0)]; in test_multiple_weighted_edge_cases() localVariable
1261 let choices = [('a', -1), ('b', 1), ('c', 1)]; in test_multiple_weighted_edge_cases() localVariable
1270 let choices = []; in test_multiple_weighted_edge_cases() localVariable
1276 let choices = [('a', core::f64::NAN), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1285 let choices = [('a', core::f64::INFINITY), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1296 let choices = [('a', core::f64::NEG_INFINITY), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1305 let choices = [('a', -0.0), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1323 let choices = [('a', 2), ('b', 1), ('c', 1)]; in test_multiple_weighted_distributions() localVariable
/external/autotest/client/common_lib/
Dhost_protections.py44 choices = Protection.choices() variable
Dautotest_enum.py61 def choices(self): member in AutotestEnum
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
DScanner.java43 boolean checkToken(Token.ID... choices); in checkToken()
/external/python/cpython3/Lib/
Dtokenize.py59 def group(*choices): return '(' + '|'.join(choices) + ')'
60 def any(*choices): return group(*choices) + '*'
61 def maybe(*choices): return group(*choices) + '?'
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtokenize.py48 def group(*choices): return '(' + '|'.join(choices) + ')'
49 def any(*choices): return group(*choices) + '*'
50 def maybe(*choices): return group(*choices) + '?'
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py48 def group(*choices): return '(' + '|'.join(choices) + ')'
49 def any(*choices): return group(*choices) + '*'
50 def maybe(*choices): return group(*choices) + '?'
/external/libcups/cups/
Dppd-emit.c55 ppd_choice_t ***choices) /* O - Pointers to choices */ in ppdCollect()
75 ppd_choice_t ***choices) /* O - Pointers to choices */ in ppdCollect2()
610 ppd_choice_t **choices; /* Choices */ in ppdEmitString() local
/external/autotest/frontend/client/src/autotest/common/table/
DBooleanFilter.java7 private static final String[] choices = {"Yes", "No"}; field in BooleanFilter
DMultipleListFilter.java39 public void setChoices(String[] choices) { in setChoices()
/external/rust/crates/pest_derive/tests/
Dreporting.rs24 fn choices() { in choices() function
/external/rust/crates/grpcio-sys/grpc/third_party/upb/benchmarks/
Dgen_synthetic_protos.py47 def choices(k): function
/external/jcommander/src/test/java/com/beust/jcommander/args/
DArgsEnum.java42 public List<ChoiceType> choices = new ArrayList<>(); field in ArgsEnum
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp50 std::vector<uint32_t> choices; in Apply() local
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp50 std::vector<uint32_t> choices; in Apply() local
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp50 std::vector<uint32_t> choices; in Apply() local
/external/cronet/testing/clusterfuzz/common/
Dutils.py26 def WeightedChoice(choices): # pylint: disable=inconsistent-return-statements argument
/external/python/pyyaml/tests/lib/
Dcanonical.py20 def check_token(self, *choices):
302 def check_event(self, *choices):
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DConnectorImpl.java400 private final List<String> choices; field in ConnectorImpl.SelectedArgumentImpl
404 boolean mustSpecify, List<String> choices) { in SelectedArgumentImpl()
413 public List<String> choices() { in choices() method in ConnectorImpl.SelectedArgumentImpl

123