/external/clang/test/OpenMP/ |
teams_messages.cpp | 6 #pragma omp teams // expected-error {{unexpected OpenMP directive '#pragma omp teams'}} 10 #pragma omp teams { // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 13 #pragma omp teams ( // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 16 #pragma omp teams [ // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 19 #pragma omp teams ] // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored} [all...] |
teams_num_teams_messages.cpp | 16 #pragma omp teams num_teams(C) 19 #pragma omp teams num_teams(T) // expected-error {{'T' does not refer to a value}} 22 #pragma omp teams num_teams // expected-error {{expected '(' after 'num_teams'}} 25 #pragma omp teams num_teams( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp teams num_teams() // expected-error {{expected expression}} 31 #pragma omp teams num_teams(argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 34 #pragma omp teams num_teams(argc)) // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 37 #pragma omp teams num_teams(argc > 0 ? a[1] : a[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 40 #pragma omp teams num_teams(argc + argc [all...] |
teams_thread_limit_messages.cpp | 16 #pragma omp teams thread_limit(C) 19 #pragma omp teams thread_limit(T) // expected-error {{'T' does not refer to a value}} 22 #pragma omp teams thread_limit // expected-error {{expected '(' after 'thread_limit'}} 25 #pragma omp teams thread_limit( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 28 #pragma omp teams thread_limit() // expected-error {{expected expression}} 31 #pragma omp teams thread_limit(argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 34 #pragma omp teams thread_limit(argc)) // expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 37 #pragma omp teams thread_limit(argc > 0 ? a[1] : a[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 40 #pragma omp teams thread_limit(argc + argc [all...] |
teams_default_messages.cpp | 7 #pragma omp teams default // expected-error {{expected '(' after 'default'}} 10 #pragma omp teams default ( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 13 #pragma omp teams default () // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 16 #pragma omp teams default (none // expected-error {{expected ')'}} expected-note {{to match this '('}} 19 #pragma omp teams default (shared), default(shared) // expected-error {{directive '#pragma omp teams' cannot contain more than one 'default' clause}} 22 #pragma omp teams default (x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 26 #pragma omp teams default(none) 30 #pragma omp teams default(none)
|
teams_shared_messages.cpp | 63 #pragma omp teams shared // expected-error {{expected '(' after 'shared'}} 66 #pragma omp teams shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 69 #pragma omp teams shared () // expected-error {{expected expression}} 72 #pragma omp teams shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 75 #pragma omp teams shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 78 #pragma omp teams shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 81 #pragma omp teams shared (argc) 84 #pragma omp teams shared (S1) // expected-error {{'S1' does not refer to a value}} 87 #pragma omp teams shared (a, b, c, d, f) 90 #pragma omp teams shared (argv[1]) // expected-error {{expected variable name} [all...] |
teams_firstprivate_messages.cpp | 68 #pragma omp teams firstprivate // expected-error {{expected '(' after 'firstprivate'}} 71 #pragma omp teams firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 74 #pragma omp teams firstprivate() // expected-error {{expected expression}} 77 #pragma omp teams firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 80 #pragma omp teams firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 83 #pragma omp teams firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 86 #pragma omp teams firstprivate(argc) 89 #pragma omp teams firstprivate(S1) // expected-error {{'S1' does not refer to a value}} 92 #pragma omp teams firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}} 95 #pragma omp teams firstprivate(argv[1]) // expected-error {{expected variable name} [all...] |
teams_reduction_messages.cpp | 85 #pragma omp teams reduction // expected-error {{expected '(' after 'reduction'}} 88 #pragma omp teams reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 91 #pragma omp teams reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}} 94 #pragma omp teams reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 97 #pragma omp teams reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} 100 #pragma omp teams reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} 103 #pragma omp teams reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} 106 #pragma omp teams reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}} 109 #pragma omp teams reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expe (…) [all...] |
distribute_firstprivate_messages.cpp | 73 #pragma omp teams 77 #pragma omp teams 81 #pragma omp teams 85 #pragma omp teams 89 #pragma omp teams 93 #pragma omp teams 97 #pragma omp teams 101 #pragma omp teams 105 #pragma omp teams 109 #pragma omp teams [all...] |
teams_private_messages.cpp | 60 #pragma omp teams private // expected-error {{expected '(' after 'private'}} 63 #pragma omp teams private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 66 #pragma omp teams private () // expected-error {{expected expression}} 69 #pragma omp teams private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 72 #pragma omp teams private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 75 #pragma omp teams private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 78 #pragma omp teams private (argc argv) // expected-error {{expected ',' or ')' in 'private' clause}} 81 #pragma omp teams private (S1) // expected-error {{'S1' does not refer to a value}} 84 #pragma omp teams private (a, b, c, d, f) // expected-error {{a private variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be private}} 87 #pragma omp teams private (argv[1]) // expected-error {{expected variable name} [all...] |
teams_ast_print.cpp | 37 #pragma omp teams 40 #pragma omp teams default(none), private(argc,b) firstprivate(argv) shared (d) reduction(+:c) reduction(max:e) num_teams(C) thread_limit(d*C) 43 #pragma omp teams reduction(^:e, f) reduction(&& : g) 53 // CHECK-NEXT: #pragma omp teams 56 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) firstprivate(argv) shared(d) reduction(+: c) reduction(max: e) num_teams(5) thread_limit(d * 5) 59 // CHECK-NEXT: #pragma omp teams reduction(^: e,f) reduction(&&: g) 66 // CHECK-NEXT: #pragma omp teams 69 // CHECK-NEXT: #pragma omp teams default(none) private(argc,b) firstprivate(argv) shared(d) reduction(+: c) reduction(max: e) num_teams(1) thread_limit(d * 1) 72 // CHECK-NEXT: #pragma omp teams reduction(^: e,f) reduction(&&: g) 79 // CHECK-NEXT: #pragma omp teams [all...] |
distribute_private_messages.cpp | 87 #pragma omp teams 90 #pragma omp distribute firstprivate(i), private(i) // expected-error {{private variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute'}} 94 #pragma omp teams private(i) 99 #pragma omp teams firstprivate(i) 102 #pragma omp teams reduction(+:i) 108 #pragma omp teams private(i) 113 #pragma omp teams 117 #pragma omp teams firstprivate(i) 122 #pragma omp teams reduction(+:i) 126 #pragma omp teams reduction(+:i [all...] |
nesting_of_regions.cpp | 100 #pragma omp teams // expected-error {{region cannot be closely nested inside 'parallel' region; perhaps you forget to enclose 'omp teams' directive into a target region?}} 111 #pragma omp distribute // expected-error {{region cannot be closely nested inside 'parallel' region; perhaps you forget to enclose 'omp distribute' directive into a teams region?}} 239 #pragma omp teams // expected-error {{OpenMP constructs may not be nested inside a simd region}} 401 #pragma omp teams // expected-error {{region cannot be closely nested inside 'for' region; perhaps you forget to enclose 'omp teams' directive into a target region?}} 412 #pragma omp distribute // expected-error {{region cannot be closely nested inside 'for' region; perhaps you forget to enclose 'omp distribute' directive into a teams region?}} 540 #pragma omp teams // expected-error {{OpenMP constructs may not be nested inside a simd region}} 709 #pragma omp teams // expected-error {{region cannot be closely nested inside 'sections' region; perhaps you forget to enclose 'omp teams' directive into a target region?} [all...] |
distribute_ast_print.cpp | 22 #pragma omp teams 27 // CHECK-NEXT: #pragma omp teams 53 #pragma omp teams 58 // CHECK-NEXT: #pragma omp teams
|
/external/llvm/test/YAMLParser/ |
construct-set.test | 9 baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees }
|
/external/snakeyaml/src/test/resources/pyyaml/ |
construct-set.data | 7 baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees }
|
/external/snakeyaml/src/test/resources/specification/types/ |
set.yaml | 7 baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees }
|
/external/guice/core/test/com/google/inject/name/ |
NamesTest.java | 59 final Properties teams = new Properties(); local 60 teams.setProperty("SanJose", "Sharks"); 61 teams.setProperty("Edmonton", "Oilers"); 65 Names.bindProperties(binder(), teams); 92 final Properties teams = new Properties(defaults); local 93 teams.setProperty("SanJose", "Sharks"); 94 teams.setProperty("Edmonton", "Oilers"); 98 Names.bindProperties(binder(), teams);
|
/external/chromium-trace/catapult/docs/ |
adding-committers.md | 12 (https://github.com/orgs/catapult-project/teams/catapult) team.
|
/packages/apps/Messaging/build/ |
README | 8 google-style-checker_deploy.jar is pulled from the build share at /google/data/ro/teams/devtools/glint/linters/live/google-style-checker_deploy.jar and can be pulled from there as needed.
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
SetTagTest.java | 39 Set<String> set2 = (Set<String>) map.get("baseball teams");
|
/external/robolectric/v3/ |
build.gradle | 26 // for other teams.
|
/external/clang/include/clang/Basic/ |
OpenMPKinds.h | 132 /// \brief Checks if the specified directive is a teams-kind directive. 134 /// \return true - the directive is a teams-like directive like 'omp teams',
|
OpenMPKinds.def | 122 OPENMP_DIRECTIVE(teams) 341 // Clauses allowed for OpenMP directive 'teams'. 342 // TODO More clauses for 'teams' directive.
|
/external/e2fsprogs/ |
ABOUT-NLS | 140 Translating Teams 147 teams can be found at the Free Translation Project's homepage, 148 `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams" 164 coordinator for all translator teams. 398 37 teams no pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW 434 the translation teams.
|
/external/replicaisland/res/values/ |
rokudou.xml | 32 The Source has a way of affecting people. Other teams I sent to this island in the past have vanished without a trace. The few that made it back returned with fatal health problems. That?s why an inorganic like you is so perfect for this job. Make no mistake, The Source is a natural occurrence--nature?s next logical step. I theorize that it may actually be a tiny piece of a larger whole, a body that created the entire universe! But there will be plenty of time for academics once we have obtained The Source; for now we must concentrate on finding it.
|