Searched refs:sections (Results 1 - 25 of 3492) sorted by relevance

1234567891011>>

/external/clang/test/OpenMP/
H A Dparallel_sections_default_messages.cpp6 #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 defaul
[all...]
H A Dparallel_sections_messages.cpp6 #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' ar
[all...]
H A Dparallel_sections_proc_bind_messages.cpp6 #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_bin
[all...]
H A Dsections_private_messages.cpp51 #pragma omp sections private // expected-error {{expected '(' after 'private'}}
55 #pragma omp sections private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp sections private() // expected-error {{expected expression}}
63 #pragma omp sections private(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
67 #pragma omp sections private(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
71 #pragma omp sections private(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
75 #pragma omp sections private(argc)
79 #pragma omp sections private(S1) // expected-error {{'S1' does not refer to a value}}
83 #pragma omp sections private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
87 #pragma omp sections privat
[all...]
H A Dparallel_sections_if_messages.cpp14 #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 i
[all...]
H A Dparallel_sections_num_threads_messages.cpp14 #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_thread
[all...]
H A Dparallel_sections_misc_messages.c5 // 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...]
H A Dsections_misc_messages.c5 // 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...]
H A Dparallel_sections_shared_messages.cpp58 #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 share
[all...]
H A Dparallel_sections_private_messages.cpp51 #pragma omp parallel sections private // expected-error {{expected '(' after 'private'}}
55 #pragma omp parallel sections private( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp parallel sections private() // expected-error {{expected expression}}
63 #pragma omp parallel sections private(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
67 #pragma omp parallel sections private(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
71 #pragma omp parallel sections private(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
75 #pragma omp parallel sections private(argc)
79 #pragma omp parallel sections private(S1) // expected-error {{'S1' does not refer to a value}}
83 #pragma omp parallel sections private(a, b) // expected-error {{private variable with incomplete type 'S1'}}
87 #pragma omp parallel sections privat
[all...]
H A Dparallel_sections_reduction_messages.cpp78 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}}
82 #pragma omp parallel sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
86 #pragma omp parallel sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp parallel sections reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
94 #pragma omp parallel sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
98 #pragma omp parallel sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
102 #pragma omp parallel sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
106 #pragma omp parallel sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{variable of type 'float' is not valid for specified reduction operation}}
110 #pragma omp parallel sections reductio
[all...]
H A Dsections_reduction_messages.cpp79 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}}
84 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp sections' are ignored}}
89 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
94 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
99 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
104 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
109 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
114 #pragma omp sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{variable of type 'float' is not valid for specified reduction operation}}
119 #pragma omp sections reductio
[all...]
H A Dparallel_sections_firstprivate_messages.cpp69 #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 firstprivat
[all...]
H A Dsections_firstprivate_messages.cpp70 #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 firstprivat
[all...]
H A Dparallel_sections_lastprivate_messages.cpp69 #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 lastprivat
[all...]
H A Dsections_lastprivate_messages.cpp70 #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 lastprivat
[all...]
H A Dparallel_sections_copyin_messages.cpp55 #pragma omp parallel sections copyin // expected-error {{expected '(' after 'copyin'}}
59 #pragma omp parallel sections copyin( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
63 #pragma omp parallel sections copyin() // expected-error {{expected expression}}
67 #pragma omp parallel sections copyin(k // expected-error {{expected ')'}} expected-note {{to match this '('}}
71 #pragma omp parallel sections copyin(h, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
75 #pragma omp parallel sections copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
79 #pragma omp parallel sections copyin(l) // expected-error {{copyin variable must have an accessible, unambiguous copy assignment operator}}
83 #pragma omp parallel sections copyin(S1) // expected-error {{'S1' does not refer to a value}}
87 #pragma omp parallel sections copyin(argv[1]) // expected-error {{expected variable name}}
91 #pragma omp parallel sections copyi
[all...]
H A Dnesting_of_regions.cpp17 #pragma omp sections
22 #pragma omp section // expected-error {{'omp section' directive must be closely nested to a sections region, not a parallel region}}
34 #pragma omp parallel sections
60 #pragma omp sections // expected-error {{OpenMP constructs may not be nested inside a simd region}}
87 #pragma omp parallel sections // expected-error {{OpenMP constructs may not be nested inside a simd region}}
114 #pragma omp sections // expected-error {{region cannot be closely nested inside 'for' region; perhaps you forget to enclose 'omp sections' directive into a parallel region?}}
121 #pragma omp section // expected-error {{'omp section' directive must be closely nested to a sections region, not a for region}}
144 #pragma omp sections // OK
158 #pragma omp parallel sections
[all...]
H A Dparallel_sections_ast_print.cpp36 #pragma omp parallel sections
40 #pragma omp parallel sections default(none), private(argc, b) firstprivate(argv) shared(d) if (argc > 0) num_threads(C) copyin(S < T > ::TS) proc_bind(master) reduction(+ : c) reduction(max : e)
44 #pragma omp parallel sections if (C) num_threads(s) proc_bind(close) reduction(^ : e, f) reduction(&& : g) lastprivate(b, c)
57 // CHECK-NEXT: #pragma omp parallel sections
61 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
65 // CHECK-NEXT: #pragma omp parallel sections if(5) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
75 // CHECK-NEXT: #pragma omp parallel sections
79 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
83 // CHECK-NEXT: #pragma omp parallel sections if(1) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
93 // CHECK-NEXT: #pragma omp parallel sections
[all...]
/external/smack/src/org/xbill/DNS/
H A DSection.java6 * 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
[all...]
H A DMessage.java11 * and 4 message sections.
25 private List [] sections; field in class:Message
58 sections = new List[4];
106 sections[i] = new ArrayList(count);
110 sections[i].add(rec);
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
166 sections[section].add(r);
176 if (sections[section] != null && sections[sectio
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Doptions_settings_app.js16 var sections = document.querySelectorAll('section');
17 for (var i = 0; i < sections.length; i++)
18 sections[i].hidden = true;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DPropertiesSidebarPane.js71 this.sections = [];
136 var sections = this.sections || [];
137 for (var i = 0; i < sections.length; ++i)
138 expanded.push(sections[i].expanded);
142 this.sections = [];
152 this.sections.push(section);
154 if (expanded[this.sections.length - 1])
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el58 "Regular expression to introduce 'sources' sections")
62 "Regular expression to introduce conditions sections")
66 "Regular expression to introduce variables sections")
70 "Regular expression to introduce 'defines' sections")
74 "Regular expression to introduce 'targets' sections")
77 "Map the sections we are interested in from SECTION to symbol.
104 (defun gyp-parse-sections ()
112 (defun gyp-add-parse-history (point sections)
117 (setq gyp-parse-history (cons (cons point sections) gyp-parse-history)))
135 (sections (gy
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dtable_of_contents_renderer.py24 def Render(self, sections):
25 '''Renders a list of DocumentSections |sections| and returns a tuple
45 for section in sections:

Completed in 4203 milliseconds

1234567891011>>