/external/mesa3d/bin/ |
D | meson-options.py | 44 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/ |
D | builder.py | 120 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/llvm-project/llvm/utils/ |
D | abtest.py | 95 def check_sanity(choices, perform_test): argument 111 def check_sequentially(choices, perform_test): argument 126 def check_bisect(choices, perform_test): argument
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/ |
D | Scanner.java | 43 boolean checkToken(Token.ID... choices); in checkToken()
|
/external/autotest/client/common_lib/ |
D | host_protections.py | 44 choices = Protection.choices() variable
|
D | autotest_enum.py | 61 def choices(self): member in AutotestEnum
|
D | enum.py | 59 def choices(self): member in Enum
|
/external/python/cpython2/Lib/ |
D | tokenize.py | 45 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/ |
D | mod.rs | 1242 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/frontend/client/src/autotest/common/table/ |
D | BooleanFilter.java | 7 private static final String[] choices = {"Yes", "No"}; field in BooleanFilter
|
D | MultipleListFilter.java | 39 public void setChoices(String[] choices) { in setChoices()
|
D | ListFilter.java | 78 public void setChoices(String[] choices) { in setChoices()
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | tokenize.py | 48 def group(*choices): return '(' + '|'.join(choices) + ')' 49 def any(*choices): return group(*choices) + '*' 50 def maybe(*choices): return group(*choices) + '?'
|
/external/python/cpython3/Lib/ |
D | tokenize.py | 58 def group(*choices): return '(' + '|'.join(choices) + ')' 59 def any(*choices): return group(*choices) + '*' 60 def maybe(*choices): return group(*choices) + '?'
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 48 def group(*choices): return '(' + '|'.join(choices) + ')' 49 def any(*choices): return group(*choices) + '*' 50 def maybe(*choices): return group(*choices) + '?'
|
/external/libcups/cups/ |
D | ppd-emit.c | 55 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/cldr/tools/java/org/unicode/cldr/util/ |
D | VettingViewer.java | 141 …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/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass_adjust_selection_controls.cpp | 52 std::vector<uint32_t> choices; in Apply() local
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/ |
D | fuzzer_pass_adjust_selection_controls.cpp | 49 std::vector<uint32_t> choices; in Apply() local
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/benchmarks/ |
D | gen_synthetic_protos.py | 47 def choices(k): function
|
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass_adjust_selection_controls.cpp | 52 std::vector<uint32_t> choices; in Apply() local
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | ArgsEnum.java | 42 public List<ChoiceType> choices = new ArrayList<>(); field in ArgsEnum
|
/external/oss-fuzz/infra/ |
D | helper.py | 338 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/ |
D | ConnectorImpl.java | 400 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/ |
D | HtmlPolicyBuilderFuzzerTest.java | 162 private static String pick(Random rnd, String[] choices) { in pick()
|