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

  /external/chromium_org/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
129 void Add(Vector<const char> format, Vector<FmtElm> elms);
132 void Add(const char* format, FmtElm arg0)
    [all...]
  /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
129 void Add(Vector<const char> format, Vector<FmtElm> elms);
132 void Add(const char* format, FmtElm arg0)
    [all...]

Completed in 171 milliseconds