HomeSort by relevance Sort by last modified time
    Searched full:sections (Results 1 - 25 of 7521) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/OpenMP/
parallel_sections_messages.cpp 6 #pragma omp parallel sections // expected-error {{unexpected OpenMP directive '#pragma omp parallel sections'}}
9 #pragma omp parallel sections {// expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
13 #pragma omp parallel sections( // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
17 #pragma omp parallel sections[ // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
21 #pragma omp parallel sections] // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}
    [all...]
parallel_sections_misc_messages.c 5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
6 #pragma omp parallel sections
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
9 #pragma omp parallel sections foo
13 #pragma omp parallel sections
18 // expected-error@+2 {{the statement for '#pragma omp parallel sections' must be a compound statement}}
19 #pragma omp parallel sections
22 #pragma omp parallel sections
25 foo(); // expected-error {{statement in 'omp parallel sections' directive must be enclosed into a section region}}
37 #pragma omp parallel sections
    [all...]
sections_misc_messages.c 5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp sections'}}
6 #pragma omp sections
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp sections'}}
9 #pragma omp sections foo
13 #pragma omp sections
18 // expected-error@+2 {{the statement for '#pragma omp sections' must be a compound statement}}
19 #pragma omp sections
22 #pragma omp sections
25 foo(); // expected-error {{statement in 'omp sections' directive must be enclosed into a section region}}
38 #pragma omp sections
    [all...]
parallel_sections_if_messages.cpp 14 #pragma omp parallel sections if // expected-error {{expected '(' after 'if'}}
18 #pragma omp parallel sections if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp parallel sections if () // expected-error {{expected expression}}
26 #pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
34 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2])
38 #pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause}}
42 #pragma omp parallel sections if (S) // expected-error {{'S' does not refer to a value}
    [all...]
parallel_sections_default_messages.cpp 6 #pragma omp parallel sections default // expected-error {{expected '(' after 'default'}}
8 #pragma omp parallel sections default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10 #pragma omp parallel sections default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
12 #pragma omp parallel sections default(none // expected-error {{expected ')'}} expected-note {{to match this '('}}
14 #pragma omp parallel sections default(shared), default(shared) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'default' clause}}
16 #pragma omp parallel sections default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
26 #pragma omp parallel sections default(none)
31 #pragma omp parallel sections default(none)
33 #pragma omp parallel sections default(shared
    [all...]
parallel_sections_proc_bind_messages.cpp 6 #pragma omp parallel sections proc_bind // expected-error {{expected '(' after 'proc_bind'}}
8 #pragma omp parallel sections proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
10 #pragma omp parallel sections proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
12 #pragma omp parallel sections proc_bind(master // expected-error {{expected ')'}} expected-note {{to match this '('}}
14 #pragma omp parallel sections proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'proc_bind' clause}}
16 #pragma omp parallel sections proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
19 #pragma omp parallel sections proc_bind(master)
22 #pragma omp parallel sections proc_bind(close)
24 #pragma omp parallel sections proc_bind(spread
    [all...]
sections_firstprivate_messages.cpp 70 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}}
75 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
80 #pragma omp sections firstprivate() // expected-error {{expected expression}}
85 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
100 #pragma omp sections firstprivate(argc)
105 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
110 #pragma omp sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
115 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}
    [all...]
parallel_sections_num_threads_messages.cpp 14 #pragma omp parallel sections num_threads // expected-error {{expected '(' after 'num_threads'}}
16 #pragma omp parallel sections num_threads ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp parallel sections num_threads () // expected-error {{expected expression}}
20 #pragma omp parallel sections num_threads (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp parallel sections num_threads (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
24 #pragma omp parallel sections num_threads ((argc > 0) ? argv[1] : argv[2]) // expected-error 2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
26 #pragma omp parallel sections num_threads (foobool(argc)), num_threads (true), num_threads (-5) // expected-error 2 {{directive '#pragma omp parallel sections' cannot contain more than one 'num_threads' clause}} expected-error {{argument to 'num_threads' clause must be a positive integer value}}
28 #pragma omp parallel sections num_threads (S) // expected-error {{'S' does not refer to a value}
    [all...]
parallel_sections_firstprivate_messages.cpp 69 #pragma omp parallel sections firstprivate // expected-error {{expected '(' after 'firstprivate'}}
73 #pragma omp parallel sections firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
77 #pragma omp parallel sections firstprivate() // expected-error {{expected expression}}
81 #pragma omp parallel sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
85 #pragma omp parallel sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
89 #pragma omp parallel sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
93 #pragma omp parallel sections firstprivate(argc)
97 #pragma omp parallel sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
101 #pragma omp parallel sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
105 #pragma omp parallel sections firstprivate(argv[1]) // expected-error {{expected variable name}
    [all...]
sections_lastprivate_messages.cpp 70 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
75 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
80 #pragma omp sections lastprivate() // expected-error {{expected expression}}
85 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
100 #pragma omp sections lastprivate(argc)
105 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
110 #pragma omp sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
115 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}
    [all...]
