Home
last modified time | relevance | path

Searched refs:final (Results 1 – 25 of 2103) sorted by relevance

12345678910>>...85

/external/clang/test/OpenMP/
Dtask_final_messages.cpp14 #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 …]
Dtaskloop_final_messages.cpp14 #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 …]
Dtaskloop_simd_final_messages.cpp14 #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/syslinux/com32/libutil/
Dcrypt-md5.c53 uint8_t final[MD5_SIZE]; in crypt_md5() local
88 MD5Final(final, &ctx1); in crypt_md5()
90 MD5Update(&ctx, final, pl > MD5_SIZE ? MD5_SIZE : pl); in crypt_md5()
93 memset(final, 0, sizeof final); in crypt_md5()
98 MD5Update(&ctx, final, 1); in crypt_md5()
113 MD5Final(final, &ctx); in crypt_md5()
125 MD5Update(&ctx1, final, MD5_SIZE); in crypt_md5()
134 MD5Update(&ctx1, final, MD5_SIZE); in crypt_md5()
137 MD5Final(final, &ctx1); in crypt_md5()
140 l = (final[0] << 16) | (final[6] << 8) | final[12]; in crypt_md5()
[all …]
/external/openssh/
Dmd5crypt.c55 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/v8/tools/clang/plugins/tests/
Doverridden_methods.txt2 …ods.h:25:29: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
6 …ods.h:38:42: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
10 …ods.h:46:27: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
14 …ods.h:48:28: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
18 …ods.h:52:35: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
22 …ods.h:54:41: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
26 …ods.h:56:40: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
30 …ods.h:58:54: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
34 …ods.h:61:68: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
38 …ods.h:63:40: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
[all …]
Dvirtual_base_method_also_final.txt1 virtual_base_method_also_final.cpp:10:3: warning: [chromium-style] 'virtual' is redundant; 'final' …
2 VIRTUAL void F() final {}
7 …ng: [chromium-style] The virtual method does not override anything and is final; consider making i…
8 VIRTUAL void F() final {}
13 virtual_base_method_also_final.cpp:13:3: warning: [chromium-style] 'virtual' is redundant; 'final' …
14 void VIRTUAL G() final {}
16 …ng: [chromium-style] The virtual method does not override anything and is final; consider making i…
17 void VIRTUAL G() final {}
19 virtual_base_method_also_final.cpp:16:3: warning: [chromium-style] 'virtual' is redundant; 'final' …
20 VIRTUAL_VOID H() final {}
[all …]
/external/v8/src/crankshaft/mips64/
Dlithium-mips64.h149 Opcode opcode() const final { return LInstruction::k##type; } \
150 void CompileToNative(LCodeGen* generator) final; \
151 const char* Mnemonic() const final { return mnemonic; } \
276 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
296 int InputCount() final { return I; } in InputCount()
297 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
299 int TempCount() final { return T; } in TempCount()
300 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
315 bool IsGap() const final { return true; } in IsGap()
352 class LInstructionGap final : public LGap {
[all …]
/external/v8/src/crankshaft/ppc/
Dlithium-ppc.h150 Opcode opcode() const final { return LInstruction::k##type; } \
151 void CompileToNative(LCodeGen* generator) final; \
152 const char* Mnemonic() const final { return mnemonic; } \
273 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
293 int InputCount() final { return I; } in InputCount()
294 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
296 int TempCount() final { return T; } in TempCount()
297 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
348 class LInstructionGap final : public LGap {
360 class LGoto final : public LTemplateInstruction<0, 0, 0> {
[all …]
/external/v8/src/crankshaft/x64/
Dlithium-x64.h147 Opcode opcode() const final { return LInstruction::k##type; } \
148 void CompileToNative(LCodeGen* generator) final; \
149 const char* Mnemonic() const final { return mnemonic; } \
278 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
282 bool MustSignExtendResult(LPlatformChunk* chunk) const final;
300 int InputCount() final { return I; } in InputCount()
301 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
303 int TempCount() final { return T; } in TempCount()
304 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
319 bool IsGap() const final { return true; } in IsGap()
[all …]
/external/v8/src/crankshaft/ia32/
Dlithium-ia32.h151 Opcode opcode() const final { return LInstruction::k##type; } \
152 void CompileToNative(LCodeGen* generator) final; \
153 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()
316 bool IsGap() const final { return true; } in IsGap()
353 class LInstructionGap final : public LGap {
[all …]
/external/v8/src/crankshaft/mips/
Dlithium-mips.h146 Opcode opcode() const final { return LInstruction::k##type; } \
147 void CompileToNative(LCodeGen* generator) final; \
148 const char* Mnemonic() const final { return mnemonic; } \
273 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
293 int InputCount() final { return I; } in InputCount()
294 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
296 int TempCount() final { return T; } in TempCount()
297 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
312 bool IsGap() const final { return true; } in IsGap()
349 class LInstructionGap final : public LGap {
[all …]
/external/v8/src/crankshaft/arm/
Dlithium-arm.h148 Opcode opcode() const final { return LInstruction::k##type; } \
149 void CompileToNative(LCodeGen* generator) final; \
150 const char* Mnemonic() const final { return mnemonic; } \
275 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
295 int InputCount() final { return I; } in InputCount()
296 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
298 int TempCount() final { return T; } in TempCount()
299 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
351 class LInstructionGap final : public LGap {
363 class LGoto final : public LTemplateInstruction<0, 0, 0> {
[all …]
/external/v8/src/crankshaft/x87/
Dlithium-x87.h150 Opcode opcode() const final { return LInstruction::k##type; } \
151 void CompileToNative(LCodeGen* generator) final; \
152 const char* Mnemonic() const final { return mnemonic; } \
281 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
301 int InputCount() final { return I; } in InputCount()
302 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
304 int TempCount() final { return T; } in TempCount()
305 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
319 bool IsGap() const final { return true; } in IsGap()
356 class LInstructionGap final : public LGap {
[all …]
/external/v8/src/crankshaft/s390/
Dlithium-s390.h147 Opcode opcode() const final { return LInstruction::k##type; } \
148 void CompileToNative(LCodeGen* generator) final; \
149 const char* Mnemonic() const final { return mnemonic; } \
267 bool HasResult() const final { return R != 0 && result() != NULL; } in HasResult()
286 int InputCount() final { return I; } in InputCount()
287 LOperand* InputAt(int i) final { return inputs_[i]; } in InputAt()
289 int TempCount() final { return T; } in TempCount()
290 LOperand* TempAt(int i) final { return temps_[i]; } in TempAt()
339 class LInstructionGap final : public LGap {
350 class LGoto final : public LTemplateInstruction<0, 0, 0> {
[all …]
/external/v8/src/crankshaft/arm64/
Dlithium-arm64.h160 Opcode opcode() const final { return LInstruction::k##type; } \
161 void CompileToNative(LCodeGen* generator) final; \
162 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()
307 class LUnknownOSRValue final : public LTemplateInstruction<1, 0, 0> {
319 bool IsControl() const final { return true; } in IsControl()
[all …]
/external/clang/test/CXX/class/class.mem/
Dp8-0x.cpp9 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/
Dp3-0x.cpp52 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/libmojo/base/android/jni_generator/
DtestMotionEvent.javap75 public final class android.view.MotionEvent extends android.view.InputEvent implements android.os.P…
8 …public static final #10= #9 of #6; //PointerProperties=class android/view/MotionEvent$PointerPrope…
9 …public static final #13= #12 of #6; //PointerCoords=class android/view/MotionEvent$PointerCoords o…
321 public static final int INVALID_POINTER_ID;
327 public static final int ACTION_MASK;
333 public static final int ACTION_DOWN;
339 public static final int ACTION_UP;
345 public static final int ACTION_MOVE;
351 public static final int ACTION_CANCEL;
357 public static final int ACTION_OUTSIDE;
[all …]
DtestMotionEvent.javap2 public final class android.view.MotionEvent extends android.view.InputEvent implements android.os.P…
5 …public final #10= #9 of #6; //PointerProperties=class android/view/MotionEvent$PointerProperties o…
6 …public final #13= #12 of #6; //PointerCoords=class android/view/MotionEvent$PointerCoords of class…
318 public static final int INVALID_POINTER_ID;
322 public static final int ACTION_MASK;
326 public static final int ACTION_DOWN;
330 public static final int ACTION_UP;
334 public static final int ACTION_MOVE;
338 public static final int ACTION_CANCEL;
342 public static final int ACTION_OUTSIDE;
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/util/
DPortParserTest.groovy30 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/
DPortParserTest.groovy30 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/
DPortParserTest.groovy31 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/
DPortParserTest.groovy31 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.2/src/test/groovy/org/mockftpserver/core/util/
DPortParserTest.groovy30 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 …]

12345678910>>...85