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

1 2

  /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/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/clang/test/CXX/expr/expr.unary/expr.sizeof/
p1.cpp 32 template<typename T> struct ABC {
38 ABC<int> qq;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
DataKeyTest.java 33 public static final DataKey<String> ABC = new DataKey<String>() {
44 node.setData(ABC, "Hurray!");
46 node.setData(ABC, "w00t");
48 assertThat(node.getData(ABC)).contains("w00t");
  /external/python/cpython3/Lib/
abc.py 113 Use this metaclass to create an ABC. An ABC can be subclassed
117 be considered subclasses of the registering ABC by the built-in
118 issubclass() function, but the registering ABC won't show up in
120 implementations defined by the registering ABC be callable (not
128 # Note: this counter is private. Use `abc.get_cache_token()` for
152 """Register a virtual subclass of an ABC.
170 """Debug helper to print the ABC registry."""
234 class ABC(metaclass=ABCMeta):
235 """Helper class that provides a standard way to create an ABC usin
    [all...]
  /external/python/cpython3/Lib/test/
test_typechecks.py 6 class ABC(type):
19 class Integer(metaclass=ABC):
test_unicode.py 87 self.assertEqual(ascii('abc'), "'abc'")
129 self.assertEqual(repr('abc'), "'abc'")
213 self.checkequalnofix(0, 'abcdefghiabc', 'find', 'abc')
214 self.checkequalnofix(9, 'abcdefghiabc', 'find', 'abc', 1)
244 self.checkequalnofix(9, 'abcdefghiabc', 'rfind', 'abc')
265 self.checkequalnofix(0, 'abcdefghiabc', 'index', 'abc')
266 self.checkequalnofix(9, 'abcdefghiabc', 'index', 'abc', 1)
268 self.assertRaises(ValueError, 'abcdefghiab'.index, 'abc', 1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /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/python/cpython2/Lib/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 7 class ABC(type):
22 __metaclass__ = ABC
  /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...]
  /art/test/624-checker-stringops/src/
Main.java 23 static final String ABC = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
41 int k = ABC.length() + XYZ.length(); // does LoadString before loops
43 k += ABC.indexOf(c);
46 k += ABC.indexOf(c, 4);
49 k += ABC.indexOf(XYZ);
52 k += ABC.indexOf(XYZ, 2);
72 int k = ABC.length() + XYZ.length(); // does LoadString before loops
74 int d = ABC.indexOf(c);
77 int d = ABC.indexOf(c, 4);
80 int d = ABC.indexOf(XYZ)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.java 64 final ImapString ABC = new ImapSimpleString("AbC");
65 ImapList list = buildList(ImapList.EMPTY, ABC, LIST_1, ImapString.EMPTY);
67 assertFalse(list.is(0, "abc"));
69 assertTrue (list.is(1, "abc"));
70 assertFalse(list.is(2, "abc"));
71 assertFalse(list.is(3, "abc"));
72 assertFalse(list.is(4, "abc"));
76 assertTrue (list.is(1, "abc", false));
83 assertTrue (list.is(1, "abc", true))
    [all...]
  /external/libxml2/
timsort.h 427 int ABC, BCD, CD;
457 ABC = (A <= B + C);
459 ABC = 0;
462 BCD = (B <= C + D) || ABC;
  /external/clang/test/Analysis/
inline.cpp 233 enum ABC {
239 int enumUser(ABC input = B) {
295 char defaultString(const char *s = "abc") {
304 const void * const void_string = "abc";
  /art/test/004-JniTest/src/
Main.java 70 static class ABC { public static int XYZ = 12; }
71 static class DEF extends ABC {}
74 System.out.println("ABC.XYZ = " + ABC.XYZ + ", GetStaticIntField(DEF.class, 'XYZ') = " +
75 getFieldSubclass(ABC.class.getDeclaredField("XYZ"), DEF.class));
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 388 Float4 ABC = M[0] + M[1] + M[2];
390 Float4 A = ABC.x;
391 Float4 B = ABC.y;
392 Float4 C = ABC.z;
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/ppc64/
a.out.go 404 ABC
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/s390x/
a.out.go 344 ABC
  /prebuilts/go/linux-x86/src/cmd/internal/obj/ppc64/
a.out.go 404 ABC
  /prebuilts/go/linux-x86/src/cmd/internal/obj/s390x/
a.out.go 344 ABC

Completed in 973 milliseconds

1 2