Home | History | Annotate | Download | only in src

Lines Matching refs:FmtElm

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);
132 void Add(const char* format, FmtElm arg0, FmtElm arg1);
133 void Add(const char* format, FmtElm arg0, FmtElm arg1, FmtElm arg2);
135 FmtElm arg0,
136 FmtElm arg1,
137 FmtElm arg2,
138 FmtElm arg3);