HomeSort by relevance Sort by last modified time
    Searched refs:abc (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Parser/
argument_qualified.c 2 int abc (const float x) { function
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call.C 4 virtual void abc(void) const;
7 void Base::abc(void) const {} function in class:Base
10 p->Base::abc();
apple-kext-indirect-call-2.C 9 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();
  /external/clang/test/CodeGen/
2002-02-16-RenamingTest.c 5 void abc(void *);
8 abc(&X);
11 abc(&X);
14 abc(&X);
sret2.c 3 struct abc { struct
9 struct abc foo2(){}
sret.c 3 struct abc { struct
9 struct abc foo1(void);
10 struct abc foo2();
13 struct abc dummy1 = foo1();
14 struct abc dummy2 = foo2();
2002-02-17-ArgumentAddress.c 7 void abc(int *X);
9 abc(&Z);
  /external/clang/test/Index/
invalid-rdar-8236270.cpp 5 struct abc *P;
8 // CHECK: StructDecl=abc:5:8 Extent=[5:1 - 5:11]
  /external/llvm/test/MC/AsmParser/
bad-macro.s 7 .macro abc 33
  /external/clang/test/SemaCXX/
warn-variable-not-needed.cpp 4 static int abc = 42; // expected-warning {{variable 'abc' is not needed and will not be emitted}} member in namespace:test1
7 return abc;
  /external/clang/test/Preprocessor/
macro_fn_lparen_scan.c 2 // 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.
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
089-redefine-macro-error.c 4 #define abc 123 macro
5 #define abc() 123 macro
  /external/mesa3d/src/glsl/glcpp/tests/
089-redefine-macro-error.c 4 #define abc 123 macro
5 #define abc() 123 macro
  /external/chromium_org/v8/test/mjsunit/harmony/
string-contains.js 102 assertTrue("abc".contains("a"));
103 assertTrue("abc".contains("b"));
104 assertTrue("abc".contains("abc"));
105 assertTrue("abc".contains("bc"));
106 assertFalse("abc".contains("d"));
107 assertFalse("abc".contains("abcd"));
108 assertFalse("abc".contains("ac"));
109 assertTrue("abc".contains("abc", 0))
    [all...]
string-startswith.js 114 assertTrue("abc".startsWith("abc"));
115 assertTrue("abcd".startsWith("abc"));
116 assertTrue("abc".startsWith("a"));
117 assertFalse("abc".startsWith("abcd"));
118 assertFalse("abc".startsWith("bcde"));
119 assertFalse("abc".startsWith("b"));
120 assertTrue("abc".startsWith("abc", 0));
121 assertFalse("abc".startsWith("bc", 0))
    [all...]
string-endswith.js 115 assertTrue("abc".endsWith("abc"));
117 assertTrue("abc".endsWith("c"));
118 assertFalse("abc".endsWith("abcd"));
119 assertFalse("abc".endsWith("bbc"));
120 assertFalse("abc".endsWith("b"));
121 assertTrue("abc".endsWith("abc", 3));
122 assertTrue("abc".endsWith("bc", 3));
123 assertFalse("abc".endsWith("a", 3))
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
regexp-bol.js 30 shouldBe('s.match(/^abc/)', '["abc"]');
31 shouldBe('s.match(/(^|X)abc/)', '["abc",""]');
33 shouldBe('s.match(/(^abc|c)123/)', '["abc123","abc"]');
34 shouldBe('s.match(/(c|^abc)123/)', '["abc123","abc"]');
35 shouldBe('s.match(/(^ab|abc)123/)', '["abc123","abc"]');
    [all...]
regexp-bol-with-multiline.js 29 shouldBeNull('s.match(/^abc/)');
30 shouldBe('s.match(/^abc/m)', '["abc"]');
31 shouldBeNull('s.match(/(^|X)abc/)');
32 shouldBe('s.match(/(^|X)abc/m)', '["abc",""]');
33 shouldBe('s.match(/(^a|Xa)bc/m)', '["abc","a"]');
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 54 StringRef abc = "abc"; local
55 theString.assign(abc.begin(), abc.end());
57 EXPECT_STREQ("abc", theString.c_str());
61 StringRef abc = "abc"; local
62 theString.assign(abc);
64 EXPECT_STREQ("abc", theString.c_str());
68 StringRef abc = "abc" local
76 StringRef abc = "abc"; local
84 StringRef abc = "abc"; local
92 StringRef abc = "abc"; local
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
operators.js 306 shouldBeTrue("'abc' == 'abc'");
307 shouldBeTrue("'abc' != 'xyz'");
332 shouldBeTrue("nonSpeculativeEqual('abc', 'abc')");
333 shouldBeTrue("nonSpeculativeNotEqual('abc', 'xyz')");
358 shouldBe("'abc' < 'abx'", "true");
359 shouldBe("'abc' < 'abcd'", "true");
360 shouldBe("'abc' < 'abc'", "false")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abc.py 4 """Unit tests for abc.py."""
9 import abc namespace
16 @abc.abstractmethod
23 @abc.abstractproperty
30 __metaclass__ = abc.ABCMeta
31 @abc.abstractproperty
39 for abstractthing in [abc.abstractmethod, abc.abstractproperty]:
41 __metaclass__ = abc.ABCMeta
67 __metaclass__ = abc.ABCMet
    [all...]
test_tokenize.py 248 >>> dump_tokens("x = u'abc' + U'ABC'")
251 STRING "u'abc'" (1, 4) (1, 10)
253 STRING "U'ABC'" (1, 13) (1, 19)
254 >>> dump_tokens('y = u"ABC" + U"ABC"')
257 STRING 'u"ABC"' (1, 4) (1, 10)
259 STRING 'U"ABC"' (1, 13) (1, 19)
260 >>> dump_tokens("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abc.py 4 """Unit tests for abc.py."""
9 import abc namespace
16 @abc.abstractmethod
23 @abc.abstractproperty
30 __metaclass__ = abc.ABCMeta
31 @abc.abstractproperty
39 for abstractthing in [abc.abstractmethod, abc.abstractproperty]:
41 __metaclass__ = abc.ABCMeta
67 __metaclass__ = abc.ABCMet
    [all...]
test_tokenize.py 248 >>> dump_tokens("x = u'abc' + U'ABC'")
251 STRING "u'abc'" (1, 4) (1, 10)
253 STRING "U'ABC'" (1, 13) (1, 19)
254 >>> dump_tokens('y = u"ABC" + U"ABC"')
257 STRING 'u"ABC"' (1, 4) (1, 10)
259 STRING 'U"ABC"' (1, 13) (1, 19)
260 >>> dump_tokens("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'"
    [all...]
  /external/valgrind/main/none/tests/s390x/
tr.stdout.exp 4 the translated string is ABC
5 the translated string is ABC
7 the translated string is abc
8 the translated string is abc

Completed in 1744 milliseconds

1 2 3 4 5 6 7 8