Home
last modified time | relevance | path

Searched refs:append (Results 1 – 25 of 1337) sorted by relevance

12345678910>>...54

/openbsd-src/gnu/llvm/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp32 append(" ", FragmentKind::Text); in appendSpace()
97 Fragments.append(getFragmentsForNNS(NNS->getPrefix(), Context, After)); in getFragmentsForNNS()
101 Fragments.append(NNS->getAsIdentifier()->getName(), in getFragmentsForNNS()
111 Fragments.append(NS->getName(), in getFragmentsForNNS()
120 Fragments.append(Alias->getName(), in getFragmentsForNNS()
132 Fragments.append("__super", DeclarationFragments::FragmentKind::Keyword); in getFragmentsForNNS()
137 Fragments.append("template", DeclarationFragments::FragmentKind::Keyword); in getFragmentsForNNS()
145 Fragments.append(getFragmentsForType(T, Context, After)); in getFragmentsForNNS()
151 return Fragments.append("::", DeclarationFragments::FragmentKind::Text); in getFragmentsForNNS()
169 .append(getFragmentsForType(T->getPointeeType(), Context, After)) in getFragmentsForType()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangFunctionCaller.cpp88 m_wrapper_function_text.append("extern \"C\" void "); in CompileFunction()
89 m_wrapper_function_text.append(m_wrapper_function_name); in CompileFunction()
90 m_wrapper_function_text.append(" (void *input)\n{\n struct "); in CompileFunction()
91 m_wrapper_function_text.append(m_wrapper_struct_name); in CompileFunction()
92 m_wrapper_function_text.append(" \n {\n"); in CompileFunction()
93 m_wrapper_function_text.append(" "); in CompileFunction()
94 m_wrapper_function_text.append(return_type_str); in CompileFunction()
95 m_wrapper_function_text.append(" (*fn_ptr) ("); in CompileFunction()
148 m_wrapper_function_text.append(type_name); in CompileFunction()
150 m_wrapper_function_text.append(", "); in CompileFunction()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cpp111 buffer->append(" "); in MaybeBuildIdToBuffer()
112 buffer->append("(BuildId: "); in MaybeBuildIdToBuffer()
114 buffer->append("%02x", info.uuid[i]); in MaybeBuildIdToBuffer()
116 buffer->append(")"); in MaybeBuildIdToBuffer()
135 buffer->append("%c", *p); in RenderFrame()
141 buffer->append("%%"); in RenderFrame()
145 buffer->append("%u", frame_no); in RenderFrame()
148 buffer->append("0x%zx", address); in RenderFrame()
151 buffer->append("%s", StripPathPrefix(info->module, strip_path_prefix)); in RenderFrame()
154 buffer->append("0x%zx", info->module_offset); in RenderFrame()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp20 ScopedErrorReport() : Message() { Message.append("Scudo ERROR: "); } in ScopedErrorReport()
21 void append(const char *Format, ...) { in append() function in scudo::ScopedErrorReport
24 Message.append(Format, Args); in append()
41 Report.append("Soft RSS limit of %zu MB exhausted, current RSS is %zu MB\n", in reportSoftRSSLimit()
47 Report.append("Hard RSS limit of %zu MB exhausted, current RSS is %zu MB\n", in reportHardRSSLimit()
60 Report.append("CHECK failed @ %s:%d %s ((u64)op1=%llu, (u64)op2=%llu)\n", in reportCheckFailed()
67 Report.append("%s\n", Message); in reportError()
72 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); in reportInvalidFlag()
79 Report.append("corrupted chunk header at address %p\n", Ptr); in reportHeaderCorruption()
87 Report.append("race on chunk header at address %p\n", Ptr); in reportHeaderRace()
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/21_strings/
H A Dappend.cc45 str05.append(str05); in test01()
47 str05.append(str01); in test01()
49 str05.append(str03); in test01()
52 str06.append(str05); in test01()
61 str06.append(str03, csz01 + 1, 0); in test01()
73 str06.append(str01, csz01 + 1, 0); in test01()
84 str05.append(str01, 0, std::string::npos); in test01()
89 str06.append(str01, 15, std::string::npos); in test01()
97 str05.append(""); in test01()
100 str05.append(str_lit01); in test01()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/
H A Dllvm-original-di-preservation.py87 row.append(" <tr>\n")
88 row.append(file)
89 row.append(llvm_pass)
90 row.append(x.instr)
91 row.append(x.fn_name)
92 row.append(x.bb_name)
93 row.append(x.action)
94 row.append(" </tr>\n")
127 row.append(" <tr>\n")
128 row.append(llvm_pass)
[all …]
H A Dpipeline.py14 curr.append([None, tok])
17 stack.append([kind, curr])
23 curr.append([None, tok])
28 curr.append([oldKind, oldCurr])
32 curr.append([None, tok])
71 dstA.append([s[0], dstA2])
72 dstB.append([s[0], dstB2])
75 dstA.append([None, s[1]])
77 dstB.append([None, s[1]])
94 dst.append([s[0], dst2])
[all …]
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_functiontestcase.py27 events.append('setUp')
31 events.append('test')
34 events.append('tearDown')
52 events.append('setUp')
55 events.append('test')
59 events.append('tearDown')
78 events.append('setUp')
81 events.append('test')
85 events.append('tearDown')
104 events.append('setUp')
[all …]
H A Dsupport.py27 self.errors.append((test, err))
30 self.failures.append((test, err))
49 self._events.append('startTest')
53 self._events.append('startTestRun')
57 self._events.append('stopTest')
61 self._events.append('stopTestRun')
65 self._events.append('addFailure')
69 self._events.append('addSuccess')
73 self._events.append('addError')
77 self._events.append('addSkip')
[all …]
H A Dtest_setups.py216 results.append('Module1.setUpModule')
220 results.append('Module1.tearDownModule')
226 results.append('Module2.setUpModule')
230 results.append('Module2.tearDownModule')
236 results.append('setup 1')
240 results.append('teardown 1')
243 results.append('Test1.testOne')
246 results.append('Test1.testTwo')
252 results.append('setup 2')
256 results.append('teardown 2')
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp137 Buffer->append("0x%08x%08x%08x%08x", (unsigned int)(Val >> 96), in RenderHex()
150 Buffer->append("<unknown>"); in RenderLocation()
158 Buffer->append("%p", reinterpret_cast<void *>(Loc.getMemoryLocation())); in RenderLocation()
170 Buffer->append("%p", reinterpret_cast<void *>(Info.address)); in RenderLocation()
174 Buffer->append("<unknown>"); in RenderLocation()
183 Buffer->append("%c", *Msg); in RenderText()
189 Buffer->append("%s", A.String); in RenderText()
194 Buffer->append("'%s'", A.String); in RenderText()
196 Buffer->append("'%s'", Symbolizer::GetOrInit()->Demangle(A.String)); in RenderText()
202 Buffer->append("%lld", (long long)A.SInt); in RenderText()
[all …]
/openbsd-src/gnu/usr.bin/texinfo/doc/
H A Dhelp2man81 my %append = ();
135 $hash = \%append;
165 for my $hash (\(%include, %append))
372 $matched .= $& if %append;
382 $matched .= $& if %append;
395 $matched .= $& if %append;
403 $matched .= $& if %append;
411 $matched .= $& if %append;
420 $matched .= $& if %append;
428 $matched .= $& if %append;
[all …]
/openbsd-src/regress/sys/netinet6/frag6/
H A Dfrag6_permute.py14 permute.append([0,1,2])
15 permute.append([0,2,1])
16 permute.append([1,0,2])
17 permute.append([2,0,1])
18 permute.append([1,2,0])
19 permute.append([2,1,0])
30 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
32 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
34 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
39 eth.append(Ether(src=LOCAL_MAC, dst=REMOTE_MAC)/pkt)
H A Dfrag6_timeout.py23 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
25 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
27 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
29 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
31 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
33 frag.append(IPv6ExtHdrFragment(nh=58, id=fid,
38 eth.append(Ether(src=LOCAL_MAC, dst=REMOTE_MAC)/pkt)
/openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/compress/
H A Doneshot.pl296 for my $append ( 1, 0 )
299 $already = 'abcde' if $append ;
310 title "$TopType - From Buff to Buff content '$disp_content' Append $append" ;
313 ok &$Func(\$buffer, \$output, Append => $append), ' Compressed ok' ;
323 title "$TopType - From Buff to Array Ref content '$disp_content' Append $append" ;
326 ok &$Func(\$buffer, \@output, Append => $append), ' Compressed ok' ;
336 title "$TopType - From Array Ref to Array Ref content '$disp_content' Append $append" ;
342 ok &$Func(\@input, \@output, Append => $append), ' Compressed ok' ;
351 title "$TopType - From Buff to Filename content '$disp_content' Append $append" ;
357 ok &$Func(\$buffer, $out_file, Append => $append), ' Compresse
[all...]
/openbsd-src/regress/sys/netinet/frag/
H A Dfrag_permute.py14 permute.append([0,1,2])
15 permute.append([0,2,1])
16 permute.append([1,0,2])
17 permute.append([2,0,1])
18 permute.append([1,2,0])
19 permute.append([2,1,0])
30 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
32 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
34 frag.append(IP(src=LOCAL_ADDR, dst=REMOTE_ADDR, proto=1, id=fid,
38 eth.append(Ether(src=LOCAL_MAC, dst=REMOTE_MAC)/frag[p[i]])
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp24 m_qualified_name.append("::"); in GetQualifiedName()
25 m_qualified_name.append(m_entries[0].name); in GetQualifiedName()
33 m_qualified_name.append("::"); in GetQualifiedName()
36 m_qualified_name.append("(anonymous namespace)"); in GetQualifiedName()
38 m_qualified_name.append("(anonymous class)"); in GetQualifiedName()
40 m_qualified_name.append("(anonymous struct)"); in GetQualifiedName()
42 m_qualified_name.append("(anonymous union)"); in GetQualifiedName()
44 m_qualified_name.append("(anonymous)"); in GetQualifiedName()
46 m_qualified_name.append(pos->name); in GetQualifiedName()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DIssueHash.cpp46 Signature.append(Target->getReturnType().getAsString()).append(" "); in GetSignature()
47 Signature.append(Target->getQualifiedNameAsString()).append("("); in GetSignature()
51 Signature.append(", "); in GetSignature()
52 Signature.append(Target->getParamDecl(i)->getType().getAsString()); in GetSignature()
56 Signature.append(", ..."); in GetSignature()
57 Signature.append(")"); in GetSignature()
66 Signature.append(" const"); in GetSignature()
68 Signature.append(" volatile"); in GetSignature()
70 Signature.append(" restrict"); in GetSignature()
76 Signature.append(" &"); in GetSignature()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DArgs.cpp458 dst.append(p, non_special_chars); in EncodeEscapeSequences()
468 dst.append(1, '\a'); in EncodeEscapeSequences()
471 dst.append(1, '\b'); in EncodeEscapeSequences()
474 dst.append(1, '\f'); in EncodeEscapeSequences()
477 dst.append(1, '\n'); in EncodeEscapeSequences()
480 dst.append(1, '\r'); in EncodeEscapeSequences()
483 dst.append(1, '\t'); in EncodeEscapeSequences()
486 dst.append(1, '\v'); in EncodeEscapeSequences()
489 dst.append(1, '\\'); in EncodeEscapeSequences()
492 dst.append(1, '\''); in EncodeEscapeSequences()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dstrings_test.cpp23 Str.append("a%db%zdc%ue%zuf%xh%zxq%pe%sr", static_cast<int>(-1), in TEST()
39 Str.append("123"); in TEST()
50 Str.append(appendString); in TEST()
58 Str.append("%.*s", 3, "12345"); in TEST()
62 Str.append("%.*s", 6, "12345"); in TEST()
66 Str.append("%-6s", "12345"); in TEST()
73 Str.append("A"); in fillString()
86 Str.append("%-128s", "12345"); in TEST()
89 Str.append("%024x", 12345); in TEST()
92 Str.append("EEEEEEEEEEEEEEEEEEEEEEEE"); in TEST()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DGnu.cpp2072 GentooTestTriples.append(ExtraTripleAliases.begin(), in init()
2074 GentooTestTriples.append(CandidateTripleAliases.begin(), in init()
2355 LibDirs.append(begin(SolarisLibDirs), end(SolarisLibDirs)); in CollectLibDirsAndTriples()
2356 BiarchLibDirs.append(begin(SolarisLibDirs), end(SolarisLibDirs)); in CollectLibDirsAndTriples()
2359 TripleAliases.append(begin(SolarisX86Triples), end(SolarisX86Triples)); in CollectLibDirsAndTriples()
2360 BiarchTripleAliases.append(begin(SolarisX86_64Triples), in CollectLibDirsAndTriples()
2364 TripleAliases.append(begin(SolarisX86_64Triples), in CollectLibDirsAndTriples()
2366 BiarchTripleAliases.append(begin(SolarisX86Triples), in CollectLibDirsAndTriples()
2370 TripleAliases.append(begin(SolarisSparcV8Triples), in CollectLibDirsAndTriples()
2372 BiarchTripleAliases.append(begin(SolarisSparcV9Triples), in CollectLibDirsAndTriples()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/llvm/
H A Dconfig.py376 substitutions.append((subst_key, tool_pipe + command))
392 self.config.substitutions.append(
394 self.config.substitutions.append(
396 self.config.substitutions.append(
398 self.config.substitutions.append(
401 self.config.substitutions.append(
403 self.config.substitutions.append(
405 self.config.substitutions.append(
407 self.config.substitutions.append(
420 self.config.substitutions.append(('%python', '"%s"' % (sys.executable)))
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp52 str.append("Thread %s", AsanThreadIdAndName(context).c_str()); in DescribeThread()
54 str.append(" created by unknown thread\n"); in DescribeThread()
58 str.append(" created by %s here:\n", in DescribeThread()
129 str.append("%s", d.Location()); in PrintHeapChunkAccess()
132 str.append("%p is located %zd bytes before", in PrintHeapChunkAccess()
136 str.append("%p is located %zd bytes after", in PrintHeapChunkAccess()
140 str.append("%p is located %zd bytes inside of", (void *)descr.bad_addr, in PrintHeapChunkAccess()
144 str.append( in PrintHeapChunkAccess()
148 str.append(" %zu-byte region [%p,%p)\n", descr.chunk_size, in PrintHeapChunkAccess()
151 str.append("%s", d.Default()); in PrintHeapChunkAccess()
[all …]
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dpty_spawn.py212 s.append(repr(self))
213 s.append('command: ' + str(self.command))
214 s.append('args: %r' % (self.args,))
215 s.append('buffer (last 100 chars): %r' % self.buffer[-100:])
216 s.append('before (last 100 chars): %r' % self.before[-100:] if self.before else '')
217 s.append('after: %r' % (self.after,))
218 s.append('match: %r' % (self.match,))
219 s.append('match_index: ' + str(self.match_index))
220 s.append('exitstatus: ' + str(self.exitstatus))
222 s.append('flag_eof: ' + str(self.flag_eof))
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp86 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord()
88 Name.append("<unknown 0x" + utohexstr(Indices[I].getIndex()) + ">"); in visitKnownRecord()
90 Name.append(", "); in visitKnownRecord()
102 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord()
104 Name.append("\" \""); in visitKnownRecord()
175 Name.append(Types.getTypeName(Ptr.getReferentType())); in visitKnownRecord()
178 Name.append("&"); in visitKnownRecord()
180 Name.append("&&"); in visitKnownRecord()
182 Name.append("*"); in visitKnownRecord()
187 Name.append(" const"); in visitKnownRecord()
[all …]

12345678910>>...54