/llvm-project/flang/test/Semantics/ |
H A D | namelist01.f90 | 2 ! Test for checking namelist constraints, C8103-C8105 13 namelist /dupName/ x, x 14 namelist /nl/ uniquename ! ok 20 namelist /dupName/ y, y 26 NAMELIST /NLIST/ ivar 27 !ERROR: A namelist group object 'jvar' must not be assumed-size 28 NAMELIST /NLIST/ jvar 33 !ERROR: A namelist group object 'jvar' must not be assumed-size 34 NAMELIST /NLIST/ ivar, jvar 39 !ERROR: A namelist group object 'jvar' must not be assumed-size [all …]
|
H A D | resolve40.f90 | 3 namelist /nl/x 5 !ERROR: NAMELIST statement is not allowed in a BLOCK construct 6 namelist /nl/y 12 !ERROR: Namelist group 'nl' not found 19 !ERROR: 'x' is not the name of a namelist group 25 namelist /nl/x 29 namelist /nl2/x 38 namelist /nl/y 42 namelist /nl/x 48 namelist /nl/ s6 [all …]
|
H A D | modfile19.f90 | 5 namelist /nl1/ x, y 6 namelist /nl2/ y, x 7 namelist /nl1/ i, z 18 ! namelist/nl1/x,y,i,z 19 ! namelist/nl2/y,x
|
H A D | blockconstruct01.f90 | 2 ! C1107 -- COMMON, EQUIVALENCE, INTENT, NAMELIST, OPTIONAL, VALUE or 33 namelist /nl/x 35 !ERROR: NAMELIST statement is not allowed in a BLOCK construct 36 namelist /nl/y
|
H A D | symbol26.f90 | 3 ! Ensure that implicitly typed names in module NAMELIST groups receive 7 !DEF: /m/a PUBLIC Namelist 9 namelist/a/j
|
/llvm-project/flang/test/Semantics/OpenMP/ |
H A D | private02.f90 | 4 ! Variables that appear in namelist statements may not appear in a private clause. 8 namelist /nlist1/ a, b 15 namelist /nlist2/ c, d 21 !ERROR: Variable 'a' in NAMELIST cannot be in a PRIVATE clause 22 !ERROR: Variable 'c' in NAMELIST cannot be in a PRIVATE clause 31 namelist /nlist3/ p, q 33 !ERROR: Variable 'p' in NAMELIST cannot be in a PRIVATE clause 34 !ERROR: Variable 'd' in NAMELIST cannot be in a PRIVATE clause
|
/llvm-project/flang/runtime/ |
H A D | namelist.cpp | 1 //===-- runtime/namelist.cpp ----------------------------------------------===// 9 #include "namelist.h" 22 // NAMELIST input, plus a byte for NUL termination. 121 "Identifier '%s...' in NAMELIST input group is too long", buffer); in GetLowerCaseName() 147 "NAMELIST input subscript value overflow"); in GetSubscriptValue() 183 "Too many subscripts for rank-%d NAMELIST group item '%s'", in HandleSubscripts() 190 handler.SignalError("Subscript %jd out of range %jd..%jd in NAMELIST " in HandleSubscripts() 210 "NAMELIST group item '%s' dimension %d", in HandleSubscripts() 249 "Bad subscripts for NAMELIST input group item '%s'", name); in HandleSubscripts() 253 "Bad subscripts (missing ')') for NAMELIST input group item '%s'", in HandleSubscripts() [all …]
|
H A D | namelist.h | 1 //===-- runtime/namelist.h --------------------------------------*- C++ -*-===// 9 // Defines the data structure used for NAMELIST I/O 26 // A NAMELIST group is a named ordered collection of distinct variable names. 28 // If all the items are variables with fixed addresses, the NAMELIST group 40 // When the uses of a namelist group appear in scopes with distinct sets 49 // NAMELIST group item name and for coping with short arrays. Always false 50 // when not reading a NAMELIST.
|
/llvm-project/flang/unittests/Runtime/ |
H A D | Namelist.cpp | 1 //===-- flang/unittests/Runtime/Namelist.cpp --------------------*- C++ -*-===// 9 #include "../../runtime/namelist.h" 76 // Create a NAMELIST group in TEST() 82 // Do an internal NAMELIST write and check results in TEST() 88 ASSERT_EQ(outStatus1, 0) << "Failed namelist output sanity, status " in TEST() 116 ASSERT_EQ(inStatus, 0) << "Failed namelist input sanity, status " in TEST() 123 ASSERT_EQ(outStatus2, 0) << "Failed namelist output sanity rewrite, status " in TEST() 147 ASSERT_EQ(inStatus, 0) << "Failed namelist input subscripts, status " in TEST() 157 << "Failed namelist output subscripts rewrite, status " in TEST() 184 ASSERT_EQ(inStatus, 0) << "Failed namelist inpu in TEST() [all...] |
/llvm-project/flang/lib/Semantics/ |
H A D | check-namelist.cpp | 1 //===-- lib/Semantics/check-namelist.cpp ----------------------------------===// 9 #include "check-namelist.h" 21 "A namelist group object '%s' must not be assumed-size"_err_en_US, in Leave() 27 "A PRIVATE namelist group object '%s' must not be in a " in Leave() 28 "PUBLIC namelist"_err_en_US, in Leave() 46 "NAMELIST variable '%s' not allowed in a REDUCE locality-spec"_err_en_US,
|
H A D | check-io.cpp | 761 if (const parser::Name * namelist{std::get_if<parser::Name>(&control.u)}) { in FindNamelist() 762 if (namelist->symbol && in FindNamelist() 763 namelist->symbol->GetUltimate().has<NamelistDetails>()) { in FindNamelist() 764 return namelist; in FindNamelist() 786 if (const parser::Name * namelist{FindNamelist(readStmt.controls)}) { in Leave() 787 if (namelist->symbol) { in Leave() 788 CheckNamelist(*namelist->symbol, common::DefinedIo::ReadFormatted, in Leave() 789 namelist->source); in Leave() 841 if (const parser::Name * namelist{FindNamelist(writeStmt.controls)}) { in Leave() 842 if (namelist in Leave() 756 if (const parser::Name * namelist{std::get_if<parser::Name>(&control.u)}) { FindNamelist() local 781 if (const parser::Name * namelist{FindNamelist(readStmt.controls)}) { Leave() local 834 if (const parser::Name * namelist{FindNamelist(writeStmt.controls)}) { Leave() local 1179 CheckNamelist(const Symbol & namelist,common::DefinedIo which,parser::CharBlock namelistLocation) const CheckNamelist() argument [all...] |
/llvm-project/clang-tools-extra/clang-tidy/utils/ |
H A D | Matchers.h | 83 explicit MatchesAnyListedNameMatcher(llvm::ArrayRef<StringRef> NameList) { in MatchesAnyListedNameMatcher() argument 85 NameList.begin(), NameList.end(), std::back_inserter(NameMatchers), in MatchesAnyListedNameMatcher() 147 matchesAnyListedName(llvm::ArrayRef<StringRef> NameList) { in matchesAnyListedName() 149 new MatchesAnyListedNameMatcher(NameList)); in matchesAnyListedName() 175 explicit MatchesAnyListedTypeNameMatcher(llvm::ArrayRef<StringRef> NameList); 187 matchesAnyListedTypeName(llvm::ArrayRef<StringRef> NameList) { in matchesAnyListedTypeName() 189 new MatchesAnyListedTypeNameMatcher(NameList)); in matchesAnyListedTypeName() 146 matchesAnyListedName(llvm::ArrayRef<StringRef> NameList) matchesAnyListedName() argument 186 matchesAnyListedTypeName(llvm::ArrayRef<StringRef> NameList) matchesAnyListedTypeName() argument
|
H A D | Matchers.cpp | 21 llvm::ArrayRef<StringRef> NameList) in MatchesAnyListedTypeNameMatcher() argument 22 : NameMatchers(NameList.begin(), NameList.end()) {} in MatchesAnyListedTypeNameMatcher()
|
/llvm-project/llvm/test/DebugInfo/X86/ |
H A D | namelist1.ll | 1 ; Namelist is a fortran feature, this test checks whether DW_TAG_namelist and 23 ; namelist /nml/ a, b 31 source_filename = "namelist.ll" 50 !3 = !DIFile(filename: "namelist.f90", directory: "/dir") 51 …: " F90 Flang - 1.5 2017-05-01", isOptimized: false, flags: "'+flang -g namelist.f90 -S -emit-llvm…
|
H A D | namelist2.ll | 1 ; Namelist is a fortran feature, this test checks whether DW_TAG_namelist and 23 ; namelist /nml/ aa, bb 31 ; Program namelist 61 !21 = distinct !DISubprogram(name: "namelist", scope: !4, file: !3, line: 11, type: !22, scopeLine:…
|
/llvm-project/llvm/test/TableGen/ |
H A D | lisp.td | 29 class NameList<list<string> Names> : 32 def Three : NameList<["Tom", "Dick", "Harry"]>; 34 def One : NameList<["Jeffrey Sinclair"]>;
|
/llvm-project/flang/docs/ |
H A D | BijectiveInternalNameUniquing.md | 73 | N | Namelist group 175 ## Namelist groups 177 * A namelist group is prefixed with `N` 183 namelist /temps/ x
|
H A D | Extensions.md | 40 * Delimited list-directed (and NAMELIST) character output is required 54 NAMELIST input. If a later standard were to clarify this case, this 195 * `NAMELIST` allowed in the execution part 320 * At runtime, `NAMELIST` input will skip over `NAMELIST` groups 386 * A `NAMELIST` input group may omit its trailing `/` character if 387 it is followed by another `NAMELIST` input group. 388 * A `NAMELIST` input group may begin with either `&` or `$`. 552 NAMELIST I/O, for which an actual asynchronous runtime implementation 725 * F18 processes the `NAMELIST` grou [all...] |
/llvm-project/lldb/test/API/commands/target/basic/ |
H A D | bogus.yaml | 59 NameList: 109 NameList: 173 NameList:
|
/llvm-project/llvm/test/tools/llvm-lipo/Inputs/ |
H A D | i386-x86_64-armv7-arm64-universal.yaml | 104 NameList: 192 NameList: 267 NameList: 355 NameList:
|
H A D | i386-x86_64-universal.yaml | 94 NameList: 182 NameList:
|
H A D | armv7_i386_non_default_alignment.yaml | 94 NameList: 181 NameList:
|
/llvm-project/llvm/test/tools/llvm-libtool-darwin/ |
H A D | cpu-subtype-matching.test | 71 NameList: 128 NameList: 209 NameList: 267 NameList:
|
/llvm-project/flang/test/Lower/ |
H A D | namelist-common-block.f90 | 3 ! Test that allocatable or pointer item from namelist are retrieved correctly 9 namelist /t/i,p
|
H A D | module-single-point-of-def.f90 | 5 ! Test that this holds true in contexts with namelist members that are special 41 namelist /some_namelist/ i
|