Home
last modified time | relevance | path

Searched refs:ABC (Results 1 – 25 of 251) sorted by relevance

1234567891011

/external/clang/test/SemaCXX/
Dstatic-data-member.cpp3 struct ABC { struct
12 double ABC::a = 1.0; argument
13 extern double ABC::b = 1.0; // expected-error {{static data member definition cannot specify a stor…
14 static double ABC::c = 1.0; // expected-error {{'static' can only be specified inside the class de…
15 __private_extern__ double ABC::d = 1.0; // expected-error {{static data member definition cannot sp…
16 auto double ABC::e = 1.0; // expected-error {{static data member definition cannot specify a storag…
17 register double ABC::f = 1.0; // expected-error {{static data member definition cannot specify a st…
/external/python/cpython3/Lib/test/
Dtokenize_tests.txt113 x = b'abc' + B'ABC'
114 y = b"abc" + B"ABC"
115 x = br'abc' + Br'ABC' + bR'ABC' + BR'ABC'
116 y = br"abc" + Br"ABC" + bR"ABC" + BR"ABC"
117 x = rb'abc' + rB'ABC' + Rb'ABC' + RB'ABC'
118 y = rb"abc" + rB"ABC" + Rb"ABC" + RB"ABC"
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/
Dlifetime-throw.ll7 %struct.ABC = type { i32 }
14 @_ZTS3ABC = linkonce_odr constant [5 x i8] c"3ABC\00", comdat
20 %x = alloca %struct.ABC, align 4
21 %0 = bitcast %struct.ABC* %x to i8*
31 …, i8* bitcast ({ i8*, i8* }* @_ZTI3ABC to i8*), i8* bitcast (void (%struct.ABC*)* @_ZN3ABCD2Ev to …
39 call void @_ZN3ABCD2Ev(%struct.ABC* nonnull %x)
57 $"\01??1ABC@@QEAA@XZ" = comdat any
68 …o { i32 0, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (void (%struct.ABC*)* @"\01??1ABC@@QEAA@XZ" to…
73 %x = alloca %struct.ABC, align 4
74 %tmp = alloca %struct.ABC, align 4
[all …]
/external/python/cpython3/Doc/library/
Dabc.rst28 a helper class :class:`ABC` to alternatively define ABCs through inheritance:
30 .. class:: ABC
33 an abstract base class can be created by simply deriving from :class:`ABC`
36 from abc import ABC
38 class MyABC(ABC):
41 Note that the type of :class:`ABC` is still :class:`ABCMeta`, therefore
42 inheriting from :class:`ABC` requires the usual precautions regarding
59 Use this metaclass to create an ABC. An ABC can be subclassed directly, and
63 ABC by the built-in :func:`issubclass` function, but the registering ABC
65 implementations defined by the registering ABC be callable (not even via
[all …]
Dcollections.abc.rst38 ABC Inherits from Abstract Methods Mixin Methods
110 ABC for classes that provide the :meth:`__iter__` method.
120 ABC for sized iterable container classes.
126 ABC for classes that provide the :meth:`~iterator.__iter__` and
132 ABC for iterable classes that also provide the :meth:`__reversed__`
139 ABC for generator classes that implement the protocol defined in
184 ABC for :term:`awaitable` objects, which can be used in :keyword:`await`
189 :class:`~collections.abc.Coroutine` ABC are all instances of this ABC.
202 ABC for coroutine compatible classes. These implement the
220 ABC for classes that provide ``__aiter__`` method. See also the
[all …]
/external/python/cpython2/Lib/test/
Dtokenize_tests.txt113 x = u'abc' + U'ABC'
114 y = u"abc" + U"ABC"
115 x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'
116 y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"
/external/pcre/dist2/testdata/
Dtestinput12137 ABC\x{09}
138 ABC\x{20}
139 ABC\x{a0}
140 ABC\x{1680}
141 ABC\x{180e}
142 ABC\x{2000}
143 ABC\x{202f}
144 ABC\x{205f}
145 ABC\x{3000}
148 ABC\x{0a}
[all …]
Dtestinput10251 ABC\x{09}
252 ABC\x{20}
253 ABC\x{a0}
254 ABC\x{1680}
255 ABC\x{180e}
256 ABC\x{2000}
257 ABC\x{202f}
258 ABC\x{205f}
259 ABC\x{3000}
262 ABC\x{0a}
[all …]
/external/python/cpython2/Doc/library/
Dabc.rst34 Use this metaclass to create an ABC. An ABC can be subclassed directly, and
38 ABC by the built-in :func:`issubclass` function, but the registering ABC
40 implementations defined by the registering ABC be callable (not even via
47 Register *subclass* as a "virtual subclass" of this ABC. For
66 Check whether *subclass* is considered a subclass of this ABC. This means
69 subclass of the ABC. (This class method is called from the
70 :meth:`__subclasscheck__` method of the ABC.)
73 it returns ``True``, the *subclass* is considered a subclass of this ABC.
75 this ABC, even if it would normally be one. If it returns
82 For a demonstration of these concepts, look at this example ABC definition::
[all …]
/external/curl/tests/data/
Dtest122134 result: 16ABC expected: 16ABC input: 123__678__ABC..FGH..KLM..PQRSTUV
35 result: 16 expected: 16 input: 123__678_.ABC._FGH__KLM__PQRSTUV
44 result: 1567890ABC expected: 1567890ABC input: 123_567890ABCDEFGHIJKLMNOPQRSTUV
Dtest122234 result: 16ABC expected: 16ABC input: 123__678__ABC..FGH..KLM..PQRSTUV
35 result: 16 expected: 16 input: 123__678_.ABC._FGH__KLM__PQRSTUV
/external/clang/test/Parser/
Dcxx-template-argument.cpp59 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'}} \
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'}}
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
DDataKeyTest.java33 public static final DataKey<String> ABC = new DataKey<String>() { field in DataKeyTest
44 node.setData(ABC, "Hurray!"); in addAFewKeysAndSeeIfTheyAreStoredCorrectly()
46 node.setData(ABC, "w00t"); in addAFewKeysAndSeeIfTheyAreStoredCorrectly()
48 assertThat(node.getData(ABC)).contains("w00t"); in addAFewKeysAndSeeIfTheyAreStoredCorrectly()
/external/scapy/scapy/contrib/
Dpnio_rtc.uts26 raw(PNIORealTimeRawData(load='ABC', config={'length': 5})) == b'ABC\x00\x00'
36 p = PNIORealTimeRawData('ABC', config={'length': 5})
37 p == PNIORealTimeRawData(load=b'ABC', config={'length': 5})
49 raw(Profisafe(load=b'ABCDEF', config={'length': 7, 'CRC': 3})) == b'ABC\0\0\0\0'
52 p = Profisafe(b'ABC\x20\x12\x34\x56\x80\x01\x02', config={'length': 7, 'CRC': 3})
53 p == Profisafe(load=b'ABC', Control_Status=0x20, CRC=0x123456, config={'length': 7, 'CRC': 3}) / PN…
56 raw(Profisafe(load=b'ABC', Control_Status=0x33, CRC=0x12345678, config={'length': 8, 'CRC': 4})) ==…
/external/icu/icu4c/source/test/testdata/
Dre_tests.txt264 'abc'i ABC y $& ABC
268 'abc'i XABCY y $& ABC
269 'abc'i ABABC y $& ABC
270 'ab*c'i ABC y $& ABC
271 'ab*bc'i ABC y $& ABC
276 'ab+bc'i ABC n - -
285 'ab??bc'i ABC y $& ABC
286 'ab{0,1}?bc'i ABC y $& ABC
288 'ab??c'i ABC y $& ABC
289 'ab{0,1}?c'i ABC y $& ABC
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopStrengthReduce/
D2007-04-23-UseIterator.ll7 define i8* @foo( i8* %ABC) {
22 %ABC.2146.0.rec = mul i32 %indvar, 3 ; <i32> [#uses=1]
26 %tmp138145.rec = add i32 %ABC.2146.0.rec, 3 ; <i32> [#uses=1]
27 %tmp138145 = getelementptr i8, i8* %ABC, i32 %tmp138145.rec ; <i8*> [#uses=4]
/external/swiftshader/third_party/LLVM/test/Transforms/LoopStrengthReduce/
D2007-04-23-UseIterator.ll7 define i8* @foo( i8* %ABC) {
22 %ABC.2146.0.rec = mul i32 %indvar, 3 ; <i32> [#uses=1]
26 %tmp138145.rec = add i32 %ABC.2146.0.rec, 3 ; <i32> [#uses=1]
27 %tmp138145 = getelementptr i8* %ABC, i32 %tmp138145.rec ; <i8*> [#uses=4]
/external/llvm/test/Transforms/LoopStrengthReduce/
D2007-04-23-UseIterator.ll7 define i8* @foo( i8* %ABC) {
22 %ABC.2146.0.rec = mul i32 %indvar, 3 ; <i32> [#uses=1]
26 %tmp138145.rec = add i32 %ABC.2146.0.rec, 3 ; <i32> [#uses=1]
27 %tmp138145 = getelementptr i8, i8* %ABC, i32 %tmp138145.rec ; <i8*> [#uses=4]
/external/icu/icu4c/source/test/cintltst/
Dcstrtest.c41 …static const char *const abc="abcdefghijklmnopqrstuvwxyz", *const ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in TestAPI() local
54 dest[i]=uprv_tolower(ABC[i]); in TestAPI()
63 if(0!=strcmp(ABC, dest)) { in TestAPI()
68 dest[i]=uprv_toupper(ABC[i]); in TestAPI()
70 if(0!=strcmp(ABC, dest)) { in TestAPI()
/external/python/cpython2/Lib/test/cjkencodings/
Dshift_jisx0213-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。
Dshift_jis-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。
Deuc_jisx0213-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。
/external/python/cpython3/Lib/test/cjkencodings/
Deuc_jp-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。
Deuc_jisx0213-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。
Diso2022_jp-utf8.txt2 開発者の Guido van Rossum は教育用のプログラミング言語「ABC」の開発に参加していましたが、ABC は実用上の目的にはあまり適していませんでした。

1234567891011