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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/installer/util/
compat_checks.cc 34 if (!base::StringToInt(v[0], v0))
36 if (!base::StringToInt(v[1], v1))
38 if (!base::StringToInt(v[2], v2))
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 45 ASSERT_TRUE(table.StringToInt(&db_, "abc", &id));
62 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1));
63 ASSERT_TRUE(table.StringToInt(&db_, "string2", &id2));
67 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1a));
78 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1));
83 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id2));
94 ASSERT_TRUE(table.StringToInt(&db_, "modified", &id1));
100 ASSERT_TRUE(table.StringToInt(&db_, "modified", &id2));
106 ASSERT_TRUE(table.StringToInt(&db_, "modified", &id3));
123 ASSERT_TRUE(table.StringToInt(&db_, "abc", &id))
    [all...]
database_string_table.h 45 bool StringToInt(sql::Connection* connection,
  /external/chromium_org/google_apis/drive/
time_util.cc 31 if (!base::StringToInt(parts[0], &hour))
35 if (num_of_token > 1 && !base::StringToInt(parts[1], &minute))
95 if (!base::StringToInt(parts[0], &exploded.year) ||
96 !base::StringToInt(parts[1], &exploded.month) ||
97 !base::StringToInt(parts[2], &exploded.day_of_month)) {
109 if (!base::StringToInt(parts[0], &exploded.hour) ||
110 !base::StringToInt(parts[1], &exploded.minute)) {
119 if (!base::StringToInt(seconds_parts[0], &exploded.second))
125 !base::StringToInt(seconds_parts[1], &exploded.millisecond)) {
  /external/chromium_org/content/browser/media/capture/
web_contents_capture_util.cc 55 return (base::StringToInt(component1, render_process_id) &&
56 base::StringToInt(component2, render_view_id));
  /external/chromium_org/ppapi/proxy/
ppp_messaging_proxy_perftest.cc 63 base::StringToInt(command_line->GetSwitchValueASCII("seed"),
67 base::StringToInt(command_line->GetSwitchValueASCII("string_count"),
71 base::StringToInt(command_line->GetSwitchValueASCII("max_string_size"),
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser_unittest.cc 76 base::StringToInt(lines[9 * i + 3], &year);
77 base::StringToInt(lines[9 * i + 4], &month);
78 base::StringToInt(lines[9 * i + 5], &day_of_month);
79 base::StringToInt(lines[9 * i + 6], &hour);
80 base::StringToInt(lines[9 * i + 7], &minute);
ftp_directory_listing_parser_ls.cc 29 if (!base::StringToInt(date_parts[0], &time_exploded.year))
31 if (!base::StringToInt(date_parts[1], &time_exploded.month))
33 if (!base::StringToInt(date_parts[2], &time_exploded.day_of_month))
44 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
46 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
ftp_util.cc 243 if (!base::StringToInt(day, &time_exploded.day_of_month))
248 if (!base::StringToInt(rest, &time_exploded.year)) {
260 if (!base::StringToInt(
265 if (!base::StringToInt(
302 if (!base::StringToInt(date_parts[0], &time_exploded.month))
304 if (!base::StringToInt(date_parts[1], &time_exploded.day_of_month))
306 if (!base::StringToInt(date_parts[2], &time_exploded.year))
325 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
327 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
ftp_directory_listing_parser_vms.cc 33 if (!base::StringToInt(listing_parts[1], &version_number))
163 if (!base::StringToInt(date_parts[0], &time_exploded.day_of_month))
168 if (!base::StringToInt(date_parts[2], &time_exploded.year))
184 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
186 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
  /external/chromium_org/mojo/shell/
child_process.cc 28 CHECK(base::StringToInt(command_line.GetSwitchValueASCII(
  /external/chromium_org/media/cast/test/utility/
input_builder.cc 62 CHECK(base::StringToInt(string_input, &int_value));
71 if (!base::StringToInt(input, &value))
  /external/chromium_org/tools/android/forwarder2/
command.cc 62 if (!StringToInt(port_str, port_out)) {
71 if (!StringToInt(command_type_str, &command_type)) {
  /external/chromium_org/components/autofill/core/browser/
validation.cc 29 if (!base::StringToInt(year_cleaned, &cc_year))
33 if (!base::StringToInt(month_cleaned, &cc_month))
181 if (!base::StringToInt(base::StringPiece16(number_string.begin(),
193 if (!base::StringToInt(base::StringPiece16(number_string.begin() + 3,
201 if (!base::StringToInt(base::StringPiece16(number_string.begin() + 5,
  /external/chromium_org/components/metrics/chromeos/
metric_sample.cc 127 if (parts[0].empty() || !base::StringToInt(parts[1], &sample) ||
128 !base::StringToInt(parts[2], &min) ||
129 !base::StringToInt(parts[3], &max) ||
130 !base::StringToInt(parts[4], &bucket_count)) {
153 if (parts[0].empty() || !base::StringToInt(parts[1], &sample))
176 if (parts[0].empty() || !base::StringToInt(parts[1], &sample) ||
177 !base::StringToInt(parts[2], &max)) {
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
demo_mode_detector.cc 93 !base::StringToInt(
103 !base::StringToInt(
113 !base::StringToInt(
  /external/chromium_org/chrome/test/base/
chrome_process_util_mac.cc 52 base::StringToInt(values[0], &pid);
54 base::StringToInt(values[1], &proc_info.rsz_in_kb);
55 base::StringToInt(values[2], &proc_info.vsz_in_kb);
  /external/chromium_org/chrome/browser/extensions/api/sessions/
session_id.cc 27 if (!base::StringToInt(
  /external/chromium_org/content/browser/webui/
web_ui_message_handler.cc 18 return base::StringToInt(string_value, out_int);
  /external/chromium_org/net/tools/quic/
quic_server_bin.cc 51 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
  /external/chromium_org/base/strings/
string_number_conversions.h 64 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
65 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
97 // Best effort conversion, see StringToInt above for restrictions.
102 // Best effort conversion, see StringToInt above for restrictions.
108 // Best effort conversion, see StringToInt above for restrictions.
113 // Best effort conversion, see StringToInt above for restrictions.
  /external/chromium_org/chrome/test/chromedriver/chrome/
mobile_device.cc 66 if (!base::StringToInt(metrics_vector[0], &width)) {
70 if (!base::StringToInt(metrics_vector[1], &height)) {
  /external/chromium_org/chrome/browser/omnibox/
omnibox_field_trial.cc 105 if (base::StringToInt(it->second, &relevance_cap))
112 if (base::StringToInt(it->second, &half_life_days))
126 base::StringToInt(it->second, &bucket.second);
206 if (!base::StringToInt(base::StringPiece(
259 if (base::StringToInt(
322 if (!base::StringToInt(max_relevance_str, max_relevance))
366 base::StringToInt(it->first, &k);
367 base::StringToInt(it->second, &v);
386 if (base::StringToInt(it->second, &enabled))
410 base::StringToInt(bookmark_value_str, &bookmark_value)
    [all...]
  /external/chromium_org/base/process/
process_metrics_linux.cc 312 ret &= StringToInt(totmaps_fields[kPssIndex], &pss);
313 ret &= StringToInt(totmaps_fields[kPrivate_CleanIndex], &private_clean);
314 ret &= StringToInt(totmaps_fields[kPrivate_DirtyIndex], &private_dirty);
315 ret &= StringToInt(totmaps_fields[kSwapIndex], &swap);
358 ret &= StringToInt(statm_vec[1], &statm_rss);
359 ret &= StringToInt(statm_vec[2], &statm_shared);
537 StringToInt(tokens[1], &meminfo->total);
540 StringToInt(tokens[1], &meminfo->free);
543 StringToInt(tokens[1], &meminfo->buffers);
546 StringToInt(tokens[1], &meminfo->cached)
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_field_trial.cc 26 using base::StringToInt;
369 StringToInt(GetLocalPredictorSpecValue(kPrerenderServiceBehaviorIDKeyName),
377 StringToInt(GetLocalPredictorSpecValue(kPrerenderServiceFetchTimeoutKeyName),
387 StringToInt(GetLocalPredictorSpecValue(kPrerenderTTLKeyName), &ttl);
394 StringToInt(GetLocalPredictorSpecValue(kPrerenderPriorityHalfLifeTimeKeyName),
402 StringToInt(GetLocalPredictorSpecValue(kMaxConcurrentPrerenderKeyName),
410 StringToInt(GetLocalPredictorSpecValue(kMaxLaunchPrerenderKeyName),

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011