Home
last modified time | relevance | path

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

123

/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/llvm-project/llvm/utils/
Dabtest.py95 def check_sanity(choices, perform_test): argument
111 def check_sequentially(choices, perform_test): argument
126 def check_bisect(choices, perform_test): argument
/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/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
1262 let choices = [('a', -1), ('b', 1), ('c', 1)]; in test_multiple_weighted_edge_cases() localVariable
1271 let choices = []; in test_multiple_weighted_edge_cases() localVariable
1279 let choices = [('a', core::f64::NAN), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1288 let choices = [('a', core::f64::INFINITY), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1299 let choices = [('a', core::f64::NEG_INFINITY), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1308 let choices = [('a', -0.0), ('b', 1.0), ('c', 1.0)]; in test_multiple_weighted_edge_cases() localVariable
1326 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
Denum.py59 def choices(self): member in Enum
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/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/python/cpython3/Lib/
Dtokenize.py58 def group(*choices): return '(' + '|'.join(choices) + ')'
59 def any(*choices): return group(*choices) + '*'
60 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/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/cldr/tools/java/org/unicode/cldr/util/
DVettingViewer.java141 …public static <T extends Appendable> T appendDisplay(Set<Choice> choices, String htmlMessage, T ta… in appendDisplay()
190 public static Appendable appendRowStyles(Set<Choice> choices, Appendable target) { in appendRowStyles()
481 …public void generateHtmlErrorTables(Appendable output, EnumSet<Choice> choices, String localeID, T… in generateHtmlErrorTables()
521 …ation<R2<SectionId, PageId>, WritingInfo> generateFileInfoReview(EnumSet<Choice> choices, String l… in generateFileInfoReview()
551 EnumSet<Choice> choices, String localeID, in getFileInfo()
574 EnumSet<Choice> choices, String localeID, in getFileInfo()
770 …public void generateSummaryHtmlErrorTables(Appendable output, EnumSet<Choice> choices, T organizat… in generateSummaryHtmlErrorTables()
820 EnumSet<Choice> choices, T organization) throws IOException { in writeSummaryTable()
954 …private void writeSummaryRow(Appendable output, EnumSet<Choice> choices, Counter<Choice> problemCo… in writeSummaryRow()
1234 EnumSet<Choice> choices, in writeTables()
[all …]
/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()
DListFilter.java78 public void setChoices(String[] choices) { in setChoices()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp52 std::vector<uint32_t> choices; in Apply() local
/external/rust/crates/grpcio-sys/grpc/third_party/upb/benchmarks/
Dgen_synthetic_protos.py47 def choices(k): function
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_adjust_selection_controls.cpp52 std::vector<uint32_t> choices; in Apply() local
/external/jcommander/src/test/java/com/beust/jcommander/args/
DArgsEnum.java42 public List<ChoiceType> choices = new ArrayList<>(); field in ArgsEnum
/external/oss-fuzz/infra/
Dhelper.py338 def _add_architecture_args(parser, choices=('x86_64', 'i386')): argument
344 choices=('libfuzzer', 'afl', 'honggfuzz', 'dataflow', argument
351 choices=('address', 'memory', 'undefined', 'coverage', argument
/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
/external/owasp/sanitizer/src/tests/org/owasp/html/
DHtmlPolicyBuilderFuzzerTest.java162 private static String pick(Random rnd, String[] choices) { in pick()
/external/libchrome/components/json_schema/
Djson_schema_validator.cc492 const base::ListValue* choices = nullptr; in Validate() local
535 const base::ListValue* choices, in ValidateChoices()
558 const base::ListValue* choices, in ValidateEnum()

123