Lines Matching refs:value
117 const char* value = current.data_.u_c_str_;
118 Add(value);
123 base::Vector<const base::uc16> value = *current.data_.u_lc_str_;
124 for (int i = 0; i < value.length(); i++)
125 Put(static_cast<char>(value[i]));
136 int value = current.data_.u_int_;
137 if (0x20 <= value && value <= 0x7F) {
138 Put(value);
139 } else if (value <= 0xFF) {
140 Add("\\x%02x", value);
142 Add("\\u%04x", value);
152 int value = current.data_.u_int_;
154 int length = SNPrintF(formatted, temp.begin(), value);
163 double value = current.data_.u_double_;
164 int inf = std::isinf(value);
169 } else if (std::isnan(value)) {
173 SNPrintF(formatted, temp.begin(), value);
179 void* value = current.data_.u_pointer_;
181 SNPrintF(formatted, temp.begin(), value);
321 Object value = js_object.RawFastPropertyAt(index);
322 Add("%o\n", value);
377 Add(" value(): %o\n",
378 JSPrimitiveWrapper::cast(printee).value());