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 58 class FmtElm final {
60 FmtElm(int value) : FmtElm(INT) { // NOLINT
63 explicit FmtElm(double value) : FmtElm(DOUBLE) { // NOLINT
66 FmtElm(const char* value) : FmtElm(C_STR) { // NOLINT
69 FmtElm(const Vector<const uc16>& value) : FmtElm(LC_STR) { // NOLINT
72 FmtElm(Object* value) : FmtElm(OBJ) { // NOLIN
    [all...]
string-stream.cc 81 void StringStream::Add(Vector<const char> format, Vector<FmtElm> elms) {
106 FmtElm current = elms[elm++];
109 DCHECK_EQ(FmtElm::C_STR, current.type_);
115 DCHECK_EQ(FmtElm::LC_STR, current.type_);
122 DCHECK_EQ(FmtElm::OBJ, current.type_);
128 DCHECK_EQ(FmtElm::INT, current.type_);
326 Add("<unboxed double> %.16g\n", FmtElm(value));

Completed in 154 milliseconds