/external/clang/test/OpenMP/ |
D | task_final_messages.cpp | 14 #pragma omp task final // expected-error {{expected '(' after 'final'}} in tmain() 15 …#pragma omp task final ( // expected-error {{expected expression}} expected-error {{expected ')'}}… in tmain() 16 #pragma omp task final () // expected-error {{expected expression}} in tmain() 17 …#pragma omp task final (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in tmain() 18 …#pragma omp task final (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task'… in tmain() 19 #pragma omp task final (argc > 0 ? argv[1] : argv[2]) in tmain() 20 …#pragma omp task final (foobool(argc)), final (true) // expected-error {{directive '#pragma omp ta… in tmain() 21 #pragma omp task final (S) // expected-error {{'S' does not refer to a value}} in tmain() 22 …#pragma omp task final (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match thi… in tmain() 23 …#pragma omp task final (argc argc) // expected-error {{expected ')'}} expected-note {{to match thi… in tmain() [all …]
|
/external/openssh/ |
D | md5crypt.c | 55 unsigned char final[16]; in md5_crypt() local 96 MD5_Final(final, &ctx1); in md5_crypt() 99 MD5_Update(&ctx, final, pl > 16 ? 16 : pl); in md5_crypt() 102 memset(final, '\0', sizeof final); in md5_crypt() 107 MD5_Update(&ctx, final + j, 1); in md5_crypt() 114 MD5_Final(final, &ctx); in md5_crypt() 126 MD5_Update(&ctx1, final, 16); in md5_crypt() 135 MD5_Update(&ctx1, final, 16); in md5_crypt() 139 MD5_Final(final, &ctx1); in md5_crypt() 144 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; in md5_crypt() [all …]
|
/external/valgrind/nightly/bin/ |
D | nightly | 104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 235 echo "valgrind revision: $valgrind_revision" > final 236 echo "VEX revision: $vex_revision" >> final 237 echo "C compiler: $gcc_version" >> final 238 echo "GDB: $gdb_version" >> final 239 echo "Assembler: $as_version" >> final 240 echo "C library: $libc" >> final 241 echo "uname -mrs: $uname_stuff" >> final 242 echo "Vendor version: $vendor_stuff" >> final 245 echo >> final [all …]
|
/external/clang/test/CXX/class/class.mem/ |
D | p8-0x.cpp | 9 virtual void h() final final; // expected-error {{class member already marked 'final'}} 25 virtual void f() final; 26 void g() final; // expected-error {{only virtual member functions can be marked 'final'}} 27 int h final; // expected-error {{only virtual member functions can be marked 'final'}} member 37 virtual void h() final final {} // expected-error {{class member already marked 'final'}} in h() 50 virtual void f() final {} in f() 51 void g() final {} // expected-error {{only virtual member functions can be marked 'final'}} in g()
|
/external/clang/test/CXX/class.derived/class.virtual/ |
D | p3-0x.cpp | 52 virtual void f() const final; // expected-note {{overridden virtual function is here}} 68 void h() final; 72 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 77 void i() final; 81 virtual void i() final; 86 void h(T...) final; 87 void i(T...) final; // expected-error {{only virtual member functions can be marked 'final'}} 94 void h() final; 98 void i() final; // expected-error {{only virtual member functions can be marked 'final'}} 126 virtual void f() final; [all …]
|
/external/skia/src/pathops/ |
D | SkOpSpan.h | 195 bool final() const { in final() function 300 SkASSERT(!final()); in upCast() 305 SkASSERT(!final()); in upCast() 310 return final() ? NULL : upCast(); in upCastable() 314 return final() ? NULL : upCast(); in upCastable() 336 SkASSERT(!final()); in clearCoincident() 362 SkASSERT(!final()); in done() 384 SkASSERT(!final()); in isCanceled() 389 SkASSERT(!final()); in isCoincident() 394 SkASSERT(!final()); in next() [all …]
|
/external/jemalloc/test/unit/ |
D | hash.c | 68 VARIABLE_ARRAY(uint8_t, final, hashbytes); in hash_variant_verify() 74 memset(final, 0, sizeof(final)); in hash_variant_verify() 106 memcpy(final, &out, sizeof(out)); in hash_variant_verify() 111 memcpy(final, out, sizeof(out)); in hash_variant_verify() 116 memcpy(final, out, sizeof(out)); in hash_variant_verify() 121 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | in hash_variant_verify() 122 (final[3] << 24); in hash_variant_verify()
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 31 static final Logger LOG = LoggerFactory.getLogger(PortParserTest.class) 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 33 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 34 static final int PORT = (1 << 8) + 206 35 static final InetAddress HOST = inetAddress("192.22.250.44") 37 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 38 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 39 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 40 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 41 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/core/util/ |
D | PortParserTest.groovy | 30 static final Logger LOG = Logger.getLogger(PortParserTest.class) 31 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"] 32 static final String[] PARAMETERS_INSUFFICIENT = ["7", "29", "99", "11", "77"] 33 static final int PORT = (1 << 8) + 206 34 static final InetAddress HOST = inetAddress("192.22.250.44") 36 static final PARAMETER_IPV4 = "|1|132.235.1.2|6275|" 37 static final HOST_IPV4 = InetAddress.getByName("132.235.1.2") 38 static final PARAMETER_IPV6 = "|2|1080::8:800:200C:417A|6275|" 39 static final HOST_IPV6 = InetAddress.getByName("1080::8:800:200C:417A") 40 static final E_PORT = 6275 [all …]
|
/external/clang/test/CodeGenCXX/ |
D | devirtualize-virtual-function-calls-final.cpp | 5 virtual int f() final; 16 struct A final { 32 struct B final : A { }; 59 struct B final : A { 84 struct C final : B { 120 struct D final : public C, public B { 139 struct zed final : public foo, public bar { 161 struct C final : A, B { }; 187 struct RC final : public RA {
|
/external/icu/icu4c/source/data/rbnf/ |
D | root.txt | 330 "11: \u05D9[>%%hebrew-final>];", 333 "17: \u05D9[>%%hebrew-final>];", 335 "21: \u05DB[>%%hebrew-final>];", 337 "31: \u05DC[>%%hebrew-final>];", 339 "41: \u05DE[>%%hebrew-final>];", 341 "51: \u05E0[>%%hebrew-final>];", 343 "61: \u05E1[>%%hebrew-final>];", 345 "71: \u05E2[>%%hebrew-final>];", 347 "81: \u05E4[>%%hebrew-final>];", 349 "91: \u05E6[>%%hebrew-final>];", [all …]
|
/external/clang/test/CXX/class/ |
D | p2-0x.cpp | 4 class A final { }; // expected-note {{'A' declared here}} 11 template<typename T> struct A final { }; // expected-note 2 {{'A' declared here}} 22 template<> struct A<int> final { }; // expected-note {{'A' declared here}} 31 struct A final { virtual void func() = 0; }; // expected-warning {{abstract class is marked 'final'… 34 struct C final : B { }; // expected-warning {{abstract class is marked 'final'}}
|
/external/clang/test/Parser/ |
D | cxx0x-ambig.cpp | 6 namespace final { namespace 12 extern struct S final; 13 extern struct S final [[]]; 14 extern struct S final, foo; 15 struct S final = S(); 21 struct S final { // expected-note {{here}} 25 struct T final : S {}; // expected-error {{base 'S' is marked 'final'}} 30 struct U final _Alignas(4) {}; // expected-error 3{{}} expected-note {{}}
|
/external/llvm/utils/ |
D | findmisopt | 150 final="" 155 tryit "$final $switches" 161 final="$final $trimmed" 167 if [ "$final" == " $all_switches" ] ; then 171 echo "Smallest Optimization list=$final" 173 bpcmd="$bugpoint -run-llc -disable-loop-extraction --output "$out" --input /dev/null $bcfile $final…
|
/external/smali/dexlib2/src/main/ragel/ |
D | SyntheticAccessorFSM.rl | 45 public static final int ADD = SyntheticAccessorResolver.ADD_ASSIGNMENT; 46 public static final int SUB = SyntheticAccessorResolver.SUB_ASSIGNMENT; 47 public static final int MUL = SyntheticAccessorResolver.MUL_ASSIGNMENT; 48 public static final int DIV = SyntheticAccessorResolver.DIV_ASSIGNMENT; 49 public static final int REM = SyntheticAccessorResolver.REM_ASSIGNMENT; 50 public static final int AND = SyntheticAccessorResolver.AND_ASSIGNMENT; 51 public static final int OR = SyntheticAccessorResolver.OR_ASSIGNMENT; 52 public static final int XOR = SyntheticAccessorResolver.XOR_ASSIGNMENT; 53 public static final int SHL = SyntheticAccessorResolver.SHL_ASSIGNMENT; 54 public static final int SHR = SyntheticAccessorResolver.SHR_ASSIGNMENT; [all …]
|
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixDirectoryListingFormatterTest.groovy | 30 static final FILE_NAME = "def.txt" 31 static final FILE_PATH = "/dir/$FILE_NAME" 32 static final DIR_NAME = "etc" 33 static final DIR_PATH = "/dir/$DIR_NAME" 34 static final OWNER = 'owner123' 35 static final GROUP = 'group456' 36 static final SIZE = 11L 37 static final LAST_MODIFIED = new Date() 38 static final FILE_PERMISSIONS = new Permissions('rw-r--r--') 39 static final DIR_PERMISSIONS = new Permissions('rwxr-xr-x')
|
/external/regex-re2/re2/testing/ |
D | charclass_test.cc | 21 } final[10]; member 98 for (int k = 0; t->final[k].lo >= 0; k++) in Broke() 99 printf(" %d-%d", t->final[k].lo, t->final[k].hi); in Broke() 110 for (int j = 0; t->final[j].lo >= 0; j++) in ShouldContain() 111 if (t->final[j].lo <= x && x <= t->final[j].hi) in ShouldContain() 140 for (int j = 0; t->final[j].lo >= 0; j++, ++it) { in CorrectCC() 142 it->lo != t->final[j].lo || in CorrectCC() 143 it->hi != t->final[j].hi) { in CorrectCC()
|
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixDirectoryListingFormatterTest.groovy | 30 static final FILE_NAME = "def.txt" 31 static final FILE_PATH = "/dir/$FILE_NAME" 32 static final DIR_NAME = "etc" 33 static final DIR_PATH = "/dir/$DIR_NAME" 34 static final OWNER = 'owner123' 35 static final GROUP = 'group456' 36 static final SIZE = 11L 37 static final LAST_MODIFIED = new Date() 38 static final FILE_PERMISSIONS = new Permissions('rw-r--r--') 39 static final DIR_PERMISSIONS = new Permissions('rwxr-xr-x')
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixDirectoryListingFormatterTest.groovy | 30 static final FILE_NAME = "def.txt" 31 static final FILE_PATH = "/dir/$FILE_NAME" 32 static final DIR_NAME = "etc" 33 static final DIR_PATH = "/dir/$DIR_NAME" 34 static final OWNER = 'owner123' 35 static final GROUP = 'group456' 36 static final SIZE = 11L 37 static final LAST_MODIFIED = new Date() 38 static final FILE_PERMISSIONS = new Permissions('rw-r--r--') 39 static final DIR_PERMISSIONS = new Permissions('rwxr-xr-x')
|
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixDirectoryListingFormatterTest.groovy | 30 static final FILE_NAME = "def.txt" 31 static final FILE_PATH = "/dir/$FILE_NAME" 32 static final DIR_NAME = "etc" 33 static final DIR_PATH = "/dir/$DIR_NAME" 34 static final OWNER = 'owner123' 35 static final GROUP = 'group456' 36 static final SIZE = 11L 37 static final LAST_MODIFIED = new Date() 38 static final FILE_PERMISSIONS = new Permissions('rw-r--r--') 39 static final DIR_PERMISSIONS = new Permissions('rwxr-xr-x')
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | UnixDirectoryListingFormatterTest.groovy | 30 static final FILE_NAME = "def.txt" 31 static final FILE_PATH = "/dir/$FILE_NAME" 32 static final DIR_NAME = "etc" 33 static final DIR_PATH = "/dir/$DIR_NAME" 34 static final OWNER = 'owner123' 35 static final GROUP = 'group456' 36 static final SIZE = 11L 37 static final LAST_MODIFIED = new Date() 38 static final FILE_PERMISSIONS = new Permissions('rw-r--r--') 39 static final DIR_PERMISSIONS = new Permissions('rwxr-xr-x')
|