Searched defs:abc (Results 1 - 25 of 48) sorted by path

12

/external/autotest/client/bin/
H A Dbase_sysinfo.py1 import abc namespace
68 @abc.abstractmethod
/external/autotest/client/cros/chameleon/
H A Daudio_widget.py7 import abc namespace
280 __metaclass__ = abc.ABCMeta
282 @abc.abstractmethod
288 @abc.abstractmethod
328 @abc.abstractmethod
/external/autotest/client/cros/
H A Dcros_logging.py5 import abc, logging, os, re, time namespace
52 @abc.abstractmethod
/external/autotest/client/cros/ui/
H A Dui_test_base.py5 import abc namespace
56 __metaclass__ = abc.ABCMeta
168 @abc.abstractmethod
/external/autotest/contrib/
H A Dlog_distiller.py8 import abc namespace
73 __metaclass__ = abc.ABCMeta
76 @abc.abstractmethod
/external/autotest/scheduler/
H A Drdb_cache_manager.py79 import abc namespace
127 __metaclass__ = abc.ABCMeta
H A Drdb_testing_utils.py8 import abc namespace
333 __meta__ = abc.ABCMeta
/external/autotest/server/cros/dynamic_suite/
H A Dcontrol_file_getter.py5 import abc namespace
23 __metaclass__ = abc.ABCMeta
26 @abc.abstractmethod
38 @abc.abstractmethod
50 @abc.abstractmethod
66 @abc.abstractmethod
108 @abc.abstractmethod
H A Dsuite.py5 import abc namespace
1801 __metaclass__ = abc.ABCMeta
1803 @abc.abstractmethod
/external/autotest/server/cros/
H A Dprovision_actionables.py7 import abc namespace
16 @abc.abstractmethod
/external/autotest/server/hosts/
H A Dhost_info.py5 import abc namespace
192 __metaclass__ = abc.ABCMeta
232 @abc.abstractmethod
242 @abc.abstractmethod
/external/autotest/site_utils/
H A Dgs_offloader.py13 import abc namespace
494 __metaclass__ = abc.ABCMeta
496 @abc.abstractmethod
H A Djob_directories.py1 import abc namespace
118 __metaclass__ = abc.ABCMeta
133 @abc.abstractmethod
/external/clang/test/Analysis/
H A Ddead-stores.c6 int abc=1; local
7 long idx=abc+3*5; // expected-warning {{never read}} expected-warning{{unused variable 'idx'}}
/external/clang/test/CodeGen/
H A Dsret.c3 struct abc { struct
11 struct abc foo1(void);
12 struct abc foo2();
15 struct abc dummy1 = foo1();
16 struct abc dummy2 = foo2();
H A Dsret2.c3 struct abc { struct
11 struct abc foo2(){}
/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp5 typedef struct ABC* abc; typedef in typeref:struct:ABC
H A Dapple-kext-indirect-call-2.cpp9 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();
H A Dapple-kext-indirect-call.cpp6 virtual void abc(void) const;
9 void Base::abc(void) const {} function in class:Base
12 p->Base::abc();
H A Dduplicate-mangled-name.cpp35 float abc = 2; member in namespace:nm
44 return _ZN2nm3abcE + nm::abc;
67 float abc = 2; // expected-error {{definition with same mangled name as another definition}} member in namespace:nm
71 return _ZN2nm3abcE + nm::abc;
/external/clang/test/Parser/
H A Dargument_qualified.c2 int abc (const float x) { function
/external/clang/test/SemaCXX/
H A Dwarn-variable-not-needed.cpp4 static int abc = 42; // expected-warning {{variable 'abc' is not needed and will not be emitted}} member in namespace:test1
7 return abc;
/external/icu/icu4c/source/test/cintltst/
H A Dcstrcase.c726 abc[] ={ 0x61, 0x62, 0x63, 0 }, local
770 if(U_FAILURE(errorCode) || length!=3 || 0!=strcmp(abc, utf8Out)) {
850 if(U_FAILURE(errorCode) || length!=3 || 0!=strcmp(abc, utf8Out)) {
H A Dcstrtest.c41 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");
56 if(0!=strcmp(abc, dest)) {
61 dest[i]=uprv_toupper(abc[i]);
64 log_err("uprv_toupper(abc) failed\n");
125 if((intValue=uprv_stricmp("", "abc")) != -1){
126 log_err("FAIL: uprv_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue);
128 if((intValue=uprv_stricmp("abc", "")) !
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dustrtest.cpp179 UnicodeString s=UnicodeString("abc", "")+UnicodeString("def", "")+UnicodeString("ghi", "");
189 if(UnicodeString("abc", -1, "")!=UnicodeString("abc", "")) {
1319 UnicodeString IN("abc\\u4567 \\n\\r \\U00101234xyz\\x1\\x{5289}\\x1b", -1, US_INV);
1320 UnicodeString OUT("abc");
1801 icu::UnicodeString s1=icu::UnicodeString("abc", 3, US_INV);
1997 UChar abc[]={ 0x61, 0x62, 0x63, 0 }; local
1998 UBool hasRVO= wrapUChars(abc).getBuffer()==abc;
2130 static const UChar abc[ local
[all...]

Completed in 555 milliseconds

12