HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 176 - 200 of 4017) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/test/CodeGen/
2004-02-13-Memset.c 7 void test(int* X, char *Y) { function
asm-label.c 7 int *test(void) { function
  /external/clang/test/CodeGenCXX/
2003-11-02-WeakLinkage.cpp 11 void test() { function
switch-case-folding-2.cpp 5 int test(int val){ function
18 return test(5);
vararg-non-pod.cpp 12 void test(X x) { function
  /external/clang/test/Index/
complete-templates.cpp 13 void test() { function
17 // RUN: c-index-test -code-completion-at=%s:14:2 %s | FileCheck %s
  /external/clang/test/Lexer/
char-escapes.c 3 int test['\\' == 92 ? 1 : -1]; variable
4 int test['\"' == 34 ? 1 : -1]; variable
5 int test['\'' == 39 ? 1 : -1]; variable
6 int test['\?' == 63 ? 1 : -1]; variable
7 int test['\a' == 7 ? 1 : -1]; variable
8 int test['\b' == 8 ? 1 : -1]; variable
9 int test['\e' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
10 int test['\E' == 27 ? 1 : -1]; // expected-warning {{non-standard escape}} variable
11 int test['\f' == 12 ? 1 : -1]; variable
12 int test['\n' == 10 ? 1 : -1] variable
13 int test['\\r' == 13 ? 1 : -1]; variable
14 int test['\\t' == 9 ? 1 : -1]; variable
15 int test['\\v' == 11 ? 1 : -1]; variable
16 int test['\\xa' == 10 ? 1 : -1]; variable
17 int test['\\1' == 1 ? 1 : -1]; variable
18 int test['\\(' == 40 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable
19 int test['\\{' == 123 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable
20 int test['\\[' == 91 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable
21 int test['\\%' == 37 ? 1 : -1]; \/\/ expected-warning {{non-standard escape}} variable
    [all...]
  /external/clang/test/Misc/
diag-verify.cpp 3 // Test the -verify flag. Each of the "x = y;" lines will produce a
6 void test() { function
include-stack-for-note-flag.cpp 8 int test() { function
  /external/clang/test/Sema/
format-strings-fixit-ssize_t.c 6 /* This is a test of the various code modification hints that are
13 void test() { function
format-strings-size_t.c 5 void test(void) { function
warn-write-strings.c 8 void test(wchar_t *dst) { function
  /external/clang/test/SemaCXX/
do-while-scope.cpp 4 void test() { function
writable-strings-deprecated.cpp 11 void test(bool b) function
  /external/stlport/test/unit/
_template.cpp 13 class Test : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
16 CPPUNIT_TEST(test);
20 void test();
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
28 void Test::test() function in class:Test
  /external/v8/test/mjsunit/compiler/
alloc-object-huge.js 30 // Test that huge constructors (more than 256 this assignments) are
33 // Test huge constructor when being inlined into hydrogen.
34 function test() { function
37 test();
38 test();
39 %OptimizeFunctionOnNextCall(test);
40 var o = test();
44 // Test huge constructor with specialized constructor stub.
regress-3260426.js 29 // (false in a test context). This should happen even when inlined
33 function test() { return always_false() ? 0 : 1; } function
35 assertEquals(1, test());
regress-loadfield.js 30 // Regression test for GVN on field loads.
38 function test(a) { function
64 test(a);
66 %OptimizeFunctionOnNextCall(test);
67 test(a);
69 test("");
regress-rep-change.js 28 // Regression test for the case where a phi has two input operands with
31 function test(start) { function
41 test(0);
  /external/v8/test/mjsunit/
global-load-from-eval-in-with.js 32 function test(obj, source) { function
38 // Test shadowing in eval scope.
39 test({ x: 42 }, "assertEquals(42, x)");
40 test({ y: 42 }, "assertEquals(27, x)");
42 // Test shadowing in local scope inside an eval scope.
43 test({ x: 42 }, "function f() { assertEquals(42, x) }; f();");
44 test({ y: 42 }, "function f() { assertEquals(27, x) }; f();");
46 // Test shadowing in local scope inside an eval scope. Deeper nesting
48 test({ x: 42 }, "function f() { function g() { assertEquals(42, x) }; g() }; f();");
49 test({ y: 42 }, "function f() { function g() { assertEquals(27, x) }; g() }; f();")
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
33 // If the test starts to fail in Genesis, consider increasing this constant.
35 function test() { function
37 test(1, test(1));
46 test();
regress-1166.js 34 function test(x) { return observe(1, ((false || false), x + 1)); } function
36 for (var i = 0; i < 5; ++i) test(0);
37 %OptimizeFunctionOnNextCall(test);
38 test(0);
40 test("a");
regress-1181.js 28 // The first count times, test is called with an integer argument and
29 // crankshaft produces code for int32 representation. Test that the
34 function test(x) { function
41 %DeoptimizeFunction(test);
45 i = test(x / 100);
regress-1237.js 33 function test(x) { function
37 for (var i = 0; i < 5; ++i) test(0);
38 %OptimizeFunctionOnNextCall(test);
39 test(0);
41 test("a");
regress-1531.js 28 // Regression test for computing elements keys of arguments object. Should
30 function test(x) { function
36 assertEquals(["0", "10"], test(0));
38 // Regression test for lookup after delete of a dictionary-mode arguments

Completed in 300 milliseconds

1 2 3 4 5 6 78 91011>>