HomeSort by relevance Sort by last modified time
    Searched refs:Split (Results 101 - 125 of 971) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/protobuf/examples/
list_people_test.go 76 want := strings.Split(`Person ID: 101
97 got := strings.Split(buf.String(), "\n")
  /external/protobuf/src/google/protobuf/compiler/
code_generator.cc 67 vector<string> parts = Split(text, ",", true);
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen_main.cc 73 std::vector<tensorflow::string> api_def_dirs = tensorflow::str_util::Split(
  /external/tensorflow/tensorflow/core/platform/
tracing.cc 55 str_util::Split(value, ',', str_util::SkipEmpty());
  /external/tensorflow/tensorflow/core/util/
reporter.cc 55 fname_, str_util::Join(str_util::Split(test_name_, '/'), "__"));
  /external/tensorflow/tensorflow/go/genop/
main.go 58 apiDefDirsList = strings.Split(*apiDefDirs, ",")
  /external/tensorflow/tensorflow/tools/mlpbtxt/
tomlpbtxt.cc 49 str_util::Split(FLAGS_fields, ',', str_util::SkipEmpty());
  /external/v8/src/compiler/
gap-resolver.cc 30 MoveOperands* Split(MoveOperands* move, MachineRepresentation smaller_rep,
150 // We may need to split moves between FP locations differently.
167 other = Split(other, split_rep_, moves);
217 // We may have to split larger moves.
224 other = Split(other, split_rep_, moves);
231 other = Split(other, split_rep_, moves);
  /prebuilts/go/darwin-x86/src/go/ast/
print_test.go 71 // Split s into lines, trim whitespace from all lines, and return
74 lines := strings.Split(s, "\n")
  /prebuilts/go/darwin-x86/src/testing/
helper_test.go 37 lines := strings.Split(buf.String(), "\n")
62 lines := strings.Split(strings.TrimSpace(buf.String()), "\n")
  /prebuilts/go/linux-x86/src/go/ast/
print_test.go 71 // Split s into lines, trim whitespace from all lines, and return
74 lines := strings.Split(s, "\n")
  /prebuilts/go/linux-x86/src/testing/
helper_test.go 37 lines := strings.Split(buf.String(), "\n")
62 lines := strings.Split(strings.TrimSpace(buf.String()), "\n")
  /system/core/base/
parsenetaddress.cpp 51 std::vector<std::string> pieces = Split(address, ":");
  /system/libvintf/
assemble_vintf_main.cpp 80 for (const auto& inFilePath : ::android::base::Split(optarg, ":")) {
  /system/netd/netutils_wrappers/
NetUtilsWrapperTest-1.0.cpp 62 std::vector<std::string> pieces = android::base::Split(cmd.cmdString, " ");
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_utils.cc 118 str_util::Split(line, ' ', str_util::SkipEmpty());
218 opts->account_type_regexes = str_util::Split(StripQuote(pieces[i + 1]),
225 opts->start_name_regexes = str_util::Split(StripQuote(pieces[i + 1]), ',',
232 opts->trim_name_regexes = str_util::Split(StripQuote(pieces[i + 1]), ',',
239 opts->show_name_regexes = str_util::Split(StripQuote(pieces[i + 1]), ',',
246 opts->hide_name_regexes = str_util::Split(StripQuote(pieces[i + 1]), ',',
265 std::vector<string> requested_vector = str_util::Split(
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c 195 Determine if a command line contains a split operation
199 @retval TRUE CmdLine has a valid split.
200 @retval FALSE CmdLine does not have a valid split.
341 SPLIT_LIST *Split;
677 for ( Split = (SPLIT_LIST*)GetFirstNode (&ShellInfoObject.SplitList.Link)
678 ; !IsNull (&ShellInfoObject.SplitList.Link, &Split->Link)
679 ; Split = (SPLIT_LIST *)GetNextNode (&ShellInfoObject.SplitList.Link, &Split->Link)
681 RemoveEntryList (&Split->Link);
682 FreePool (Split);
    [all...]
  /prebuilts/go/darwin-x86/src/bufio/
example_test.go 40 // Set the split function for the scanning operation.
41 scanner.Split(bufio.ScanWords)
54 // Use a Scanner with a custom split function (built by wrapping ScanWords) to validate
60 // Create a custom split function by wrapping the existing ScanWords function.
61 split := func(data []byte, atEOF bool) (advance int, token []byte, err error) {
68 // Set the split function for the scanning operation.
69 scanner.Split(split)
84 // Use a Scanner with a custom split function to parse a comma-separated
90 // Define a split function that separates on commas
    [all...]
scan_test.go 45 s.Split(ScanBytes)
67 s.Split(ScanRunes)
111 s.Split(ScanWords)
192 s.Split(ScanLines)
228 s.Split(ScanLines)
253 s.Split(ScanLines)
310 // Test the correct error is returned when the split function errors out.
312 // Create a split function that delivers a little data, then a predictable error.
329 s.Split(errorSplit)
350 split := func(data []byte, atEOF bool) (advance int, token []byte, err error)
502 func (c *countdown) split(data []byte, atEOF bool) (advance int, token []byte, err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
example_test.go 40 // Set the split function for the scanning operation.
41 scanner.Split(bufio.ScanWords)
54 // Use a Scanner with a custom split function (built by wrapping ScanWords) to validate
60 // Create a custom split function by wrapping the existing ScanWords function.
61 split := func(data []byte, atEOF bool) (advance int, token []byte, err error) {
68 // Set the split function for the scanning operation.
69 scanner.Split(split)
84 // Use a Scanner with a custom split function to parse a comma-separated
90 // Define a split function that separates on commas
    [all...]
scan_test.go 45 s.Split(ScanBytes)
67 s.Split(ScanRunes)
111 s.Split(ScanWords)
192 s.Split(ScanLines)
228 s.Split(ScanLines)
253 s.Split(ScanLines)
310 // Test the correct error is returned when the split function errors out.
312 // Create a split function that delivers a little data, then a predictable error.
329 s.Split(errorSplit)
350 split := func(data []byte, atEOF bool) (advance int, token []byte, err error)
502 func (c *countdown) split(data []byte, atEOF bool) (advance int, token []byte, err error) { func
    [all...]
  /art/libartbase/base/
utils.cc 100 void Split(const std::string& s, char separator, std::vector<std::string>* result) {
159 Split(stats, ' ', &fields);
  /device/google/marlin/health/
HealthService.cpp 102 std::vector<std::string> lines = android::base::Split(version, "\n");
118 lines = android::base::Split(buffer, "\n");
  /device/google/wahoo/health/
HealthService.cpp 102 std::vector<std::string> lines = android::base::Split(version, "\n");
118 lines = android::base::Split(buffer, "\n");
  /device/linaro/bootloader/edk2/BaseTools/Source/
BinaryFiles.txt 54 Split.exe

Completed in 804 milliseconds

1 2 3 45 6 7 8 91011>>