HomeSort by relevance Sort by last modified time
    Searched refs:CSV (Results 1 - 25 of 27) sorted by null

1 2

  /external/autotest/contrib/
servo-summary 3 CSV=FALSE
8 c) CSV=TRUE;;
16 echo "options: -c for CSV format" >&2
31 if [ $CSV = "TRUE" ]
  /external/netperf/doc/examples/
runemomni.sh 35 # -O means "human" -o means "csv" -k means "keyval"
40 CSV="-o all"
41 #CSV="-O all"
84 netperf $HDR -T $i,$j -t omni -c -C -H $control_host -l $length $confidence -- $CSV -H $data -m 64K;HDR="-P 0";
103 netperf $HDR -T $i,$j -t omni -c -C -H $control_host -l $length $confidence -- $CSV -H $data -s 1M -S 1M -m 64K;HDR="-P 0";
122 netperf $HDR -T $i,$j -t omni -f m -c -C -H $control_host -l $length $confidence -- $CSV -H $data -s 1M -S 1M -r 64K -b 12; HDR="-P 0";
141 netperf $HDR -T $i,$j -t omni -c -C -H $control_host -l $length $confidence -- $CSV -H $data -r 1; HDR="-P 0";
154 netperf $HDR -T $i -t omni -f m -c -C -H $control_host -l $length $confidence -- $CSV -H $data -s 1M -S 1M -r $req -b $burst -D;HDR=-"P 0";
168 netperf $HDR -T $i -t omni -f m -c -C -H $control_host -l $length $confidence -- $CSV -H $data -s 1M -S 1M -r $req -b $burst -T udp;HDR=-"P 0";
183 netperf $HDR -T $i -t omni -f m -c -C -H $control_host -l $length $confidence -- $CSV -H $data -s 1M -S 1M -m $req -T udp;HDR=-"P 0"
    [all...]
runemomniagg2.sh 55 # -O means "human" -o means "csv" and -k means "keyval"
60 CSV="-o all"
91 netperf $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -m 64K -u $NETUUID & HDR="-P 0";
106 netperf $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -M ,64K -u $NETUUID & HDR="-P 0";
122 netperf $HDR -t omni -f m -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -s 1M -S 1M -r 64K -b 12 -u $NETUUID & HDR="-P 0";
140 netperf $HDR -t omni -f x -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -r 1 -b $b -D -u $NETUUID & HDR="-P 0";
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 5 package csv package
15 // A Writer writes records to a CSV encoded file.
38 // Writer writes a single CSV record to w along with any necessary quoting.
106 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
123 // an option to force the quoted behavior for non-quoted CSV but it has
124 // no option to force the non-quoted behavior for quoted CSV, making
125 // CSV with quoted empty strings strictly less useful.
example_test.go 8 "encoding/csv"
22 r := csv.NewReader(strings.NewReader(in))
42 // This example shows how csv.Reader can be configured to handle other
43 // types of CSV files.
51 r := csv.NewReader(strings.NewReader(in))
71 r := csv.NewReader(strings.NewReader(in))
91 w := csv.NewWriter(os.Stdout)
95 log.Fatalln("error writing record to csv:", err)
120 w := csv.NewWriter(os.Stdout)
124 log.Fatalln("error writing csv:", err
    [all...]
reader.go 5 // Package csv reads and writes comma-separated values (CSV) files.
7 // A csv file contains zero or more records of one or more fields per record.
50 package csv package
81 // A Reader reads records from a CSV-encoded file.
209 // parseRecord reads and parses a single csv record from r.
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 5 package csv package
15 // A Writer writes records to a CSV encoded file.
38 // Writer writes a single CSV record to w along with any necessary quoting.
106 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
123 // an option to force the quoted behavior for non-quoted CSV but it has
124 // no option to force the non-quoted behavior for quoted CSV, making
125 // CSV with quoted empty strings strictly less useful.
example_test.go 8 "encoding/csv"
22 r := csv.NewReader(strings.NewReader(in))
42 // This example shows how csv.Reader can be configured to handle other
43 // types of CSV files.
51 r := csv.NewReader(strings.NewReader(in))
71 r := csv.NewReader(strings.NewReader(in))
91 w := csv.NewWriter(os.Stdout)
95 log.Fatalln("error writing record to csv:", err)
120 w := csv.NewWriter(os.Stdout)
124 log.Fatalln("error writing csv:", err
    [all...]
reader.go 5 // Package csv reads and writes comma-separated values (CSV) files.
7 // A csv file contains zero or more records of one or more fields per record.
50 package csv package
81 // A Reader reads records from a CSV-encoded file.
209 // parseRecord reads and parses a single csv record from r.
  /external/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp 115 if (Optional<nonloc::CompoundVal> CSV =
117 nonloc::CompoundVal::iterator CSV_I = CSV->begin();
118 assert(CSV_I != CSV->end());
121 assert(++CSV_I == CSV->end());
  /external/v8/tools/
csvparser.js 30 * Creates a CSV lines parser.
37 * A regex for matching a CSV field.
51 * Parses a line of CSV-encoded values. Returns an array of fields.
logreader.js 69 * CSV lines parser.
  /external/v8/tools/release/
releases.py 14 import csv
520 if self._options.csv:
521 with open(self._options.csv, "w") as f:
522 writer = csv.DictWriter(f,
532 if not self._options.csv and not self._options.json:
546 parser.add_argument("--csv", help="Path to a CSV file for export.")
  /external/netperf/src/
netlib.h 251 CSV,
nettest_omni.c 485 the default csv (everything) output */
    [all...]
netlib.c     [all...]
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 308 CSV=1 << CSV_IDX,
  /prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/x86/x86asm/
decode.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/rsc.io/x86/x86asm/
decode.go     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py     [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 644 milliseconds

1 2