Home
last modified time | relevance | path

Searched full:home (Results 1 – 25 of 710) sorted by relevance

12345678910>>...29

/llvm-project/clang-tools-extra/clangd/unittests/
H A DPathMappingTests.cpp64 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 Dthis_image02.f9011 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 Dsync-stat-list.f9018 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 Dstopped_images.f9010 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 Dfailed_images.f909 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 Dteam_number02.f908 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 Dnum_images02.f908 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 Dimage_index02.f9015 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 Dimage_status.f909 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 Dimage_index01.f9012 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 Dcompile_commands.json3 "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 Dtest_cdb.py42 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 Dcompile_commands.json3 "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 DToolChainTest.cpp143 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 Dstress1.cpp8 // 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 DLocalLLDBInit.test4 # 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 Dinline_sites.s600 .asciz "/usr/local/google/home/zequanwu/llvm-project/build/release/bin/clang" # StringData
608home/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…
619home/zequanwu/llvm-project/build/release/lib/clang/15.0.0" "-internal-isystem" "/usr/local/google/
/llvm-project/flang/test/Transforms/
H A Ddebug-line-table-existing.fir12 #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 Ddebug-line-table-inc-file.fir15 #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 Ddebug-line-table-inc-same-file.fir18 #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 Dfread.c27 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 Dcombined-resources-2.yaml13 - '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 DTestPlatformSDK.py72 # 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 Dlit.cfg.py31 # 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 Ddebug_frame.ll18 !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")

12345678910>>...29