HomeSort by relevance Sort by last modified time
    Searched refs:FmtElm (Results 1 - 4 of 4) sorted by null

  /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 139 milliseconds