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 59 class FmtElm final {
61 FmtElm(int value) : type_(INT) { // NOLINT
64 explicit FmtElm(double value) : type_(DOUBLE) {
67 FmtElm(const char* value) : type_(C_STR) { // NOLINT
70 FmtElm(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
73 FmtElm(Object* value) : type_(OBJ) { // NOLINT
76 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
79 FmtElm(void* value) : type_(POINTER) { // NOLINT
115 void Add(Vector<const char> format, Vector<FmtElm> elms);
118 void Add(const char* format, FmtElm arg0)
    [all...]
string-stream.cc 77 void StringStream::Add(Vector<const char> format, Vector<FmtElm> elms) {
102 FmtElm current = elms[elm++];
105 DCHECK_EQ(FmtElm::C_STR, current.type_);
111 DCHECK_EQ(FmtElm::LC_STR, current.type_);
118 DCHECK_EQ(FmtElm::OBJ, current.type_);
124 DCHECK_EQ(FmtElm::INT, current.type_);
211 Add(format, Vector<FmtElm>::empty());
215 void StringStream::Add(const char* format, FmtElm arg0) {
217 FmtElm argv[argc] = { arg0 };
218 Add(CStrVector(format), Vector<FmtElm>(argv, argc))
    [all...]

Completed in 47 milliseconds