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

1 2

  /external/clang/test/SemaCXX/
static-data-member.cpp 3 struct ABC {
12 double ABC::a = 1.0;
13 extern double ABC::b = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
14 static double ABC::c = 1.0; // expected-error {{'static' can only be specified inside the class definition}}
15 __private_extern__ double ABC::d = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
16 auto double ABC::e = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
17 register double ABC::f = 1.0; // expected-error {{static data member definition cannot specify a storage class}}
  /external/chromium_org/tools/gyp/test/cxxflags/
cxxflags.cc 9 #ifdef ABC
  /external/clang/test/CodeGen/
no-common.c 8 // CHECK-DEFAULT: @ABC = global
9 // CHECK-NOCOMMON: @ABC = global
11 fn_t ABC __attribute__ ((nocommon));
  /external/clang/test/FixIt/
typo-using.cpp 26 class ABC {}; // expected-note {{'::using_suggestion_ty_dropped_specifier::ABC' declared here}}
28 using N::ABC; // expected-error {{no member named 'ABC' in namespace 'using_suggestion_ty_dropped_specifier::N'; did you mean '::using_suggestion_ty_dropped_specifier::ABC'?}}
  /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
tre.stdout.exp 6 Resulting cc is 1 and the string is abc
7 Resulting cc is 0 and the string is ABC
9 Resulting cc is 1 and the string is ABC
10 Resulting cc is 1 and the string is abC
  /external/clang/test/Parser/
cxx-template-argument.cpp 52 template<class T1, typename T2> struct ABC; // expected-note {{template is declared here}}
65 UnknownBase<T1,T2,ABC<T2,T1> > // expected-error {{unknown template name 'UnknownBase'}}
69 UnknownBase<T1,ABC<T2> >, // expected-error {{unknown template name 'UnknownBase'}} \
70 // expected-error {{too few template arguments for class template 'ABC'}}
75 UnknownBase<T1,T2,ABC<T2,T1>> // expected-error {{unknown template name 'UnknownBase'}} \
80 UnknownBase<T1,ABC<T2,T1>>, // expected-error {{unknown template name 'UnknownBase'}} \
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p1.cpp 32 template<typename T> struct ABC {
38 ABC<int> qq;
  /external/clang/test/CodeGenCXX/
2007-04-10-PackedUnion.cpp 5 typedef struct ABC* abc; typedef in typeref:struct:ABC
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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...]
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
test_string.py 36 self.checkequal('abc', ('abc',), 'join', 'a')
98 self.assertEqual(string.maketrans('abc', 'xyz'), transtable)
99 self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzq')
102 self.assertEqual(string.capwords('abc def ghi'), 'Abc Def Ghi')
103 self.assertEqual(string.capwords('abc\tdef\nghi'), 'Abc Def Ghi')
104 self.assertEqual(string.capwords('abc\t def \nghi'), 'Abc Def Ghi'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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...]
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
test_string.py 36 self.checkequal('abc', ('abc',), 'join', 'a')
98 self.assertEqual(string.maketrans('abc', 'xyz'), transtable)
99 self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzq')
102 self.assertEqual(string.capwords('abc def ghi'), 'Abc Def Ghi')
103 self.assertEqual(string.capwords('abc\tdef\nghi'), 'Abc Def Ghi')
104 self.assertEqual(string.capwords('abc\t def \nghi'), 'Abc Def Ghi'
    [all...]
  /external/clang/test/Preprocessor/
line-directive.c 2 // RUN: not %clang_cc1 -E %s 2>&1 | grep 'blonk.c:92:2: error: ABC'
36 #error ABC
38 // expected-error@-2 {{ABC}}
  /external/chromium_org/third_party/sqlite/src/test/
collate8.test 84 INSERT INTO t2 VALUES('abc');
85 INSERT INTO t2 VALUES('ABC');
86 SELECT a AS x FROM t2 WHERE x='abc';
88 } {abc}
91 SELECT a AS x FROM t2 WHERE x='abc' COLLATE nocase;
93 } {abc ABC}
96 SELECT a AS x FROM t2 WHERE (x COLLATE nocase)='abc';
98 } {abc ABC}
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-function-apply.js 71 assertEquals("ABC", A(1,2));
72 assertEquals("ABC", A(1,2));
74 assertEquals("ABC", A(1,2));
76 assertEquals("ABC", A(1,2));
  /external/chromium_org/v8/test/webkit/
regexp-alternatives.js 30 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p"]');
35 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p","p"]');
41 shouldBe('s2.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))\\6/)', '["<p>p","p>",undefined,undefined,undefined,"p>","p"]');
string-sort.js 41 shouldBeInThisOrder(["A", "ABC"]);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cstrtest.c 41 static const char *const abc="abcdefghijklmnopqrstuvwxyz", *const ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; local
47 dest[i]=uprv_tolower(abc[i]);
49 if(0!=strcmp(abc, dest)) {
50 log_err("uprv_tolower(abc) failed\n");
54 dest[i]=uprv_tolower(ABC[i]);
56 if(0!=strcmp(abc, dest)) {
57 log_err("uprv_tolower(ABC) failed\n");
61 dest[i]=uprv_toupper(abc[i]);
63 if(0!=strcmp(ABC, dest))
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cstrtest.c 41 static const char *const abc="abcdefghijklmnopqrstuvwxyz", *const ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; local
47 dest[i]=uprv_tolower(abc[i]);
49 if(0!=strcmp(abc, dest)) {
50 log_err("uprv_tolower(abc) failed\n");
54 dest[i]=uprv_tolower(ABC[i]);
56 if(0!=strcmp(abc, dest)) {
57 log_err("uprv_tolower(ABC) failed\n");
61 dest[i]=uprv_toupper(abc[i]);
63 if(0!=strcmp(ABC, dest))
    [all...]
  /external/chromium_org/ui/gfx/
render_text_win.h 50 ABC abc_widths;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usp10.h 99 HRESULT WINAPI ScriptPlace(HDC hdc,SCRIPT_CACHE *psc,const WORD *pwGlyphs,int cGlyphs,const SCRIPT_VISATTR *psva,SCRIPT_ANALYSIS *psa,int *piAdvance,GOFFSET *pGoffset,ABC *pABC);
116 HRESULT WINAPI ScriptApplyLogicalWidth(const int *piDx,int cChars,int cGlyphs,const WORD *pwLogClust,const SCRIPT_VISATTR *psva,const int *piAdvance,const SCRIPT_ANALYSIS *psa,ABC *pABC,int *piJustify);
121 HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc,SCRIPT_CACHE *psc,WORD wGlyph,ABC *pABC);
314 ABC *pABC
  /external/chromium_org/v8/test/mjsunit/
string-search.js 28 var str="ABC abc";

Completed in 2009 milliseconds

1 2