/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 …]
|
D | taskloop_final_messages.cpp | 14 #pragma omp taskloop final // expected-error {{expected '(' after 'final'}} in tmain() 17 #pragma omp taskloop final( // expected-error {{expected expression}} expected-error {{expected ')'… in tmain() 20 #pragma omp taskloop final() // expected-error {{expected expression}} in tmain() 23 #pragma omp taskloop final(argc // expected-error {{expected ')'}} expected-note {{to match this '(… in tmain() 26 #pragma omp taskloop final(argc)) // expected-warning {{extra tokens at the end of '#pragma omp tas… in tmain() 29 #pragma omp taskloop final(argc > 0 ? argv[1] : argv[2]) in tmain() 32 #pragma omp taskloop final(foobool(argc)), final(true) // expected-error {{directive '#pragma omp t… in tmain() 35 #pragma omp taskloop final(S) // expected-error {{'S' does not refer to a value}} in tmain() 38 #pragma omp taskloop final(argv[1] = 2) // expected-error {{expected ')'}} expected-note {{to match… in tmain() 41 #pragma omp taskloop final(argc argc) // expected-error {{expected ')'}} expected-note {{to match t… in tmain() [all …]
|
D | taskloop_simd_final_messages.cpp | 14 #pragma omp taskloop simd final // expected-error {{expected '(' after 'final'}} in tmain() 17 #pragma omp taskloop simd final( // expected-error {{expected expression}} expected-error {{expecte… in tmain() 20 #pragma omp taskloop simd final() // expected-error {{expected expression}} in tmain() 23 #pragma omp taskloop simd final(argc // expected-error {{expected ')'}} expected-note {{to match th… in tmain() 26 #pragma omp taskloop simd final(argc)) // expected-warning {{extra tokens at the end of '#pragma om… in tmain() 29 #pragma omp taskloop simd final(argc > 0 ? argv[1] : argv[2]) in tmain() 32 #pragma omp taskloop simd final(foobool(argc)), final(true) // expected-error {{directive '#pragma … in tmain() 35 #pragma omp taskloop simd final(S) // expected-error {{'S' does not refer to a value}} in tmain() 38 #pragma omp taskloop simd final(argv[1] = 2) // expected-error {{expected ')'}} expected-note {{to … in tmain() 41 #pragma omp taskloop simd final(argc argc) // expected-error {{expected ')'}} expected-note {{to ma… in tmain() [all …]
|
/external/valgrind/nightly/bin/ |
D | nightly | 104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 246 echo "valgrind revision: $valgrind_revision" > final 247 echo "VEX revision: $vex_revision" >> final 248 echo "C compiler: $gcc_version" >> final 249 echo "GDB: $gdb_version" >> final 250 echo "Assembler: $as_version" >> final 251 echo "C library: $libc" >> final 252 echo "uname -mrs: $uname_stuff" >> final 253 echo "Vendor version: $vendor_stuff" >> final 256 echo >> final [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
D | btTriangleIndexVertexArray.i | 43 protected final static Array<btIndexedMesh> instances = new Array<btIndexedMesh>(); 44 protected static btIndexedMesh getInstance(final Object tag) { in getInstance() 45 final int n = instances.size; in getInstance() 47 final btIndexedMesh mesh = instances.get(i); in getInstance() 56 public static btIndexedMesh obtain(final MeshPart meshPart) { in obtain() 71 public static btIndexedMesh obtain(final Object tag, in obtain() 72 …final FloatBuffer vertices, int sizeInBytesOfEachVertex, int vertexCount, int positionOffsetInByte… in obtain() 73 final ShortBuffer indices, int indexOffset, int indexCount) { in obtain() 94 public btIndexedMesh(final Mesh mesh) { in btIndexedMesh() 102 public btIndexedMesh(final MeshPart meshPart) { in btIndexedMesh() [all …]
|
/external/v8/src/crankshaft/mips64/ |
D | lithium-mips64.h | 164 Opcode opcode() const final { return LInstruction::k##type; } \ 165 void CompileToNative(LCodeGen* generator) final; \ 166 const char* Mnemonic() const final { return mnemonic; } \ 282 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 302 int InputCount() final { return I; } in InputCount() 303 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 305 int TempCount() final { return T; } in TempCount() 306 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 321 bool IsGap() const final { return true; } in IsGap() 358 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/mips/ |
D | lithium-mips.h | 161 Opcode opcode() const final { return LInstruction::k##type; } \ 162 void CompileToNative(LCodeGen* generator) final; \ 163 const char* Mnemonic() const final { return mnemonic; } \ 279 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 299 int InputCount() final { return I; } in InputCount() 300 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 302 int TempCount() final { return T; } in TempCount() 303 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 318 bool IsGap() const final { return true; } in IsGap() 355 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/arm/ |
D | lithium-arm.h | 164 Opcode opcode() const final { return LInstruction::k##type; } \ 165 void CompileToNative(LCodeGen* generator) final; \ 166 const char* Mnemonic() const final { return mnemonic; } \ 282 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 302 int InputCount() final { return I; } in InputCount() 303 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 305 int TempCount() final { return T; } in TempCount() 306 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 358 class LInstructionGap final : public LGap { 370 class LGoto final : public LTemplateInstruction<0, 0, 0> { [all …]
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-ppc.h | 164 Opcode opcode() const final { return LInstruction::k##type; } \ 165 void CompileToNative(LCodeGen* generator) final; \ 166 const char* Mnemonic() const final { return mnemonic; } \ 278 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 298 int InputCount() final { return I; } in InputCount() 299 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 301 int TempCount() final { return T; } in TempCount() 302 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 353 class LInstructionGap final : public LGap { 365 class LGoto final : public LTemplateInstruction<0, 0, 0> { [all …]
|
/external/v8/src/crankshaft/x87/ |
D | lithium-x87.h | 166 Opcode opcode() const final { return LInstruction::k##type; } \ 167 void CompileToNative(LCodeGen* generator) final; \ 168 const char* Mnemonic() const final { return mnemonic; } \ 288 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 308 int InputCount() final { return I; } in InputCount() 309 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 311 int TempCount() final { return T; } in TempCount() 312 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 326 bool IsGap() const final { return true; } in IsGap() 363 class LInstructionGap final : public LGap { [all …]
|
/external/v8/src/crankshaft/x64/ |
D | lithium-x64.h | 161 Opcode opcode() const final { return LInstruction::k##type; } \ 162 void CompileToNative(LCodeGen* generator) final; \ 163 const char* Mnemonic() const final { return mnemonic; } \ 283 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 287 bool MustSignExtendResult(LPlatformChunk* chunk) const final; 305 int InputCount() final { return I; } in InputCount() 306 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 308 int TempCount() final { return T; } in TempCount() 309 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 324 bool IsGap() const final { return true; } in IsGap() [all …]
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-ia32.h | 165 Opcode opcode() const final { return LInstruction::k##type; } \ 166 void CompileToNative(LCodeGen* generator) final; \ 167 const char* Mnemonic() const final { return mnemonic; } \ 283 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult() 303 int InputCount() final { return I; } in InputCount() 304 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 306 int TempCount() final { return T; } in TempCount() 307 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 321 bool IsGap() const final { return true; } in IsGap() 358 class LInstructionGap final : public LGap { [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/v8/src/crankshaft/arm64/ |
D | lithium-arm64.h | 176 Opcode opcode() const final { return LInstruction::k##type; } \ 177 void CompileToNative(LCodeGen* generator) final; \ 178 const char* Mnemonic() const final { return mnemonic; } \ 286 bool HasResult() const final { return (R != 0) && (result() != NULL); } in HasResult() 306 int InputCount() final { return I; } in InputCount() 307 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt() 309 int TempCount() final { return T; } in TempCount() 310 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt() 314 class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> { 326 bool IsControl() const final { return true; } in IsControl() [all …]
|
/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/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/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.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.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.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/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/v8/test/unittests/compiler/ |
D | node-test-utils.cc | 77 class IsBranchMatcher final : public NodeMatcher { 85 void DescribeTo(std::ostream* os) const final { in DescribeTo() 94 bool MatchAndExplain(Node* node, MatchResultListener* listener) const final { in MatchAndExplain() 108 class IsSwitchMatcher final : public NodeMatcher { 116 void DescribeTo(std::ostream* os) const final { in DescribeTo() 125 bool MatchAndExplain(Node* node, MatchResultListener* listener) const final { in MatchAndExplain() 139 class IsIfValueMatcher final : public NodeMatcher { 147 void DescribeTo(std::ostream* os) const final { in DescribeTo() 156 bool MatchAndExplain(Node* node, MatchResultListener* listener) const final { in MatchAndExplain() 170 class IsControl1Matcher final : public NodeMatcher { [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/skia/src/pathops/ |
D | SkOpSpan.h | 231 bool final() const { in final() function 340 SkASSERT(!final()); in upCast() 345 SkASSERT(!final()); in upCast() 350 return final() ? nullptr : upCast(); in upCastable() 354 return final() ? nullptr : upCast(); in upCastable() 384 SkASSERT(!final()); in clearCoincident() 410 SkASSERT(!final()); in done() 432 SkASSERT(!final()); in isCanceled() 437 SkASSERT(!final()); in isCoincident() 442 SkASSERT(!final()); in next() [all …]
|
/external/jemalloc/test/unit/ |
D | hash.c | 69 VARIABLE_ARRAY(uint8_t, final, hashbytes); in hash_variant_verify_key() 75 memset(final, 0, hashbytes); in hash_variant_verify_key() 107 memcpy(final, &out, sizeof(out)); in hash_variant_verify_key() 112 memcpy(final, out, sizeof(out)); in hash_variant_verify_key() 117 memcpy(final, out, sizeof(out)); in hash_variant_verify_key() 122 computed = (final[0] << 0) | (final[1] << 8) | (final[2] << 16) | in hash_variant_verify_key() 123 (final[3] << 24); in hash_variant_verify_key()
|