| /llvm-project/clang-tools-extra/clangd/unittests/ |
| H A D | PathMappingTests.cpp | 64 EXPECT_TRUE(failedParse("/home/myuser1=")); in TEST() 66 EXPECT_TRUE(failedParse("home/project=/workarea/project")); in TEST() 68 EXPECT_TRUE(failedParse("/home==/workarea")); in TEST() 70 EXPECT_TRUE(failedParse("/home")); in TEST() 72 EXPECT_TRUE(failedParse("/home,/workarea")); in TEST() 77 "/home/project=/workarea/project,/home/project/.includes=/opt/include"; in TEST() 81 ElementsAre(Mapping("/home/project", "/workarea/project"), in TEST() 82 Mapping("/home/project/.includes", "/opt/include"))); in TEST() 98 EXPECT_TRUE(mapsProperly("file:///home", "file:///home", "", in TEST() 103 EXPECT_TRUE(mapsProperly("file:///home/foo.cpp", "file:///workarea1/foo.cpp", in TEST() [all …]
|
| /llvm-project/flang/test/Semantics/ |
| H A D | this_image02.f90 | 11 type(team_type) home, league(2) variable 20 n = this_image(home) 21 n = this_image(team=home) 29 images = this_image(co_array, home) 30 images = this_image(co_array, team=home) 31 images = this_image(team_coarray, team=home) 32 images = this_image(team_coarray[1], team=home) 33 images = this_image(coarray=co_array, team=home) 34 images = this_image(team=home, coarray=co_array) 43 n = this_image(co_array, i, home) [all …]
|
| H A D | sync-stat-list.f90 | 18 type(team_type) :: home variable 22 change team (home, stat=sync_status, errmsg=error_message) 26 change team (home, stat=non_scalar, errmsg=error_message) 30 change team (home, stat=invalid_type, errmsg=error_message) 34 change team (home, stat=sync_status, errmsg=invalid_type) 37 change team (home) 41 change team (home) 45 change team (home) 50 change team (home, stat=sync_status, errmsg=error_message, stat=superfluous_stat) 54 change team (home, sta [all...] |
| H A D | stopped_images.f90 | 10 type(team_type) home, league(2) variable 21 stopped = stopped_images(home) 22 stopped = stopped_images(team=home) 29 stopped = stopped_images(home, c_int32_t) 30 stopped = stopped_images(team=home, kind=c_int32_t) 31 stopped = stopped_images(kind=c_int32_t, team=home) 54 stopped = stopped_images(team=home, team=league(1)) 60 stopped = stopped_images(home, non_integer) 72 stopped = stopped_images(home, c_int32_t, 3) 81 stopped = stopped_images(home, kinds=c_int32_t) [all …]
|
| H A D | failed_images.f90 | 9 type(team_type) home, league(2) variable 20 failure = failed_images(home) 21 failure = failed_images(team=home) 28 failure = failed_images(home, c_int32_t) 29 failure = failed_images(team=home, kind=c_int32_t) 30 failure = failed_images(kind=c_int32_t, team=home) 59 failure = failed_images(home, non_integer) 68 failure = failed_images(home, c_int32_t, 3) 77 failure = failed_images(home, kinds=c_int32_t) 80 failure = failed_images(my_team=home)
|
| H A D | team_number02.f90 | 8 type(team_type) home, league(2) variable 16 n = team_number(home) 17 n = team_number(team=home) 33 n = team_number(home, league(1)) 36 n = team_number(team=home, team=league(1)) 44 n = team_number(my_team=home) 47 non_integer = team_number(home)
|
| H A D | num_images02.f90 | 8 type(team_type) home, league(2) variable 25 n = num_images(home) 26 n = num_images(team=home) 46 n = num_images(home, standard_initial_value) 58 n = num_images(my_team=home) 66 n = num_images(team_number=home)
|
| H A D | image_index02.f90 | 15 type(team_type) :: home, league(2), wrong_result_type variable 44 n = image_index(team=home) 65 n = image_index(array_coarray, [1], home, team_num) 68 n = image_index(array_coarray, [1], home, team_num) 71 n = image_index(array_coarray, [1], team=home, team=league(1)) 89 n = image_index(scalar_coarray, [1], team_number=home) 92 n = image_index(array_coarray, [1], team=home, team_number=team_num) 104 n = image_index(scalar_coarray, [1], teams=home)
|
| H A D | image_status.f90 | 9 type(team_type) home, league(2) variable 29 n = image_status(2, home) 31 n = image_status(image=2, team=home) 32 n = image_status(team=home, image=2) 79 n = image_status(1, home, 2) 85 n = image_status(image=1, team=home, team=league(1)) 91 n = image_status(1, my_team=home)
|
| H A D | image_index01.f90 | 12 type(team_type) :: home, league(2) variable 24 n = image_index(scalar_coarray, [1], home) 26 n = image_index(array_coarray, [1], home) 29 n = image_index(coarray=scalar_coarray, sub=subscripts_corank1, team=home) 30 n = image_index(team=home, sub=[1], coarray=scalar_coarray)
|
| /llvm-project/clang/test/Index/ |
| H A D | compile_commands.json | 3 "directory": "/home/john.doe/MyProject", 4 "command": "clang++ -o project.o -c /home/john.doe/MyProject/project.cpp", 5 "file": "/home/john.doe/MyProject/project.cpp" 8 "directory": "/home/john.doe/MyProjectA", 9 "command": "clang++ -o project2.o -c /home/john.doe/MyProject/project2.cpp", 10 "file": "/home/john.doe/MyProject/project2.cpp" 13 "directory": "/home/john.doe/MyProjectB", 14 "command": "clang++ -DFEATURE=1 -o project2-feature.o -c /home/john.doe/MyProject/project2.cpp", 15 "file": "/home/john.doe/MyProject/project2.cpp" 22 # RUN: c-index-test -compilation-db lookup /home/john.doe/MyProject/project.cpp %s | FileCheck -che… [all …]
|
| /llvm-project/clang/bindings/python/tests/cindex/ |
| H A D | test_cdb.py | 42 cmds = cdb.getCompileCommands("/home/john.doe/MyProject/project.cpp") 48 cmds = cdb.getCompileCommands(Path("/home/john.doe/MyProject/project.cpp")) 58 "wd": "/home/john.doe/MyProject", 59 "file": "/home/john.doe/MyProject/project.cpp", 66 "/home/john.doe/MyProject/project.cpp", 70 "wd": "/home/john.doe/MyProjectA", 71 "file": "/home/john.doe/MyProject/project2.cpp", 78 "/home/john.doe/MyProject/project2.cpp", 82 "wd": "/home/john.doe/MyProjectB", 83 "file": "/home/joh [all...] |
| /llvm-project/clang/bindings/python/tests/cindex/INPUTS/ |
| H A D | compile_commands.json | 3 "directory": "/home/john.doe/MyProject", 4 "command": "clang++ -o project.o -c /home/john.doe/MyProject/project.cpp", 5 "file": "/home/john.doe/MyProject/project.cpp" 8 "directory": "/home/john.doe/MyProjectA", 9 "command": "clang++ -o project2.o -c /home/john.doe/MyProject/project2.cpp", 10 "file": "/home/john.doe/MyProject/project2.cpp" 13 "directory": "/home/john.doe/MyProjectB", 14 "command": "clang++ -DFEATURE=1 -o project2-feature.o -c /home/john.doe/MyProject/project2.cpp", 15 "file": "/home/john.doe/MyProject/project2.cpp"
|
| /llvm-project/clang/unittests/Driver/ |
| H A D | ToolChainTest.cpp | 143 Driver TheDriver("/home/test/bin/clang", "arm-linux-gnueabi", Diags, in TEST() 147 "foo.cpp", "/home/test/lib/gcc/arm-linux-gnueabi/4.6.1/crtbegin.o", in TEST() 148 "/home/test/include/arm-linux-gnueabi/.keep"}; in TEST() 166 "/home/test/bin/../lib/gcc/arm-linux-gnueabi/4.6.1\n" in TEST() 168 "/home/test/bin/../lib/gcc/arm-linux-gnueabi/4.6.1\n" in TEST() 378 Driver CCDriver("/home/test/bin/clang", "arm-linux-gnueabi", Diags, in TEST() 381 Driver CXXDriver("/home/test/bin/clang++", "arm-linux-gnueabi", Diags, in TEST() 384 Driver CLDriver("/home/test/bin/clang-cl", "arm-linux-gnueabi", Diags, in TEST() 389 { "/home/test/bin/clang", "foo.cpp"})); in TEST() 391 { "/home/tes in TEST() [all...] |
| /llvm-project/clang/test/Modules/ |
| H A D | stress1.cpp | 8 // RUN: -fmodule-map-file-home-is-cwd \ 16 // RUN: -fmodule-map-file-home-is-cwd \ 26 // RUN: -fmodule-map-file-home-is-cwd \ 34 // RUN: -fmodule-map-file-home-is-cwd \ 44 // RUN: -fmodule-map-file-home-is-cwd \ 52 // RUN: -fmodule-map-file-home-is-cwd \ 60 // RUN: -fmodule-map-file-home-is-cwd \ 72 // RUN: -fmodule-map-file-home-is-cwd \ 86 // RUN: -fmodule-map-file-home-is-cwd \ 99 // RUN: -fmodule-map-file-home-is-cwd \ [all …]
|
| /llvm-project/lldb/test/Shell/Driver/ |
| H A D | LocalLLDBInit.test | 4 # RUN: mkdir -p %t.home 8 # RUN: env HOME=%t.home %lldb-init -o 'settings show frame-format' 2>&1 | FileCheck %s --check-prefix=WARNINIT --check-prefix=CHECK 9 # RUN: env HOME=%t.home %lldb-init -local-lldbinit -o 'settings show frame-format' 2>&1 | FileCheck %s --check-prefix=ALLOWINIT --check-prefix=NOINIT
|
| /llvm-project/lldb/test/Shell/SymbolFile/NativePDB/Inputs/ |
| H A D | inline_sites.s | 600 .asciz "/usr/local/google/home/zequanwu/llvm-project/build/release/bin/clang" # StringData 608 …home/zequanwu/llvm-project/build/release/lib/clang/15.0.0\" \"-internal-isystem\" \"/usr/local/goo… 616 ….long 0x101a # Argument: /usr/local/google/home/zequanwu/llvm-project/bui… 619 …home/zequanwu/llvm-project/build/release/lib/clang/15.0.0" "-internal-isystem" "/usr/local/google/…
|
| /llvm-project/flang/test/Transforms/ |
| H A D | debug-line-table-existing.fir | 12 #di_file = #llvm.di_file<"simple.f90" in "/home/user01/llvm-project/build_release"> 13 #loc = loc("/home/user01/llvm-project/build_release/simple.f90":0:0) 14 #loc1 = loc("/home/user01/llvm-project/build_release/simple.f90":1:1) 20 // CHECK: #loc = loc("/home/user01/llvm-project/build_release/simple.f90":0:0) 21 // CHECK: #loc1 = loc("/home/user01/llvm-project/build_release/simple.f90":1:1)
|
| H A D | debug-line-table-inc-file.fir | 15 #loc = loc("/home/user01/llvm-project/build_release/simple.f90":0:0) 16 #loc1 = loc("/home/user01/llvm-project/build_release/inc.f90":1:1) 17 #loc2 = loc("/home/user01/llvm-project/build_release/inc.f90":2:1) 18 #loc3 = loc("/home/user01/llvm-project/build_release/simple.f90":3:1) 19 #loc4 = loc("/home/user01/llvm-project/build_release/simple.f90":4:3) 20 #loc5 = loc("/home/user01/llvm-project/build_release/simple.f90":5:1)
|
| H A D | debug-line-table-inc-same-file.fir | 18 #loc = loc("/home/user01/llvm-project/build_release/simple.f90":0:0) 19 #loc1 = loc("/home/user01/llvm-project/build_release/simple.f90":1:1) 20 #loc2 = loc("/home/user01/llvm-project/build_release/simple.f90":2:1) 21 #loc3 = loc("/home/user01/llvm-project/build_release/simple.f90":3:1)
|
| /llvm-project/clang/test/Analysis/ |
| H A D | fread.c | 27 FILE *fp = fopen("/home/test", "rb+"); in fgetc_props_taint() 38 FILE *fp = fopen("/home/test", "rb+"); in fread_props_taint() 51 FILE *fp = fopen("/home/test", "rb+"); in read_one_byte1() 66 FILE *fp = fopen("/home/test", "rb+"); in read_one_byte2() 81 FILE *fp = fopen("/home/test", "rb+"); in read_one_byte3() 93 FILE *fp = fopen("/home/test", "rb+"); in read_many_bytes() 107 FILE *fp = fopen("/home/test", "rb+"); in random_access_read1() 162 FILE *fp = fopen("/home/test", "rb+"); in random_access_read2() 186 FILE *fp = fopen("/home/test", "rb+"); in random_access_read_symbolic_count() 209 FILE *fp = fopen("/home/tes in dynamic_random_access_read() [all...] |
| /llvm-project/lld/test/COFF/Inputs/ |
| H A D | combined-resources-2.yaml | 13 - 'Z:\home\martin\code\llvm\tools\lld\test\COFF\Inputs\combined-resources-2.res' 16 … - FileName: 'Z:\home\martin\code\llvm\tools\lld\test\COFF\Inputs\combined-resources-2.res' 24 … ObjectName: 'Z:\home\martin\code\llvm\tools\lld\test\COFF\Inputs\combined-resources-2.o' 42 - 'Z:\home\martin\code\llvm\tools\lld\test\COFF\Inputs' 44 - 'Z:\home\martin\msvc2019\vc\tools\msvc\14.20.27508\bin\Hostx86\x64\cvtres.exe'
|
| /llvm-project/lldb/test/API/commands/platform/sdk/ |
| H A D | TestPlatformSDK.py | 72 # Save the current home directory and restore it afterwards. 73 old_home = os.getenv("HOME") 77 del os.environ["HOME"] 79 os.environ["HOME"] = old_home 82 os.environ["HOME"] = test_home
|
| /llvm-project/mlir/test/Unit/ |
| H A D | lit.cfg.py | 31 # Propagate HOME as it can be used to override incorrect homedir in passwd 33 if "HOME" in os.environ: 34 config.environment["HOME"] = os.environ["HOME"]
|
| /llvm-project/llvm/test/CodeGen/AMDGPU/ |
| H A D | debug_frame.ll | 18 !1 = !DIFile(filename: "/home/espindola/llvm/test.c", directory: "/home/espindola/llvm/build") 22 !6 = !DIFile(filename: "/home/espindola/llvm/test.c", directory: "/home/espindola/llvm/build")
|