Searched refs:append (Results 1 - 25 of 837) sorted by relevance

1234567891011>>

/freebsd-current/crypto/heimdal/lib/wind/
H A Drfc4518.py54 t.append(" 00AD; ; Map to nothing")
55 t.append(" 1806; ; Map to nothing")
56 t.append(" 034F; ; Map to nothing")
58 t.append(" 180B; ; Map to nothing")
59 t.append(" 180C; ; Map to nothing")
60 t.append(" 180D; ; Map to nothing")
62 t.append(" FE00; ; Map to nothing")
63 t.append(" FE01; ; Map to nothing")
64 t.append(" FE02; ; Map to nothing")
65 t.append(" FE0
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMultiAggPrinta.java47 buf.append(PrintaRecord.class.getName());
48 buf.append("[aggregations = ");
49 buf.append(rec.getAggregations());
50 buf.append(", formattedStrings = ");
51 buf.append(rec.getFormattedStrings());
52 buf.append(", tuples = ");
53 buf.append(rec.getTuples());
54 buf.append(", output = ");
55 buf.append(rec.getOutput());
56 buf.append(']');
[all...]
H A DTestProbeData.java58 buf.append("[probe ");
59 buf.append(p.getEnabledProbeID());
60 buf.append(' ');
62 buf.append("pid$target");
63 buf.append(':');
64 buf.append(d.getModule());
65 buf.append(':');
66 buf.append(d.getFunction());
67 buf.append(':');
68 buf.append(
[all...]
/freebsd-current/crypto/heimdal/etc/
H A DMakefile.am5 EXTRA_DIST = NTMakefile services.append
/freebsd-current/sys/libkern/
H A Dstrcat.c36 strcat(char * __restrict s, const char * __restrict append) argument
41 while ((*s++ = *append++) != 0);
/freebsd-current/lib/libc/string/
H A Dstrcat.c37 strcat(char * __restrict s, const char * __restrict append) argument
42 while ((*s++ = *append++));
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangFunctionCaller.cpp88 m_wrapper_function_text.append("extern \"C\" void ");
89 m_wrapper_function_text.append(m_wrapper_function_name);
90 m_wrapper_function_text.append(" (void *input)\n{\n struct ");
91 m_wrapper_function_text.append(m_wrapper_struct_name);
92 m_wrapper_function_text.append(" \n {\n");
93 m_wrapper_function_text.append(" ");
94 m_wrapper_function_text.append(return_type_str);
95 m_wrapper_function_text.append(" (*fn_ptr) (");
148 m_wrapper_function_text.append(type_name);
150 m_wrapper_function_text.append(", ");
[all...]
H A DClangDeclVendor.cpp17 uint32_t ClangDeclVendor::FindDecls(ConstString name, bool append, argument
20 if (!append)
24 uint32_t ret = FindDecls(name, /*append*/ false, max_matches, compiler_decls);
/freebsd-current/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp73 append(" ", FragmentKind::Text);
135 return Fragments.append(" ", DeclarationFragments::FragmentKind::Text)
136 .append("throw", DeclarationFragments::FragmentKind::Keyword)
137 .append("(", DeclarationFragments::FragmentKind::Text)
138 .append(")", DeclarationFragments::FragmentKind::Text);
143 return Fragments.append(" ", DeclarationFragments::FragmentKind::Text)
144 .append("noexcept", DeclarationFragments::FragmentKind::Keyword);
149 return Fragments.append(" ", DeclarationFragments::FragmentKind::Text)
150 .append("noexcept", DeclarationFragments::FragmentKind::Keyword)
151 .append("(", DeclarationFragment
[all...]
/freebsd-current/usr.bin/mkdep/
H A Dmkdep.gcc.sh33 append=0
40 append=1
83 x) case $append in
88 *) case $append in
H A Dmkdep.sh37 append=0
43 append=1
101 if [ $append = 1 ]; then
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp20 ScopedErrorReport() : Message() { Message.append("Scudo ERROR: "); }
21 void append(const char *Format, ...) { function in class:scudo::ScopedErrorReport
44 Report.append("CHECK failed @ %s:%d %s ((u64)op1=%llu, (u64)op2=%llu)\n",
51 Report.append("%s\n", Message);
63 Report.append("invalid value for %s option: '%s'\n", FlagType, Value);
70 Report.append("corrupted chunk header at address %p\n", Ptr);
77 Report.append("maximum possible %s doesn't fit in header\n", Field);
84 Report.append("invalid allocation alignment: %zu exceeds maximum supported "
93 Report.append("requested allocation size %zu (%zu after adjustments) exceeds "
100 Report.append("BatchClas
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/chattr/
H A Dchattr_002_neg.ksh46 set -A files writable immutable append
65 log_must user_run $QUSER1 touch $TESTDIR/append
69 log_must chattr +a $TESTDIR/append
74 log_must user_run $QUSER1 chattr +a $TESTDIR/append
79 log_mustnot user_run $QUSER1 chattr -a $TESTDIR/append
H A Dchattr_001_pos.ksh43 # 3. Try to write and append to each file
46 set -A files writable immutable append
71 log_must touch $TESTDIR/append
76 log_must chflags sappnd $TESTDIR/append
80 log_must chattr +a $TESTDIR/append
87 log_mustnot eval "echo test > $TESTDIR/append"
88 log_must eval "echo test >> $TESTDIR/append"
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp53 result.append(std::to_string(m_completion.size()));
54 result.append(m_completion);
55 result.append(std::to_string(static_cast<int>(m_mode)));
56 result.append(":");
57 result.append(m_descripton);
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DMacroBuilder.h39 /// Directly append Str and a newline to the underlying buffer.
40 void append(const Twine &Str) { function in class:clang::MacroBuilder
/freebsd-current/contrib/llvm-project/llvm/lib/Testing/Support/
H A DSupportHelpers.cpp22 llvm::sys::path::append(PathInSameDir, "llvm.srcdir.txt");
29 llvm::sys::path::append(PathInParentDir, "llvm.srcdir.txt");
49 InputFilePath.append((*File)->getBuffer().trim());
50 llvm::sys::path::append(InputFilePath, "Inputs");
/freebsd-current/contrib/wireguard-tools/
H A Dconfig.h23 bool config_read_init(struct config_ctx *ctx, bool append);
/freebsd-current/contrib/ncurses/progs/
H A Dtabs.c261 add_to_tab_list(char **append, const char *value) argument
263 char *result = *append;
272 else if (!comma_is_needed(*append))
276 if (*append != 0)
277 need += strlen(*append);
284 if (*append != 0) {
285 _nc_STRCPY(result, *append, need);
286 free(*append);
291 *append = result;
384 char *append local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DIssueHash.cpp46 Signature.append(Target->getReturnType().getAsString()).append(" ");
47 Signature.append(Target->getQualifiedNameAsString()).append("(");
51 Signature.append(", ");
52 Signature.append(Target->getParamDecl(i)->getType().getAsString());
56 Signature.append(", ...");
57 Signature.append(")");
66 Signature.append(" const");
68 Signature.append(" volatil
[all...]
/freebsd-current/contrib/netbsd-tests/bin/tar/
H A Dt_tar.sh28 atf_test_case append
40 # store foo into file2.tar, then append bar to file2.tar
50 atf_add_test_case append
/freebsd-current/contrib/netbsd-tests/bin/pax/
H A Dt_pax.sh28 atf_test_case append
41 # store foo into file2.tar, then append bar to file2.tar
53 atf_add_test_case append
/freebsd-current/contrib/llvm-project/llvm/lib/TextAPI/
H A DArchitectureSet.cpp44 result.append(std::string(getArchitectureName(arch)));
47 result.append(" ");
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPythonClassWithDict.cpp22 m_key_usage_text.append(class_use);
23 m_key_usage_text.append(". Pairs can be specified more than once.");
27 m_value_usage_text.append(class_use);
28 m_value_usage_text.append(". Pairs can be specified more than once.");
31 m_class_usage_text.append(m_is_class ? "class" : "function");
32 m_class_usage_text.append(" that will manage a ");
33 m_class_usage_text.append(class_use);
34 m_class_usage_text.append(".");
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBUnixSignalsExtensions.i14 signals.append(self.GetSignalAtIndex(sig))

Completed in 307 milliseconds

1234567891011>>