HomeSort by relevance Sort by last modified time
    Searched full:prototype (Results 1 - 25 of 4153) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/fast/js/kde/
inbuilt_function_proto.js 25 shouldBe("Object.prototype.toString.__proto__","Function.prototype");
26 shouldBe("Object.prototype.valueOf.__proto__","Function.prototype");
27 shouldBe("Array.prototype.toString.__proto__","Function.prototype");
28 shouldBe("Array.prototype.toLocaleString.__proto__","Function.prototype");
29 shouldBe("Array.prototype.concat.__proto__","Function.prototype");
    [all...]
inbuilt_function_proto-expected.txt 29 PASS Object.prototype.toString.__proto__ is Function.prototype
30 PASS Object.prototype.valueOf.__proto__ is Function.prototype
31 PASS Array.prototype.toString.__proto__ is Function.prototype
32 PASS Array.prototype.toLocaleString.__proto__ is Function.prototype
33 PASS Array.prototype.concat.__proto__ is Function.prototype
    [all...]
prototype_proto.js 25 shouldBe("Object.prototype.__proto__ == Object.prototype","false");
26 shouldBe("Function.prototype.__proto__","Object.prototype");
27 shouldBe("Array.prototype.__proto__","Object.prototype");
28 shouldBe("String.prototype.__proto__","Object.prototype");
29 shouldBe("Boolean.prototype.__proto__","Object.prototype");
    [all...]
prototype_length.js 25 shouldBe("Object.prototype.length","undefined");
26 shouldBe("Function.prototype.length","0");
27 shouldBe("Array.prototype.length","0");
28 shouldBe("String.prototype.length","0");
29 shouldBe("Boolean.prototype.length","undefined");
30 shouldBe("Number.prototype.length","undefined");
31 shouldBe("Date.prototype.length","undefined");
32 shouldBe("RegExp.prototype.length","undefined");
33 shouldBe("Error.prototype.length","undefined");
36 Array.prototype.length = 6
    [all...]
object_prototype.js 25 // Object.prototype.hasOwnProperty
32 MyClass.prototype = { x : 1 };
48 // Object.prototype.isPrototypeOf
54 Class1.prototype = new Object();
55 Class1.prototype.hasClass1 = true;
56 Class2.prototype = new Class1();
57 Class2.prototype.hasClass2 = true;
58 Class3.prototype = new Class2();
59 Class3.prototype.hasClass3 = true;
66 shouldBe("Class1.prototype.isPrototypeOf(obj)","true")
    [all...]
prototype_proto-expected.txt 29 PASS Object.prototype.__proto__ == Object.prototype is false
30 PASS Function.prototype.__proto__ is Object.prototype
31 PASS Array.prototype.__proto__ is Object.prototype
32 PASS String.prototype.__proto__ is Object.prototype
33 PASS Boolean.prototype.__proto__ is Object.prototype
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
LIST 3 prototype-1.6.0.3
4 concat-jquery-mootools-prototype
  /external/v8/test/mjsunit/
