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

  /external/v8/src/
string-stream.h 60 class FmtElm final {
62 FmtElm(int value) : type_(INT) { // NOLINT
65 explicit FmtElm(double value) : type_(DOUBLE) {
68 FmtElm(const char* value) : type_(C_STR) { // NOLINT
71 FmtElm(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
74 FmtElm(Object* value) : type_(OBJ) { // NOLINT
77 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
80 FmtElm(void* value) : type_(POINTER) { // NOLINT
116 void Add(Vector<const char> format, Vector<FmtElm> elms);
119 void Add(const char* format, FmtElm arg0)
    [all...]
string-stream.cc 79 void StringStream::Add(Vector<const char> format, Vector<FmtElm> elms) {
104 FmtElm current = elms[elm++];
107 DCHECK_EQ(FmtElm::C_STR, current.type_);
113 DCHECK_EQ(FmtElm::LC_STR, current.type_);
120 DCHECK_EQ(FmtElm::OBJ, current.type_);
126 DCHECK_EQ(FmtElm::INT, current.type_);
213 Add(format, Vector<FmtElm>::empty());
217 void StringStream::Add(const char* format, FmtElm arg0) {
219 FmtElm argv[argc] = { arg0 };
220 Add(CStrVector(format), Vector<FmtElm>(argv, argc))
    [all...]

Completed in 82 milliseconds