/third_party/protobuf/objectivec/DevTools/ |
H A D | pddm_tests.py | 118 for idx, (input_str, expected_prefix) in enumerate(test_list, 1): 119 f = io.StringIO(input_str) 173 for idx, (input_str, expected_prefix) in enumerate(test_list, 1): 174 f = io.StringIO(input_str) 223 for idx, (input_str, expected) in enumerate(test_list, 1): 224 result = mc.Expand(input_str) 267 for idx, (input_str, expected_err) in enumerate(test_list, 1): 269 result = mc.Expand(input_str) 350 for idx, (input_str, line_counts) in enumerate(test_list, 1): 351 f = io.StringIO(input_str) [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/ |
H A D | spvtools_as_fuzzer.cpp | 43 std::vector<char> input_str; in LLVMFuzzerTestOneInput() local 45 input_str.resize(char_count); in LLVMFuzzerTestOneInput() 46 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput() 50 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput() 64 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
|
H A D | spvtools_dis_fuzzer.cpp | 44 std::vector<char> input_str; in LLVMFuzzerTestOneInput() local 46 input_str.resize(char_count); in LLVMFuzzerTestOneInput() 47 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/ |
H A D | spvtools_as_fuzzer.cpp | 43 std::vector<char> input_str; in LLVMFuzzerTestOneInput() local 45 input_str.resize(char_count); in LLVMFuzzerTestOneInput() 46 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput() 50 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput() 64 spvTextToBinaryWithOptions(context, input_str.data(), input_str.size(), in LLVMFuzzerTestOneInput()
|
H A D | spvtools_dis_fuzzer.cpp | 44 std::vector<char> input_str; in LLVMFuzzerTestOneInput() local 46 input_str.resize(char_count); in LLVMFuzzerTestOneInput() 47 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput()
|
/third_party/spirv-tools/test/fuzzers/ |
H A D | spvtools_dis_fuzzer.cpp | 44 std::vector<char> input_str; in LLVMFuzzerTestOneInput() local 46 input_str.resize(char_count); in LLVMFuzzerTestOneInput() 47 memcpy(input_str.data(), input.data(), input.size() * sizeof(uint32_t)); in LLVMFuzzerTestOneInput()
|
/third_party/gn/src/gn/ |
H A D | label.cc | 102 const char* input_str = input.data(); in Resolve() local 124 location_piece = std::string_view(&input_str[0], path_separator); in Resolve() 128 name_piece = std::string_view(&input_str[path_separator + 1], in Resolve() 142 name_piece = std::string_view(&input_str[path_separator + 1], in Resolve() 157 std::string_view(&input_str[toolchain_separator + 1], in Resolve()
|
H A D | target_generator.cc | 247 const std::string input_str = input.string_value(); in FillData() local 251 bool as_dir = !input_str.empty() && input_str[input_str.size() - 1] == '/'; in FillData() 254 dir.ResolveRelativeAs(!as_dir, input, err_, root_path, &input_str); in FillData()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 674 def FindEnclosingBracketGroup(input_str): 677 for index, char in enumerate(input_str): 773 input_str = str(input) 774 if IsStrCanonicalInt(input_str): 775 return int(input_str) 778 if expansion_symbol not in input_str: 779 return input_str 783 matches = list(variable_re.finditer(input_str)) 785 return input_str 787 output = input_str [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 674 def FindEnclosingBracketGroup(input_str): 677 for index, char in enumerate(input_str): 773 input_str = str(input) 774 if IsStrCanonicalInt(input_str): 775 return int(input_str) 778 if expansion_symbol not in input_str: 779 return input_str 783 matches = list(variable_re.finditer(input_str)) 785 return input_str 787 output = input_str [all...] |
/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | lower_jump_cases.py | 281 input_str = sexp_to_string(sort_decls(input_sexp)) 288 return (test_name, optimization, input_str, expected_output)
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 1874 for input_str, expected in examples: 1875 with self.subTest(input_str=input_str): 1876 actual = self.theclass.fromisoformat(input_str) 3228 for input_str, expected in examples: 3229 with self.subTest(input_str=input_str): 3230 actual = self.theclass.fromisoformat(input_str) 4255 for input_str, expected in examples: 4256 with self.subTest(input_str [all...] |