OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FmtElm
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/v8/src/
string-stream.h
73
class
FmtElm
{
75
FmtElm
(int value) : type_(INT) { // NOLINT
78
explicit
FmtElm
(double value) : type_(DOUBLE) {
81
FmtElm
(const char* value) : type_(C_STR) { // NOLINT
84
FmtElm
(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
87
FmtElm
(Object* value) : type_(OBJ) { // NOLINT
90
FmtElm
(Handle<Object> value) : type_(HANDLE) { // NOLINT
93
FmtElm
(void* value) : type_(POINTER) { // NOLINT
129
void Add(Vector<const char> format, Vector<
FmtElm
> elms);
132
void Add(const char* format,
FmtElm
arg0)
[
all
...]
string-stream.cc
95
void StringStream::Add(Vector<const char> format, Vector<
FmtElm
> elms) {
120
FmtElm
current = elms[elm++];
123
ASSERT_EQ(
FmtElm
::C_STR, current.type_);
129
ASSERT_EQ(
FmtElm
::LC_STR, current.type_);
136
ASSERT_EQ(
FmtElm
::OBJ, current.type_);
142
ASSERT_EQ(
FmtElm
::INT, current.type_);
220
Add(format, Vector<
FmtElm
>::empty());
224
void StringStream::Add(const char* format,
FmtElm
arg0) {
226
FmtElm
argv[argc] = { arg0 };
227
Add(CStrVector(format), Vector<
FmtElm
>(argv, argc))
[
all
...]
flags.cc
227
buffer.Add("%f",
FmtElm
(*flag->float_variable()));
log.cc
[
all
...]
hydrogen-instructions.cc
[
all
...]
/external/v8/src/
string-stream.h
73
class
FmtElm
{
75
FmtElm
(int value) : type_(INT) { // NOLINT
78
explicit
FmtElm
(double value) : type_(DOUBLE) {
81
FmtElm
(const char* value) : type_(C_STR) { // NOLINT
84
FmtElm
(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
87
FmtElm
(Object* value) : type_(OBJ) { // NOLINT
90
FmtElm
(Handle<Object> value) : type_(HANDLE) { // NOLINT
93
FmtElm
(void* value) : type_(POINTER) { // NOLINT
129
void Add(Vector<const char> format, Vector<
FmtElm
> elms);
132
void Add(const char* format,
FmtElm
arg0)
[
all
...]
string-stream.cc
97
void StringStream::Add(Vector<const char> format, Vector<
FmtElm
> elms) {
122
FmtElm
current = elms[elm++];
125
ASSERT_EQ(
FmtElm
::C_STR, current.type_);
131
ASSERT_EQ(
FmtElm
::LC_STR, current.type_);
138
ASSERT_EQ(
FmtElm
::OBJ, current.type_);
144
ASSERT_EQ(
FmtElm
::INT, current.type_);
221
Add(format, Vector<
FmtElm
>::empty());
225
void StringStream::Add(const char* format,
FmtElm
arg0) {
227
FmtElm
argv[argc] = { arg0 };
228
Add(CStrVector(format), Vector<
FmtElm
>(argv, argc))
[
all
...]
log-utils.cc
111
stream.Add("%.0f",
FmtElm
(time));
flags.cc
207
buffer.Add("%f",
FmtElm
(*flag->float_variable()));
Completed in 3316 milliseconds