OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Int64ToString
(Results
1 - 7
of
7
) sorted by null
/external/libchrome/base/strings/
string_number_conversions.h
75
inline std::string
Int64ToString
(int64_t value) {
/external/libchrome/base/json/
json_writer.cc
89
json_string_->append(
Int64ToString
(static_cast<int64_t>(value)));
/external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h
139
string
Int64ToString
(int64 number);
cpp_helpers.cc
351
string
Int64ToString
(int64 number) {
369
return
Int64ToString
(field->default_value_int64());
cpp_unittest.cc
184
EXPECT_EQ("GOOGLE_LONGLONG(971)",
Int64ToString
(971));
185
EXPECT_EQ("GOOGLE_LONGLONG(-2147483648)",
Int64ToString
(kint32min));
186
EXPECT_EQ("GOOGLE_LONGLONG(~0x7fffffffffffffff)",
Int64ToString
(kint64min));
187
EXPECT_EQ("GOOGLE_LONGLONG(9223372036854775807)",
Int64ToString
(kint64max));
[
all
...]
/external/libchrome/base/process/
process_metrics_unittest.cc
43
vec->push_back(
Int64ToString
(test_value));
/external/libchrome/dbus/
message.cc
139
output += (indent + "int64_t " + base::
Int64ToString
(value) + "\n");
Completed in 512 milliseconds