Home
last modified time | relevance | path

Searched refs:rename (Results 1 – 25 of 1126) sorted by relevance

12345678910>>...46

/external/google-breakpad/src/third_party/libdisasm/swig/
Dlibdisasm.i7 %rename(version_string) x86_version_string;
17 %rename(report_codes) x86_report_codes;
18 %rename(report_error) x86_report_error;
19 %rename(options) x86_options;
20 %rename(init) x86_init;
21 %rename(set_reporter) x86_set_reporter;
22 %rename(set_options) x86_set_options;
23 %rename(options) x86_get_options;
24 %rename(cleanup) x86_cleanup;
25 %rename(reg_type) x86_reg_type;
[all …]
/external/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
Drename-section-flag.test4 # RUN: llvm-objcopy --rename-section=.foo=.bar,alloc \
5 # RUN: --rename-section=.baz=.blah,alloc %t %t.alloc
7 # RUN: llvm-objcopy --rename-section=.foo=.bar,load \
8 # RUN: --rename-section=.baz=.blah,load %t %t.load
10 # RUN: llvm-objcopy --rename-section=.foo=.bar,noload \
11 # RUN: --rename-section=.baz=.blah,noload %t %t.noload
13 # RUN: llvm-objcopy --rename-section=.foo=.bar,readonly \
14 # RUN: --rename-section=.baz=.blah,readonly %t %t.readonly
16 # RUN: llvm-objcopy --rename-section=.foo=.bar,exclude \
17 # RUN: --rename-section=.baz=.blah,exclude %t %t.exclude
[all …]
Drename-section-flag-preserved.test4 # RUN: llvm-objcopy --rename-section=.foo=.bar,alloc %t %t.alloc
6 # RUN: llvm-objcopy --rename-section=.foo=.bar,load %t %t.load
8 # RUN: llvm-objcopy --rename-section=.foo=.bar,noload %t %t.noload
10 # RUN: llvm-objcopy --rename-section=.foo=.bar,readonly %t %t.readonly
12 # RUN: llvm-objcopy --rename-section=.foo=.bar,debug %t %t.debug
14 # RUN: llvm-objcopy --rename-section=.foo=.bar,code %t %t.code
16 # RUN: llvm-objcopy --rename-section=.foo=.bar,data %t %t.data
18 # RUN: llvm-objcopy --rename-section=.foo=.bar,rom %t %t.rom
20 # RUN: llvm-objcopy --rename-section=.foo=.bar,contents %t %t.contents
22 # RUN: llvm-objcopy --rename-section=.foo=.bar,merge %t %t.merge
[all …]
Drename-section.test2 # RUN: llvm-objcopy --rename-section=.foo=.bar %t %t2
4 # RUN: not llvm-objcopy --rename-section=.foo.bar --rename-section=.foo=.other %t %t2 2>&1 | FileCh…
5 # RUN: not llvm-objcopy --rename-section=.foo=.bar --rename-section=.foo=.other %t %t2 2>&1 | FileC…
28 #BAD-FORMAT: bad format for --rename-section: missing '='
Drename-section-duplicate-names.test1 ## When multiple sections have the same name, and --rename-section is specified,
7 ## we can rename to an already existing name.
11 # RUN: llvm-objcopy --rename-section=.foo=.bar %t.o %t2.o
12 ## ... then rename them both.
13 # RUN: llvm-objcopy --rename-section=.bar=.baz %t2.o %t3.o
Dset-section-flags-and-rename.test3 # RUN: not llvm-objcopy --rename-section=.foo=.bar --set-section-flags=.foo=alloc %t %t.2 2>&1 | Fi…
4 # RUN: not llvm-objcopy --rename-section=.foo=.bar --set-section-flags=.bar=alloc %t %t.2 2>&1 | Fi…
13 # SET-FOO: --set-section-flags=.foo conflicts with --rename-section=.foo=.bar
14 # SET-BAR: --set-section-flags=.bar conflicts with --rename-section=.foo=.bar
/external/tensorflow/third_party/nccl/
Darchive.patch3 rename from src/collectives/device/all_gather.cu
4 rename to src/collectives/device/all_gather.cu.cc
7 rename from src/collectives/device/all_reduce.cu
8 rename to src/collectives/device/all_reduce.cu.cc
11 rename from src/collectives/device/broadcast.cu
12 rename to src/collectives/device/broadcast.cu.cc
15 rename from src/collectives/device/functions.cu
16 rename to src/collectives/device/functions.cu.cc
19 rename from src/collectives/device/reduce.cu
20 rename to src/collectives/device/reduce.cu.cc
[all …]
/external/llvm-project/clang-tools-extra/docs/
Dclang-rename.rst13 :program:`clang-rename` is a C++ refactoring tool. Its purpose is to perform
26 :program:`clang-rename` is a `LibTooling
35 $ clang-rename -offset=42 -new-name=foo test.cpp -- -Imy_project/include -DMY_DEFINES ...
49 :program:`clang-rename` also aims to be easily integrated into popular text
60 $ clang-rename -qualified-name=foo -new-name=bar test.cpp
63 :program:`clang-rename` doesn't accept both `-offset` and `-qualified-name` at
69 $ clang-rename -offset=42 -new-name=bar1 -offset=150 -new-name=bar2 test.cpp
75 $ clang-rename -qualified-name=foo1 -new-name=bar1 -qualified-name=foo2 -new-name=bar2 test.cpp
105 $ clang-rename -input=test.yaml test.cpp
107 :program:`clang-rename` offers the following options:
[all …]
/external/llvm-project/clang/tools/clang-rename/
DCMakeLists.txt6 add_clang_tool(clang-rename
10 clang_target_link_libraries(clang-rename
21 install(PROGRAMS clang-rename.py
23 COMPONENT clang-rename)
24 install(PROGRAMS clang-rename.el
26 COMPONENT clang-rename)
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/
Drename.pass.cpp31 ASSERT_SAME_TYPE(decltype(fs::rename(p, p)), void); in TEST_CASE()
32 ASSERT_SAME_TYPE(decltype(fs::rename(p, p, ec)), void); in TEST_CASE()
34 ASSERT_NOT_NOEXCEPT(fs::rename(p, p)); in TEST_CASE()
35 ASSERT_NOEXCEPT(fs::rename(p, p, ec)); in TEST_CASE()
44 fs::rename(f, t); in TEST_CASE()
72 rename(TC.from, TC.to, ec); in TEST_CASE()
88 rename(file, file, ec); in TEST_CASE()
96 rename(file, sym, ec); in TEST_CASE()
106 rename(file2, file3, ec); in TEST_CASE()
117 rename(bad_sym, bad_sym_dest, ec); in TEST_CASE()
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/
Drename.pass.cpp30 ASSERT_SAME_TYPE(decltype(fs::rename(p, p)), void); in TEST_CASE()
31 ASSERT_SAME_TYPE(decltype(fs::rename(p, p, ec)), void); in TEST_CASE()
33 ASSERT_NOT_NOEXCEPT(fs::rename(p, p)); in TEST_CASE()
34 ASSERT_NOEXCEPT(fs::rename(p, p, ec)); in TEST_CASE()
43 fs::rename(f, t); in TEST_CASE()
71 rename(TC.from, TC.to, ec); in TEST_CASE()
87 rename(file, file, ec); in TEST_CASE()
95 rename(file, sym, ec); in TEST_CASE()
105 rename(file2, file3, ec); in TEST_CASE()
116 rename(bad_sym, bad_sym_dest, ec); in TEST_CASE()
/external/llvm-project/llvm/test/tools/llvm-objcopy/
Dredefine-symbols.test11 # RUN: echo ' foo oof #rename foo ' > %t.rename.txt
12 # RUN: echo 'bar' >> %t.rename.txt
13 # RUN: not llvm-objcopy --redefine-syms %t.rename.txt %t /dev/null 2>&1 | FileCheck %s --check-pref…
14 # MISSING-SYM-NAME: error: {{.*}}.rename.txt:2: missing new symbol name
16 # RUN: not llvm-objcopy --redefine-syms %t.rename-none.txt %t /dev/null 2>&1 | FileCheck %s --check…
17 # NO-FILE: error: '{{.*}}.rename-none.txt': {{[Nn]}}o such file or directory
/external/curl/tests/data/
Dtest60813 Test file for rename test
24 SFTP post-quote rename
27 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -Q "-rename %PWD/log/file608.txt %PWD/…
29 # Verify that the file was renamed properly, then rename the file back to what
35 Test file for rename test
43 Test file for rename test
Dtest61113 Dummy test file for rename test
27 SFTP post-quote rename
30 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -Q "-rename %PWD/log/test611.dir %PWD/…
36 Dummy test file for rename test
Dtest63915 Dummy test file for rename test
29 SFTP post-quote rename * asterisk accept-fail
32 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -Q "-*rename %PWD/log/test639-not-exis…
38 Dummy test file for rename test
Dtest63815 Dummy test file for rename test
29 SFTP post-quote rename * asterisk accept-fail
32 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -Q "-*rename %PWD/log/test638.dir %PWD…
38 Dummy test file for rename test
/external/zstd/tests/
Dtest-zstd-versions.py94 os.rename(sample + '.zst', sample + '_01_64_' + tag + '_dictio.zst')
96 os.rename(sample + '.zst', sample + '_05_64_' + tag + '_dictio.zst')
98 os.rename(sample + '.zst', sample + '_09_64_' + tag + '_dictio.zst')
100 os.rename(sample + '.zst', sample + '_15_64_' + tag + '_dictio.zst')
102 os.rename(sample + '.zst', sample + '_18_64_' + tag + '_dictio.zst')
111 os.rename(sample + '.zst', sample + '_01_64_' + tag + '_nodict.zst')
113 os.rename(sample + '.zst', sample + '_05_64_' + tag + '_nodict.zst')
115 os.rename(sample + '.zst', sample + '_09_64_' + tag + '_nodict.zst')
117 os.rename(sample + '.zst', sample + '_15_64_' + tag + '_nodict.zst')
119 os.rename(sample + '.zst', sample + '_18_64_' + tag + '_nodict.zst')
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Daix-xcoff-symbol-rename.ll49 ; ASM-NEXT: .rename _Renamed..24f_o[DS],"f$o"
51 ; ASM-NEXT: .rename ._Renamed..24f_o,".f$o"
62 ; ASM-NEXT: .rename _Renamed..26f_o[DS],"f&o"
64 ; ASM-NEXT: .rename ._Renamed..26f_o,".f&o"
74 ; ASM-NEXT: .rename _Renamed..265ff__o[DS],"f&_o"
76 ; ASM-NEXT: .rename ._Renamed..265ff__o,".f&_o"
86 ; ASM-NEXT: .rename _Renamed..60f_o,"f`o"
91 ; ASM-NEXT: .rename _Renamed..2222f_o_[RW],"f""o"""
93 ; ASM-NEXT: .rename _Renamed..3df_o[BS],"f=o"
95 ; ASM-NEXT: .rename ._Renamed..40f_o[PR],".f@o"
[all …]
/external/grpc-grpc/tools/internal_ci/windows/
Dgrpc_build_artifacts.bat17 rename C:\Python27_32bit Python27_32bits
18 rename C:\Python34_32bit Python34_32bits
19 rename C:\Python35_32bit Python35_32bits
20 rename C:\Python36_32bit Python36_32bits
21 rename C:\Python37_32bit Python37_32bits
/external/llvm-project/llvm/test/Other/
Ddebugcounter-predicateinfo.ll3 ; RUN: opt -debug-counter=predicateinfo-rename-skip=1,predicateinfo-rename-count=1 -print-predicate…
4 ;; Test that, with debug counters on, we don't rename the first info, only the second
29 ;; We will not rename this one (we will still generate a copy of a copy for the next one)
34 ;; We will rename this one
/external/llvm-project/llvm/test/tools/llvm-objcopy/COFF/
Dredefine-symbol.test7 # RUN: echo 'func cnuf1234 #rename func' > %t.rename.txt
8 # RUN: echo ' foo ba ' >> %t.rename.txt
9 # RUN: echo 'notexist notexist' >> %t.rename.txt
10 # RUN: llvm-objcopy --redefine-syms %t.rename.txt %t %t3 2>&1 | count 0
/external/deqp/scripts/
Dcaselist_diff.py138 def renameCases (cases, rename): argument
145 for src, dst in rename:
192 rename = RENAME_LIST_2012_3_2012_4 variable
194 renamedCases, renameList = renameCases(oldCases, rename)
/external/ltp/testcases/kernel/syscalls/inotify/
DREADME31 rename file IN_MOVED_FROM
33 rename yourself IN_MOVE_SELF
35 rename yourself again
36 rename back IN_MOVE_SELF
/external/llvm-project/llvm/unittests/Support/
DReplaceFileTest.cpp70 TEST(rename, FileOpenedForReadingCanBeReplaced) { in TEST() argument
93 EXPECT_TRUE(!fs::rename(SourceFileName, TargetFileName)); in TEST()
109 EXPECT_TRUE(!fs::rename(TargetFileName, SourceFileName)); in TEST()
118 TEST(rename, ExistingTemp) { in TEST() argument
155 ASSERT_NO_ERROR(fs::rename(SourceFileName, TargetFileName)); in TEST()
/external/llvm-project/clang-tools-extra/clangd/test/
Drename.test2 …":{"processId":123,"rootPath":"clangd","capabilities":{"textDocument": {"rename": {"dynamicRegistr…
26 # CHECK-NEXT: "message": "Cannot rename symbol: there is no symbol at the given location"
31 {"jsonrpc":"2.0","id":4,"method":"textDocument/rename","params":{"textDocument":{"uri":"test:///foo…
34 # CHECK-NEXT: "message": "Cannot rename symbol: there is no symbol at the given location"
39 {"jsonrpc":"2.0","id":3,"method":"textDocument/rename","params":{"textDocument":{"uri":"test:///foo…

12345678910>>...46