Home
last modified time | relevance | path

Searched refs:read_str (Results 1 – 8 of 8) sorted by relevance

/external/libchrome-gestures/src/
Dlogging_filter_interpreter_unittest.cc82 std::string read_str = ""; in TEST() local
83 bool couldRead = ReadFileToString(filename, &read_str); in TEST()
86 EXPECT_NE(0, read_str.size()); in TEST()
/external/sg3_utils/src/
Dsg_read.c436 const char * read_str; in main() local
846 read_str = (FT_SG & in_type) ? "SCSI READ" : "read"; in main()
873 pr2serr("Time for all %s commands was %d.%06d secs", read_str, in main()
881 read_str, (int)res_tm.tv_sec, in main()
889 "#%d to end was %d.%06d secs", read_str, do_time, in main()
898 read_str, (double)iters / a); in main()
911 print_stats(iters, read_str); in main()
/external/leveldb/benchmarks/
Ddb_bench_sqlite3.cc590 std::string read_str = "SELECT * FROM test WHERE key = ?"; in Read() local
601 status = sqlite3_prepare_v2(db_, read_str.c_str(), -1, &read_stmt, nullptr); in Read()
658 std::string read_str = "SELECT * FROM test ORDER BY key"; in ReadSequential() local
660 status = sqlite3_prepare_v2(db_, read_str.c_str(), -1, &pStmt, nullptr); in ReadSequential()
/external/rust/crates/chrono/src/
Ddatetime.rs985 d.read_str()? in decode()
1001 d.read_str()? in decode()
1042 match d.read_str()?.parse::<DateTime<FixedOffset>>() { in decode()
/external/rust/crates/chrono/src/naive/
Dtime.rs1435 d.read_str()?.parse().map_err(|_| d.error("invalid time")) in decode()
Ddatetime.rs1630 d.read_str()?.parse().map_err(|_| d.error("invalid date time string")) in decode()
Ddate.rs1780 d.read_str()?.parse().map_err(|_| d.error("invalid date")) in decode()
/external/python/cpython2/Modules/
DcPickle.c134 *read_str, *readline_str, *__main___str, variable
5524 (self->read = PyObject_GetAttr(f, read_str)))) { in newUnpicklerobject()