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

1 2

  /external/lzma/CPP/7zip/UI/Client7z/
makefile 12 $O\StringToInt.obj \
  /external/libchrome/base/strings/
string_number_conversions.h 80 BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
81 BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
103 // Read the comments here and above StringToInt() carefully.
116 // Best effort conversion, see StringToInt above for restrictions.
121 // Best effort conversion, see StringToInt above for restrictions.
127 // Best effort conversion, see StringToInt above for restrictions.
132 // Best effort conversion, see StringToInt above for restrictions.
string_number_conversions_unittest.cc 108 TEST(StringNumberConversionsTest, StringToInt) {
141 int output = cases[i].output ^ 1; // Ensure StringToInt wrote something.
142 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
146 output = cases[i].output ^ 1; // Ensure StringToInt wrote something.
147 EXPECT_EQ(cases[i].success, StringToInt(utf16_input, &output));
157 EXPECT_FALSE(StringToInt(input_string, &output));
162 EXPECT_FALSE(StringToInt(utf16_input, &output));
167 EXPECT_FALSE(StringToInt(string16(negative_wide_input), &output));
string_number_conversions.cc 384 bool StringToInt(const StringPiece& input, int* output) {
388 bool StringToInt(const StringPiece16& input, int* output) {
  /external/libchrome/base/
sys_info_chromeos.cc 134 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
138 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
142 StringToInt(StringPiece(tokenizer.token_begin(), tokenizer.token_end()),
vlog.cc 56 if (base::StringToInt(v_switch, &vlog_level)) {
72 if (!base::StringToInt(it->second, &pattern.vlog_level)) {
  /external/libchrome/sandbox/linux/services/
proc_util.cc 62 CHECK(base::StringToInt(e.d_name, &fd_num));
92 CHECK(base::StringToInt(e.d_name, &fd_num));
  /external/v8/src/
conversions.h 124 double StringToInt(UnicodeCache* unicode_cache,
129 double StringToInt(UnicodeCache* unicode_cache,
conversions.cc 108 double StringToInt(UnicodeCache* unicode_cache,
116 double StringToInt(UnicodeCache* unicode_cache,
  /external/libchrome/base/test/
test_timeouts.cc 49 base::StringToInt(string_value, &timeout);
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
makefile 21 $O\StringToInt.obj \
  /external/libchrome/base/process/
internal_linux.cc 46 if (!StringToInt(pid_string, &pid)) {
168 if (!StringToInt(btime_it->second, &btime))
process_metrics_linux.cc 370 ret &= StringToInt(totmaps_fields[kPssIndex], &pss);
371 ret &= StringToInt(totmaps_fields[kPrivate_CleanIndex], &private_clean);
372 ret &= StringToInt(totmaps_fields[kPrivate_DirtyIndex], &private_dirty);
373 ret &= StringToInt(totmaps_fields[kSwapIndex], &swap);
416 ret &= StringToInt(statm_vec[1], &statm_rss);
417 ret &= StringToInt(statm_vec[2], &statm_shared);
661 StringToInt(tokens[1], target);
690 StringToInt(tokens[1], &meminfo->pswpin);
692 StringToInt(tokens[1], &meminfo->pswpout);
694 StringToInt(tokens[1], &meminfo->pgmajfault)
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
makefile 20 $O\StringToInt.obj \
  /external/libmojo/mojo/edk/embedder/
platform_channel_pair_posix.cc 96 !base::StringToInt(value, &client_fd) ||
platform_channel_pair_win.cc 82 !base::StringToInt(value, &client_handle_value)) {
  /external/lzma/CPP/7zip/Bundles/Format7zExtractR/
makefile 14 $O\StringToInt.obj \
  /external/v8/src/runtime/
runtime-numbers.cc 61 result = StringToInt(isolate->unicode_cache(), flat.ToOneByteVector(),
65 StringToInt(isolate->unicode_cache(), flat.ToUC16Vector(), radix32);
  /external/lzma/CPP/7zip/Bundles/Format7zR/
makefile 13 $O\StringToInt.obj \
  /system/update_engine/
hardware_chromeos.cc 190 if (!base::StringToInt(contents, &powerwash_count))
update_attempter_android.cc 187 base::StringToInt(headers[kPayloadPropertyPowerwash], &data_wipe) &&
  /external/flatbuffers/include/flatbuffers/
util.h 98 inline int64_t StringToInt(const char *str, char **endptr = nullptr,
  /external/libbrillo/brillo/
flag_helper.cc 80 return base::StringToInt(value, value_);
  /external/lzma/CPP/7zip/Bundles/Alone7z/
makefile 21 $O\StringToInt.obj \
  /external/libbrillo/brillo/message_loops/
base_message_loop.cc 293 if (name == kBinderDriverName && base::StringToInt(number, &result))

Completed in 2554 milliseconds

1 2