OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrettyPrint
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/tools/metrics/histograms/
pretty_print.py
111
def
PrettyPrint
(raw_xml):
155
pretty =
PrettyPrint
(xml)
/external/chromium_org/v8/test/mjsunit/
mjsunit.js
124
function
PrettyPrint
(value) {
143
return objectClass + "(" +
PrettyPrint
(value.valueOf()) + ")";
165
return
PrettyPrint
(value);
177
"> found <" +
PrettyPrint
(found) + ">";
236
fail(
PrettyPrint
(arity), args.length,
251
fail(
PrettyPrint
(expected), found, name_opt);
259
fail(
PrettyPrint
(expected), found, name_opt);
356
fail("Object <" +
PrettyPrint
(obj) + "> is not an instance of <" +
/external/chromium_org/v8/test/mjsunit/regress/
regress-put-prototype-transition.js
8
assertSame = function assertSame(expected, found, name_opt) { if (found === expected) { if (expected !== 0 || (1 / expected) == (1 / found)) return; } else if ((expected !== expected) && (found !== found)) { return; } fail(
PrettyPrint
(expected), found, name_opt); }; assertEquals = function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(
PrettyPrint
(expected), found, name_opt); } };
regress-347914.js
28
function
PrettyPrint
(value) { return ""; }
33
assertSame = function assertSame(expected, found, name_opt) { if (found === expected) { if (expected !== 0 || (1 / expected) == (1 / found)) return; } else if ((expected !== expected) && (found !== found)) { return; } fail(
PrettyPrint
(expected), found, name_opt); }; assertEquals = function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(
PrettyPrint
(expected), found, name_opt); } };
43
assertInstanceof = function assertInstanceof(obj, type) { if (!(obj instanceof type)) { var actualTypeName = null; var actualConstructor = Object.getPrototypeOf(obj).constructor; if (typeof actualConstructor == "function") { actualTypeName = actualConstructor.name || String(actualConstructor); } fail("Object <" +
PrettyPrint
(obj) + "> is not an instance of <" + (type.name || type) + ">" + (actualTypeName ? " but of < " + actualTypeName + ">" : "")); } };
/external/stressapptest/src/
error_diag.h
48
void
PrettyPrint
(string spacer = " ");
error_diag.cc
97
void DeviceTree::
PrettyPrint
(string spacer) {
102
itr->second->
PrettyPrint
(spacer+spacer);
/external/chromium_org/chrome/tools/
history-viz.py
53
def
PrettyPrint
(self, include_host=True, include_path=True):
201
pretty = url.
PrettyPrint
(include_host=not host_clustered,
/external/chromium_org/tools/metrics/actions/
extract_actions_test.py
145
return extract_actions.
PrettyPrint
(actions, actions_dict, comments)
/external/chromium_org/v8/test/intl/
assert.js
95
// TODO(cira): Replace String with
PrettyPrint
for objects and arrays.
Completed in 135 milliseconds