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

1 2 3 4

  /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}}
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
macro1.s 2 ADDX .macro ABC
4 .asg :ABC(1):,TMP
6 ADD ABC,A
8 .emsg "Bad macro parameter 'ABC'"
macro.s 4 .global abc, def, ghi, adr
9 IN_MLIB abc,def,ghi
17 add3 abc, def, ghi, adr
30 ADDX .macro ABC
32 .asg :ABC(1):,TMP
34 ADD ABC,A
36 .emsg "Bad macro parameter 'ABC'"
  /external/clang/test/CodeGen/
no-common.c 8 // CHECK-DEFAULT: @ABC = global
9 // CHECK-NOCOMMON: @ABC = global
11 fn_t ABC __attribute__ ((nocommon));
  /art/test/624-checker-stringops/src/
Main.java 22 static final String ABC = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
40 int k = ABC.length() + XYZ.length(); // does LoadString before loops
42 k += ABC.indexOf(c);
45 k += ABC.indexOf(c, 4);
48 k += ABC.indexOf(XYZ);
51 k += ABC.indexOf(XYZ, 2);
71 int k = ABC.length() + XYZ.length(); // does LoadString before loops
73 int d = ABC.indexOf(c);
76 int d = ABC.indexOf(c, 4);
79 int d = ABC.indexOf(XYZ)
    [all...]
  /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/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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/macros/
altmacro.s 6 .macro ABC
22 ABC
  /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
  /external/clang/test/Parser/
cxx-template-argument.cpp 59 template<class T1, typename T2> struct ABC; // expected-note {{template is declared here}}
72 UnknownBase<T1,T2,ABC<T2,T1> > // expected-error {{unknown template name 'UnknownBase'}}
76 UnknownBase<T1,ABC<T2> >, // expected-error {{unknown template name 'UnknownBase'}} \
77 // expected-error {{too few template arguments for class template 'ABC'}}
82 UnknownBase<T1,T2,ABC<T2,T1>> // expected-error {{unknown template name 'UnknownBase'}}
89 UnknownBase<T1,ABC<T2,T1>>, // expected-error {{unknown template name 'UnknownBase'}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /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}}
  /build/kati/testcase/
wildcard.mk 13 files += $(wildcard [ABC] C B A)
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
AcpiPlatformDxe.inf 18 FILE_GUID = 49970331-E3FA-4637-9ABC-3B7868676970
  /external/curl/lib/
objnames-test10.sh 95 expect=16ABC
99 argstr=123__678_.ABC._FGH__KLM__PQRSTUV
145 expect=1567890ABC
objnames-test08.sh 95 expect=16ABC
99 argstr=123__678_.ABC._FGH__KLM__PQRSTUV
  /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/python/cpython2/Lib/test/
test_tokenize.py 214 self.check_tokenize("x = u'abc' + U'ABC'", """\
217 STRING "u'abc'" (1, 4) (1, 10)
219 STRING "U'ABC'" (1, 13) (1, 19)
221 self.check_tokenize('y = u"ABC" + U"ABC"', """\
224 STRING 'u"ABC"' (1, 4) (1, 10)
226 STRING 'U"ABC"' (1, 13) (1, 19)
228 self.check_tokenize("x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'", """
    [all...]

Completed in 733 milliseconds

1 2 3 4