Searched refs:abc (Results 1 - 25 of 52) sorted by relevance

123

/external/clang/test/Parser/
H A Dargument_qualified.c2 int abc (const float x) { function
/external/clang/test/CodeGen/
H A D2002-02-16-RenamingTest.c5 void abc(void *);
8 abc(&X);
11 abc(&X);
14 abc(&X);
H A Dsret2.c3 struct abc { struct
9 struct abc foo2(){}
H A Dsret.c3 struct abc { struct
9 struct abc foo1(void);
10 struct abc foo2();
13 struct abc dummy1 = foo1();
14 struct abc dummy2 = foo2();
H A D2002-02-17-ArgumentAddress.c7 void abc(int *X);
9 abc(&Z);
/external/clang/test/Index/
H A Dinvalid-rdar-8236270.cpp5 struct abc *P;
8 // CHECK: StructDecl=abc:5:8 Extent=[5:1 - 5:11]
/external/mesa3d/src/glsl/glcpp/tests/
H A D088-redefine-macro-legitimate.c1 #define abc 123 macro
2 #define abc 123 macro
H A D089-redefine-macro-error.c4 #define abc 123 macro
5 #define abc() 123 macro
/external/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call.C4 virtual void abc(void) const;
7 void Base::abc(void) const {} function in class:Base
10 p->Base::abc();
H A Dapple-kext-indirect-call-2.C9 virtual const char* abc(void) const;
12 const char* A::abc(void) const {return "A"; }; function in class:A
23 const char* c = p->A::abc();
28 struct Base { virtual char* abc(void) const; };
30 char* Base::abc() const { return 0; } function in class:Base
38 char* c = p->Base::abc();
64 virtual char *abc(void) const;
70 char* D2::abc(void) const { return 0; } function in class:D2
75 char* c = p->D2::abc();
H A D2007-04-10-PackedUnion.cpp5 typedef struct ABC* abc; typedef in typeref:struct:ABC
/external/v8/test/mjsunit/
H A Dnumber-string-index-call.js29 var callbacks = [ function() {return 'foo'}, "nonobject", /abc/ ];
32 assertEquals('abc', callbacks['2']("abcdefg"));
H A Dregexp-indexof.js57 CheckMatch(/abc/, "xxxabcxxxabcxxx", [[3, 3]]);
58 CheckMatch(/abc/g, "xxxabcxxxabcxxx", [[3, 3], [9, 3]]);
59 CheckMatch(/abc/, "xxxabababcxxxabcxxx", [[7, 3]]);
60 CheckMatch(/abc/g, "abcabcabc", [[0, 3], [3, 3], [6, 3]]);
65 CheckMatch(/abc/, "abababa", []);
67 assertEquals("xxxdefxxxdefxxx", "xxxabcxxxabcxxx".replace(/abc/g, "def"));
H A Dfunction-without-prototype.js53 var regexp = /abc/g;
/external/clang/test/Preprocessor/
H A Dmacro_fn_lparen_scan.c2 // RUN: %clang_cc1 -E %s | grep 'expand: abc'
4 // RUN: %clang_cc1 -E %s | grep 'expand2: abc'
7 #define foo() abc
10 // This should not expand to abc, because the foo macro isn't followed by (.
14 // This should expand to abc.
H A Dmacro_paste_msextensions.c30 #define foo(x) abc(x)
34 // CHECK: abc(baz(q))
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
H A Dregexparg-1.js45 x = f(/abc/);
58 "new f(/abc/) +''",
59 "/abc/",
60 new f(/abc/) +"" );
63 "f(/abc/)+'')",
64 "/abc/",
65 f(/abc/) +'');
68 "typeof f(/abc/)",
70 typeof f(/abc/) );
73 "typeof new f(/abc/)",
[all...]
H A Dregexparg-2-n.js45 x = f(/abc/);
48 "function f(x) {return x;}; x = f(/abc/); x()",
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
H A Dregress-189898.js65 actual = 'ababc'.replace('abc', '--')
70 actual = 'ababc'.replace('abc', '^$')
104 actual = 'ababc'.replace(/abc/, '--')
109 actual = 'ababc'.replace(/abc/g, '--')
114 actual = 'ababc'.replace(/abc/, '^$')
119 actual = 'ababc'.replace(/abc/g, '^$')
/external/v8/test/mjsunit/compiler/
H A Dliterals-assignment.js43 x = 'abc';\
46 assertEquals("abc", eval(code));
78 code = "b = {x:a, y:'abc'}";
82 assertEquals("abc", b.y);
99 a = /abc/;
101 assertEquals(/abc/, a);
103 code = "/abc/; 8";
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.4.1.js62 var abc;
63 array[item++] = new TestCase( SECTION, "var abc; delete(abc)", false, delete abc );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Dexec-002.js71 /[^abc]def[abc]+/,
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A DRegExp_lastParen.js41 // 'abcd'.match(/(abc)d/); RegExp.lastParen
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp.lastParen",
44 'abc', RegExp.lastParen);
46 // 'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen
47 'abcd'.match(new RegExp('(abc)d'));
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen",
49 'abc', RegExp.lastParen);
54 'abc', RegExp.lastParen);
66 // 'abcdefg'.match(/(^)abc/); RegEx
[all...]
H A DRegExp_lastParen_as_array.js41 // 'abcd'.match(/(abc)d/); RegExp['$+']
42 'abcd'.match(/(abc)d/);
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp['$+']",
44 'abc', RegExp['$+']);
49 'abc', RegExp['$+']);
66 // 'abcdefg'.match(/(^)abc/); RegExp['$+']
67 'abcdefg'.match(/(^)abc/);
68 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^)abc/); RegExp['$+']",
H A Dsource.js49 // /abc\\def/.source
50 testcases[count++] = new TestCase ( SECTION, "/abc\\\\def/.source",
51 "abc\\\\def", /abc\\def/.source);
53 // /abc[\b]def/.source
54 testcases[count++] = new TestCase ( SECTION, "/abc[\\b]def/.source",
55 "abc[\\b]def", /abc[\b]def/.source);
65 // (new RegExp('abc\\\\def')).source
66 testcases[count++] = new TestCase ( SECTION, "(new RegExp('abc\\\\\\\\de
[all...]

Completed in 445 milliseconds

123