Home
last modified time | relevance | path

Searched refs:Put (Results 1 – 25 of 81) sorted by relevance

1234

/llvm-project-15.0.7/flang/lib/Parser/
H A Dunparse.cpp192 Put('('), Walk(x.t, ","), Put(')'); in Unparse()
418 Put('['), Walk(x.v), Put(']'); in Unparse()
704 Put('-'), Put(**second); in Unparse()
729 Put('/'), Walk(std::get<Name>(x.t)), Put('/'); in Unparse()
736 Put(separator), Put('('), Walk(y), Put(')'); in Unparse()
785 Put('('), Walk(x.subscripts, ","), Put(')'); in Unparse()
872 Put('('), Walk(x.t, ","), Put(')'); in Unparse()
901 Put('('), Walk(y), Put(')'); in Unparse()
1276 Put('('), Walk(x.controls, ", "), Put(')'); in Unparse()
1494 Put('"'), Put(x.type), Put('"'); in Unparse()
[all …]
H A Dtoken-sequence.h37 TokenSequence(const TokenSequence &that) { Put(that); } in TokenSequence()
40 Put(that, at, count);
46 TokenSequence(const std::string &s, Provenance p) { Put(s, p); } in TokenSequence()
50 Put(that);
82 provenances_.Put({provenance, 1}); in PutNextTokenChar()
95 void Put(const TokenSequence &);
96 void Put(const TokenSequence &, ProvenanceRange);
98 void Put(const char *, std::size_t, Provenance);
99 void Put(const CharBlock &, Provenance);
100 void Put(const std::string &, Provenance);
[all …]
H A Dtoken-sequence.cpp97 provenances_.Put(that.provenances_); in Put()
105 Put(tok, range.OffsetMember(offset)); in Put()
111 void TokenSequence::Put( in Put() function in Fortran::parser::TokenSequence
129 void TokenSequence::Put( in Put() function in Fortran::parser::TokenSequence
138 Put(&t[0], t.size(), provenance); in Put()
142 Put(s.data(), s.size(), provenance); in Put()
146 Put(ss.str(), provenance); in Put()
225 result.Put(*this, j); in RemoveBlanks()
239 result.Put(*this, j); in RemoveRedundantBlanks()
256 result.Put(*this, 0, j - 1); in ClipComment()
[all …]
H A Dchar-buffer.cpp37 std::size_t CharBuffer::Put(const char *data, std::size_t n) { in Put() function in Fortran::parser::CharBuffer
48 std::size_t CharBuffer::Put(const std::string &str) { in Put() function in Fortran::parser::CharBuffer
49 return Put(str.data(), str.size()); in Put()
H A Dpreprocessor.cpp133 result.Put(text, j, 1); in TokenPasting()
196 result.Put(DEREF(arg)); in Apply()
207 result.Put(args[k]); in Apply()
224 result.Put(replacement_, j); in Apply()
278 result.Put(input, j); in MacroReplacement()
283 result.Put(input, j); in MacroReplacement()
288 result.Put(input, j); in MacroReplacement()
337 result.Put(input, j); in MacroReplacement()
364 result.Put(input, j); in MacroReplacement()
383 result.Put(replaced, newRange); in MacroReplacement()
[all …]
H A Dprovenance.cpp20 void ProvenanceRangeToOffsetMappings::Put( in Put() function in Fortran::parser::ProvenanceRangeToOffsetMappings
76 void OffsetToProvenanceMappings::Put(ProvenanceRange range) { in Put() function in Fortran::parser::OffsetToProvenanceMappings
87 void OffsetToProvenanceMappings::Put(const OffsetToProvenanceMappings &that) { in Put() function in Fortran::parser::OffsetToProvenanceMappings
89 Put(map.range); in Put()
135 result.Put( in Invert()
465 provenanceMap_.Put(allCookedSources.allSources().AddCompilerInsertion( in Marshal()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_chained_origin_depot_test.cpp26 EXPECT_TRUE(chainedOriginDepot.Put(1, 2, &new_id)); in TEST()
46 EXPECT_TRUE(chainedOriginDepot.Put(11, 12, &new_id1)); in TEST()
48 EXPECT_FALSE(chainedOriginDepot.Put(11, 12, &new_id2)); in TEST()
58 EXPECT_TRUE(chainedOriginDepot.Put(21, 22, &new_id1)); in TEST()
60 EXPECT_TRUE(chainedOriginDepot.Put(21, 23, &new_id2)); in TEST()
75 EXPECT_TRUE(chainedOriginDepot.Put(33, 34, &new_id)); in TEST()
80 EXPECT_FALSE(chainedOriginDepot.Put(33, 34, &new_id)); in TEST()
86 ASSERT_TRUE(chainedOriginDepot.Put(35, i, &new_id)); in TEST()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dprovenance.h93 void Put(ProvenanceRange, std::size_t offset);
119 void Put(ProvenanceRange);
120 void Put(const OffsetToProvenanceMappings &);
233 std::size_t Put(const char *data, std::size_t bytes) { in Put() function
234 return buffer_.Put(data, bytes); in Put()
236 std::size_t Put(const std::string &s) { return buffer_.Put(s); } in Put() function
237 std::size_t Put(char ch) { return buffer_.Put(&ch, 1); } in Put() function
238 std::size_t Put(char ch, Provenance p) { in Put() function
239 provenanceMap_.Put(ProvenanceRange{p, 1}); in Put()
240 return buffer_.Put(&ch, 1); in Put()
[all …]
H A Dchar-buffer.h53 std::size_t Put(const char *data, std::size_t n);
54 std::size_t Put(const std::string &);
55 std::size_t Put(char x) { return Put(&x, 1); } in Put() function
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dms-interface.cpp85 __declspec(property(get = Get, put = Put)) int data;
87 void Put(int);
93 __declspec(property(get = Get, put = Put), deprecated) int data;
95 void Put(int);
/llvm-project-15.0.7/third-party/benchmark/test/
H A Dbenchmark_random_interleaving_gtest.cc22 void Put(const std::string& event) { push(event); } in Put() function in benchmark::internal::__anon40b2d9fb0111::EventQueue
59 queue->Put("DONE"); // End marker in Execute()
68 queue->Put(StrFormat("BM_Match1/%d", static_cast<int>(arg))); in BM_Match1()
/llvm-project-15.0.7/flang/runtime/
H A Dedit-input.cpp202 auto Put{[&](char ch) -> void { in ScanRealInput() local
209 Put('-'); in ScanRealInput()
215 Put('0'); in ScanRealInput()
228 Put(*next - 'a' + 'A'); in ScanRealInput()
230 Put(*next); in ScanRealInput()
234 Put('('); in ScanRealInput()
247 Put(*next); in ScanRealInput()
254 Put('.'); // input field is normalized to a fraction in ScanRealInput()
268 Put(ch); in ScanRealInput()
280 Put('0'); // emit at least one digit in ScanRealInput()
/llvm-project-15.0.7/llvm/lib/Target/Lanai/
H A DLanaiCallingConv.td22 // Put argument in registers if marked 'inreg' and not a vararg call.
35 // Put arguments in registers.
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_chained_origin_depot.cpp129 bool ChainedOriginDepot::Put(u32 here_id, u32 prev_id, u32 *new_id) { in Put() function in __sanitizer::ChainedOriginDepot
132 *new_id = depot.Put(desc, &inserted); in Put()
H A Dsanitizer_chained_origin_depot.h30 bool Put(u32 here_id, u32 prev_id, u32 *new_id);
H A Dsanitizer_stackdepot.cpp208 u32 StackDepotPut(StackTrace stack) { return theDepot.Put(stack); } in StackDepotPut()
211 return StackDepotNode::get_handle(theDepot.Put(stack)); in StackDepotPut_WithHandle()
H A Dsanitizer_stackdepotbase.h44 u32 Put(args_type args, bool *inserted = nullptr);
115 u32 StackDepotBase<Node, kReservedBits, kTabSizeLog>::Put(args_type args, in Put() function
/llvm-project-15.0.7/libcxx/include/
H A Dstreambuf56 // 27.6.2.2.5 Put area:
73 // 27.6.2.3.3 Put area:
101 // 27.6.2.4.5 Put area:
221 // 27.6.2.2.5 Put area:
255 // 27.6.2.3.3 Put area:
293 // 27.6.2.4.5 Put area:
/llvm-project-15.0.7/llvm/test/TableGen/
H A Ddirective2.td159 // IMPL-NEXT: Put("(");
161 // IMPL-NEXT: Put(")");
165 // IMPL-NEXT: Put("(");
169 // IMPL-NEXT: Put("*");
170 // IMPL-NEXT: Put(")");
/llvm-project-15.0.7/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cpp27 return chainedOriginDepot.Put(here_id, prev_id, new_id); in ChainedOriginDepotPut()
/llvm-project-15.0.7/lldb/source/Target/
H A DModuleCache.cpp191 Status ModuleCache::Put(const FileSpec &root_dir_spec, const char *hostname, in Put() function in ModuleCache
302 error = Put(root_dir_spec, escaped_hostname.c_str(), module_spec, in GetAndPut()
324 error = Put(root_dir_spec, escaped_hostname.c_str(), module_spec, in GetAndPut()
/llvm-project-15.0.7/lldb/test/API/qemu/
H A DTestQemuAPI.py19 self.assertSuccess(qemu.Put(main_c, lldb.SBFileSpec(target)))
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DModuleCache.h61 Status Put(const FileSpec &root_dir_spec, const char *hostname,
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dtailcc-largecode.ll21 ; Put the call target into R11, which won't be clobbered while restoring
53 ; the jmp instruction. Put it into a register which won't be clobbered
H A Dtailcall-largecode.ll21 ; Put the call target into R11, which won't be clobbered while restoring
53 ; the jmp instruction. Put it into a register which won't be clobbered

1234