parallel_sections_shared_messages.cpp 58 #pragma omp parallel sections shared // expected-error {{expected '(' after 'shared'}}
60 #pragma omp parallel sections shared( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
62 #pragma omp parallel sections shared() // expected-error {{expected expression}}
64 #pragma omp parallel sections shared(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
66 #pragma omp parallel sections shared(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
68 #pragma omp parallel sections shared(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
70 #pragma omp parallel sections shared(argc)
72 #pragma omp parallel sections shared(S1) // expected-error {{'S1' does not refer to a value}}
74 #pragma omp parallel sections shared(a, b, c, d, f)
76 #pragma omp parallel sections shared(argv[1]) // expected-error {{expected variable name}
    [all...]
parallel_sections_lastprivate_messages.cpp 69 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
73 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
77 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}}
81 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
85 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
89 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
93 #pragma omp parallel sections lastprivate(argc)
97 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
101 #pragma omp parallel sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
105 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftchapters.h 17 /* <Sections> */
31 /* <Sections> */
52 /* <Sections> */
75 /* <Sections> */
91 /* <Sections> */
105 /* <Sections> */
  /external/freetype/include/
ftchapters.h 17 /* <Sections> */
32 /* <Sections> */
53 /* <Sections> */
76 /* <Sections> */
92 /* <Sections> */
106 /* <Sections> */
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftchapters.h 17 /* <Sections> */
31 /* <Sections> */
52 /* <Sections> */
75 /* <Sections> */
91 /* <Sections> */
105 /* <Sections> */
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftchapters.h 17 /* <Sections> */
31 /* <Sections> */
52 /* <Sections> */
75 /* <Sections> */
91 /* <Sections> */
105 /* <Sections> */
  /external/llvm/test/Object/
objdump-no-sectionheaders.test 1 ; RUN: llvm-objdump -h %p/Inputs/no-sections.elf-x86-64 \
4 ; CHECK: Sections:
  /external/clang/test/Driver/
nozlibcompress.c 1 // RUN: %clang -c %s -Wa,--compress-debug-sections 2>&1 | FileCheck %s
2 // RUN: %clang -c %s -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections 2>&1 | FileCheck --check-prefix=NOWARN %s
5 // CHECK: warning: cannot compress debug sections (zlib not installed)
6 // NOWARN-NOT: warning: cannot compress debug sections (zlib not installed)
compress.c 1 // RUN: %clang -### -c -integrated-as -Wa,-compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
2 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections %s 2>&1 | FileCheck --check-prefix=COMPRESS_DEBUG %s
5 // COMPRESS_DEBUG: "-compress-debug-sections"
7 // RUN: %clang -### -c -integrated-as -Wa,--compress-debug-sections -Wa,--nocompress-debug-sections %s 2>&1 | FileCheck --check-prefix=NOCOMPRESS_DEBUG %s
8 // NOCOMPRESS_DEBUG-NOT: "-compress-debug-sections"
function-sections.c 1 // Test handling of -f(no-)function-sections and -f(no-)data-sections
3 // CHECK-FS: -ffunction-sections
4 // CHECK-NOFS-NOT: -ffunction-sections
5 // CHECK-DS: -fdata-sections
6 // CHECK-NODS-NOT: -fdata-sections
14 // RUN: -ffunction-sections \
19 // RUN: -fno-function-sections \
24 // RUN: -ffunction-sections -fno-function-sections \
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
gcsec1.cpp 3 -ffunction-sections or -fdata-sections. */
5 /* { dg-require-gc-sections "" } */
6 /* { dg-options "-ffunction-sections -Wl,--gc-sections" } */
  /ndk/tests/device/test-stlport_static-exception/jni/
gcsec1.cpp 3 -ffunction-sections or -fdata-sections. */
5 /* { dg-require-gc-sections "" } */
6 /* { dg-options "-ffunction-sections -Wl,--gc-sections" } */
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/tests/
x86id.errwarn 1 -:37: warning: Standard COFF does not support read-only data sections
2 -:6284: warning: Standard COFF does not support read-only data sections
3 -:6527: warning: Standard COFF does not support read-only data sections
4 -:6540: warning: Standard COFF does not support read-only data sections
5 -:6549: warning: Standard COFF does not support read-only data sections
6 -:6559: warning: Standard COFF does not support read-only data sections
7 -:6562: warning: Standard COFF does not support read-only data sections
8 -:6629: warning: Standard COFF does not support read-only data sections
9 -:7499: warning: Standard COFF does not support read-only data sections
10 -:7518: warning: Standard COFF does not support read-only data sections
    [all...]
  /external/smack/src/org/xbill/DNS/
Section.java 6 * Constants and functions relating to DNS message sections
35 private static Mnemonic sections = new Mnemonic("Message Section", field in class:Section
41 sections.setMaximum(3);
42 sections.setNumericAllowed(true);
44 sections.add(QUESTION, "qd");
45 sections.add(ANSWER, "an");
46 sections.add(AUTHORITY, "au");
47 sections.add(ADDITIONAL, "ad");
66 return sections.getText(i);
72 sections.check(i)
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
globals-gc-sections.cc 1 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=0
2 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=1

Completed in 315 milliseconds

1 2 3 4 5 6 7 8 91011>>