HomeSort by relevance Sort by last modified time
    Searched defs:actual (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/tests/
hash.c 25 unsigned long int actual = elf_hash (name); local
27 return actual != expected;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-310425-02.js 40 var actual = ''; variable
47 actual = Array(1).indexOf(1);
48 reportCompare(expect, actual, summary);
regress-320887.js 40 var actual = 'No error'; variable
52 actual = ex + '';
55 reportCompare(expect, actual, summary);
regress-310425-01.js 40 var actual = ''; variable
47 actual = [].lastIndexOf(undefined, -1);
48 reportCompare(expect, actual, summary);
51 actual = [].indexOf(undefined, -1);
52 reportCompare(expect, actual, summary);
57 actual = x.lastIndexOf(1);
58 reportCompare(expect, actual, summary);
regress-305002.js 40 var actual = ''; variable
54 actual = [].every(callback) && notcalled;
56 reportCompare(expect, actual, summary);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/Regress/
regress-301574.js 41 var actual = 'No error'; variable
53 actual = 'error: ' + e;
56 reportCompare(expect, actual, summary + ': XML()');
64 actual = 'error: ' + e;
67 reportCompare(expect, actual, summary + ': XMLList()');
regress-311157-01.js 40 var actual = 'No Crash'; variable
54 reportCompare(expect, actual, summary);
regress-311157-02.js 40 var actual = 'No Crash'; variable
54 reportCompare(expect, actual, summary);
regress-314887.js 40 var actual = 'No Crash'; variable
51 reportCompare(expect, actual, summary);
regress-320172.js 40 var actual = 'No Crash'; variable
56 reportCompare(expect, actual, summary);
regress-309242.js 40 var actual = ''; variable
53 actual = true;
55 <!-- comment -->; actual = false;
57 reportCompare(expect, actual, summary + ': &lt;!-- is comment to end of line');
60 actual = false;
63 actual = true;
66 reportCompare(expect, actual, summary + ': comment hack works inside script');
73 actual = x.nodeKind();
75 reportCompare(expect, actual, summary + ': E4X is available');
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/String/
regress-306591.js 40 var actual = ''; variable
48 actual = String.split(new String('abc'), '').toString();
49 reportCompare(expect, actual, summary +
53 actual = String.substring(new Number(123), 1, 2);
54 reportCompare(expect, actual, summary +
58 actual = String.toUpperCase(new Boolean(true));
59 reportCompare(expect, actual, summary +
63 actual = String.indexOf(null, 'l');
64 reportCompare(expect, actual, summary +
68 actual = String.indexOf(String(null), 'l');
    [all...]
  /external/chromium/third_party/icu/source/common/
locbased.h 52 * object. Either the valid or the actual locale may be
62 * object. Either the valid or the actual locale may be
74 * @param actual the ID of the actual locale
76 void setLocaleIDs(const char* valid, const char* actual);
82 char* actual; member in class:LocaleBased
86 valid(validAlias), actual(actualAlias) {
92 valid((char*)validAlias), actual((char*)actualAlias) {
  /external/icu4c/common/
locbased.h 52 * object. Either the valid or the actual locale may be
62 * object. Either the valid or the actual locale may be
74 * @param actual the ID of the actual locale
76 void setLocaleIDs(const char* valid, const char* actual);
82 char* actual; member in class:LocaleBased
86 valid(validAlias), actual(actualAlias) {
92 valid((char*)validAlias), actual((char*)actualAlias) {
  /external/v8/test/mjsunit/
enumeration-order.js 103 var actual = []; variable
104 for (var p in o) actual.push(p);
105 assertArrayEquals(expected, actual);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-001.js 37 var actual = ''; variable
57 actual = obj.five;
59 reportCompare (expect, actual, status);
62 actual = obj.five;
64 reportCompare (expect, actual, status);
71 actual = obj.five;
73 reportCompare (expect, actual, status);
76 actual = obj.five;
78 reportCompare (expect, actual, status);
85 actual = obj.five
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_6/
template.js 40 var actual = ''; variable
54 reportCompare(expect, actual, summary);
  /external/skia/src/svg/
SkSVG.cpp 32 size_t actual = stream->read(data, size); variable
33 SkASSERT(size == actual);
35 return parser.parse(data, actual, &fErrorCode, &fErrorLineNumber);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Object/
regress-72773.js 36 var actual = ''; variable
56 actual = getJSClass(e);
72 reportCompare(expect, actual, status);
  /cts/tests/tests/text/src/android/text/cts/
Editable_FactoryTest.java 46 Editable actual = mFactory.newEditable(source); local
47 assertEquals(expected.toString(), actual.toString());
  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_AlignTest.java 59 // set the actual value
60 Align[] actual = Align.values(); local
62 assertEquals(3, actual.length);
63 assertEquals(Align.LEFT, actual[0]);
64 assertEquals(Align.CENTER, actual[1]);
65 assertEquals(Align.RIGHT, actual[2]);
70 p.setTextAlign(actual[0]);
72 p.setTextAlign(actual[1]);
74 p.setTextAlign(actual[2]);
Paint_CapTest.java 60 // set the actual value
61 Cap[] actual = Cap.values(); local
63 assertEquals(3, actual.length);
64 assertEquals(Cap.BUTT, actual[0]);
65 assertEquals(Cap.ROUND, actual[1]);
66 assertEquals(Cap.SQUARE, actual[2]);
71 p.setStrokeCap(actual[0]);
73 p.setStrokeCap(actual[1]);
75 p.setStrokeCap(actual[2]);
Paint_JoinTest.java 59 // set the actual value
60 Join[] actual = Join.values(); local
62 assertEquals(3, actual.length);
63 assertEquals(Join.MITER, actual[0]);
64 assertEquals(Join.ROUND, actual[1]);
65 assertEquals(Join.BEVEL, actual[2]);
70 p.setStrokeJoin(actual[0]);
72 p.setStrokeJoin(actual[1]);
74 p.setStrokeJoin(actual[2]);
Paint_StyleTest.java 59 // set the actual value
60 Style[] actual = Style.values(); local
62 assertEquals(3, actual.length);
63 assertEquals(Style.FILL, actual[0]);
64 assertEquals(Style.STROKE, actual[1]);
65 assertEquals(Style.FILL_AND_STROKE, actual[2]);
70 p.setStyle(actual[0]);
72 p.setStyle(actual[1]);
74 p.setStyle(actual[2]);
PathDashPathEffect_StyleTest.java 53 Style[] actual = Style.values(); local
54 assertEquals(expected.length, actual.length);
55 for (int i = 0; i < actual.length; i ++) {
56 assertEquals(expected[i], actual[i]);

Completed in 211 milliseconds

1 2 3 4 5 6 7 8 91011>>