function-call.js 30 [Object.prototype.toLocaleString,
31 Object.prototype.valueOf,
32 Object.prototype.hasOwnProperty,
33 Object.prototype.isPrototypeOf,
34 Object.prototype.propertyIsEnumerable,
35 Array.prototype.concat,
36 Array.prototype.join,
37 Array.prototype.pop,
38 Array.prototype.push,
39 Array.prototype.reverse
    [all...]
length.js 32 assertEquals(0, Array.prototype.length, "Array.prototype.length");
34 assertEquals(1, Array.prototype.concat.length, "Array.prototype.concat.length");
35 assertEquals(1, Array.prototype.join.length, "Array.prototype.join.length");
36 assertEquals(1, Array.prototype.push.length, "Array.prototype.push.length");
37 assertEquals(1, Array.prototype.unshift.length, "Array.prototype.unshift.length")
    [all...]
  /external/chromium_org/v8/test/mjsunit/
function-call.js 30 [Object.prototype.toLocaleString,
31 Object.prototype.valueOf,
32 Object.prototype.hasOwnProperty,
33 Object.prototype.isPrototypeOf,
34 Object.prototype.propertyIsEnumerable,
35 Array.prototype.concat,
36 Array.prototype.join,
37 Array.prototype.pop,
38 Array.prototype.push,
39 Array.prototype.reverse
    [all...]
length.js 32 assertEquals(0, Array.prototype.length, "Array.prototype.length");
34 assertEquals(1, Array.prototype.concat.length, "Array.prototype.concat.length");
35 assertEquals(1, Array.prototype.join.length, "Array.prototype.join.length");
36 assertEquals(1, Array.prototype.push.length, "Array.prototype.push.length");
37 assertEquals(1, Array.prototype.unshift.length, "Array.prototype.unshift.length")
    [all...]
value-wrapper.js 103 // Test with normal setup of prototype.
104 String.prototype.TypeOfThis = TypeOfThis;
105 Boolean.prototype.TypeOfThis = TypeOfThis;
106 Number.prototype.TypeOfThis = TypeOfThis;
107 Boolean.prototype[7] = TypeOfThis;
108 Number.prototype[7] = TypeOfThis;
110 String.prototype.ObjectValueOf = Object.prototype.valueOf;
111 Boolean.prototype.ObjectValueOf = Object.prototype.valueOf
    [all...]
  /external/chromium_org/v8/test/webkit/
prototypes.js 28 shouldBe("('').__proto__", "String.prototype");
29 shouldBe("(0).__proto__", "Number.prototype");
30 shouldBe("([]).__proto__", "Array.prototype");
31 shouldBe("({}).__proto__", "Object.prototype");
32 shouldBe("(new Date).__proto__", "Date.prototype");
33 shouldBe("(new Number).__proto__", "Number.prototype");
34 shouldBe("(new Object).__proto__", "Object.prototype");
35 shouldBe("(new String).__proto__", "String.prototype");
36 shouldBe("Array.prototype.__proto__", "Object.prototype");
    [all...]
prototypes-expected.txt 29 PASS ('').__proto__ is String.prototype
30 PASS (0).__proto__ is Number.prototype
31 PASS ([]).__proto__ is Array.prototype
32 PASS ({}).__proto__ is Object.prototype
33 PASS (new Date).__proto__ is Date.prototype
34 PASS (new Number).__proto__ is Number.prototype
35 PASS (new Object).__proto__ is Object.prototype
36 PASS (new String).__proto__ is String.prototype
37 PASS Array.prototype.__proto__ is Object.prototype
    [all...]
array-proto-func-length-getter-except-expected.txt 24 This test checks that functions on the array prototype correctly handle exceptions from length getters when called on non-array objects.
29 PASS test(Array.prototype.join) is true
30 PASS test(Array.prototype.pop) is true
31 PASS test(Array.prototype.push) is true
32 PASS test(Array.prototype.reverse) is true
33 PASS test(Array.prototype.shift) is true
34 PASS test(Array.prototype.slice) is true
35 PASS test(Array.prototype.sort) is true
36 PASS test(Array.prototype.splice) is true
37 PASS test(Array.prototype.unshift) is tru
    [all...]
array-proto-func-length-getter-except.js 25 "This test checks that functions on the array prototype correctly handle exceptions from length getters when called on non-array objects."
47 shouldBeTrue("test(Array.prototype.join)");
48 shouldBeTrue("test(Array.prototype.pop)");
49 shouldBeTrue("test(Array.prototype.push)");
50 shouldBeTrue("test(Array.prototype.reverse)");
51 shouldBeTrue("test(Array.prototype.shift)");
52 shouldBeTrue("test(Array.prototype.slice)");
53 shouldBeTrue("test(Array.prototype.sort)");
54 shouldBeTrue("test(Array.prototype.splice)");
55 shouldBeTrue("test(Array.prototype.unshift)")
    [all...]
array-proto-func-property-getter-except-expected.txt 24 This test checks that functions on the array prototype correctly handle exceptions from property getters when called on non-array objects.
29 PASS test(Array.prototype.sort) is true
30 PASS test(Array.prototype.every) is true
31 PASS test(Array.prototype.some) is true
32 PASS test(Array.prototype.forEach) is true
33 PASS test(Array.prototype.map) is true
34 PASS test(Array.prototype.filter) is true
35 PASS test(Array.prototype.reduce) is true
36 PASS test(Array.prototype.reduceRight) is true
37 PASS test(Array.prototype.join) is tru
    [all...]
array-proto-func-property-getter-except.js 25 "This test checks that functions on the array prototype correctly handle exceptions from property getters when called on non-array objects."
49 shouldBeTrue("test(Array.prototype.sort)");
50 shouldBeTrue("test(Array.prototype.every)");
51 shouldBeTrue("test(Array.prototype.some)");
52 shouldBeTrue("test(Array.prototype.forEach)");
53 shouldBeTrue("test(Array.prototype.map)");
54 shouldBeTrue("test(Array.prototype.filter)");
55 shouldBeTrue("test(Array.prototype.reduce)");
56 shouldBeTrue("test(Array.prototype.reduceRight)");
59 shouldBeTrue("test(Array.prototype.join)")
    [all...]
  /external/libvpx/libvpx/vpx_scale/
vpx_scale_rtcd.sh 10 prototype void vp8_horizontal_line_5_4_scale "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width"
11 prototype void vp8_vertical_band_5_4_scale "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"
12 prototype void vp8_horizontal_line_5_3_scale "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width"
13 prototype void vp8_vertical_band_5_3_scale "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"
14 prototype void vp8_horizontal_line_2_1_scale "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width"
15 prototype void vp8_vertical_band_2_1_scale "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"
16 prototype void vp8_vertical_band_2_1_scale_i "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"
19 prototype void vp8_yv12_extend_frame_borders "struct yv12_buffer_config *ybf"
22 prototype void vp8_yv12_copy_frame "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc"
25 prototype void vpx_yv12_copy_y "const struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc
    [all...]
  /external/oprofile/m4/
poptconst.m4 1 dnl AX_POPT_CONST - check popt prototype
4 AC_MSG_CHECKING([popt prototype])
13 AC_MSG_RESULT([takes const char **]); AC_DEFINE(CONST_POPT, 1, [whether popt prototype takes a const char **]))
  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
heap-snapshot-performance-test.js 4 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildEdgeIndexes");
5 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildRetainers");
6 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildDominatedNodes");
7 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateFlags");
8 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_buildAggregates");
9 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateClassesRetainedSize");
10 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateDistances");
11 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_calculateRetainedSizes");
12 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_markDetachedDOMTreeNodes");
13 InspectorTest.measureFunction(WebInspector.JSHeapSnapshot.prototype, "_markQueriableHeapObjects")
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_rtcd_defs.sh 34 prototype void vp9_d207_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
37 prototype void vp9_d45_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
40 prototype void vp9_d63_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
43 prototype void vp9_h_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
46 prototype void vp9_d117_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
49 prototype void vp9_d135_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
52 prototype void vp9_d153_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
55 prototype void vp9_v_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
58 prototype void vp9_tm_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left"
61 prototype void vp9_dc_predictor_4x4 "uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t * (…)
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
toString-number-expected.txt 24 Test the conversion performed by the function Number.prototype.toString.
30 PASS Number.prototype.toString.call(0) is "0"
31 PASS Number.prototype.toString.call(new Number(0)) is "0"
35 PASS Number.prototype.toString.call(0, 2) is "0"
36 PASS Number.prototype.toString.call(new Number(0), 2) is "0"
38 PASS Number.prototype.toString.call(0, 36) is "0"
39 PASS Number.prototype.toString.call(new Number(0), 36) is "0"
41 PASS Number.prototype.toString.call(-1) is "-1"
42 PASS Number.prototype.toString.call(new Number(-1)) is "-1"
46 PASS Number.prototype.toString.call(-1, 2) is "-1
    [all...]
array-prototype-properties-expected.txt 29 PASS Array.prototype.toString.call(undefined) threw exception TypeError: Cannot convert undefined or null to object.
30 PASS Array.prototype.toLocaleString.call(undefined) threw exception TypeError: Cannot convert undefined or null to object.
31 PASS Array.prototype.concat.call(undefined, []) threw exception TypeError: Array.prototype.concat called on null or undefined.
32 PASS Array.prototype.join.call(undefined, []) threw exception TypeError: Array.prototype.join called on null or undefined.
33 PASS Array.prototype.pop.call(undefined) threw exception TypeError: Array.prototype.pop called on null or undefined.
34 PASS Array.prototype.push.call(undefined, {}) threw exception TypeError: Array.prototype.push called on null or undefined
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptExterns.js 35 InjectedScriptHostClass.prototype.storageId = function(object) { }
36 InjectedScriptHostClass.prototype.getInternalProperties = function(object) { }
40 InjectedScriptHostClass.prototype.functionDetails = function(func) { }
44 InjectedScriptHostClass.prototype.isHTMLAllCollection = function(object) { }
48 InjectedScriptHostClass.prototype.internalConstructorName = function(object) { }
52 InjectedScriptHostClass.prototype.copyText = function(object) { }
53 InjectedScriptHostClass.prototype.clearConsoleMessages = function() { }
57 InjectedScriptHostClass.prototype.inspectedObject = function(index) { }
62 InjectedScriptHostClass.prototype.objectId = function(object) { }
66 InjectedScriptHostClass.prototype.releaseObjectId = function(object) {
    [all...]

Completed in 1911 milliseconds

1 2 3 4 5 6 7 8 91011>>