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
128 void Add(Vector<const char> format, Vector<FmtElm> elms);
131 void Add(const char* format, FmtElm arg0)
    [all...]
string-stream.cc 98 void StringStream::Add(Vector<const char> format, Vector<FmtElm> elms) {
123 FmtElm current = elms[elm++];
126 ASSERT_EQ(FmtElm::C_STR, current.type_);
132 ASSERT_EQ(FmtElm::LC_STR, current.type_);
139 ASSERT_EQ(FmtElm::OBJ, current.type_);
145 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 207 buffer.Add("%f", FmtElm(*flag->float_variable()));
log.cc     [all...]

Completed in 49 milliseconds