HomeSort by: relevance | last modified time | path
    Searched refs:c_str (Results 1 - 25 of 1259) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/atf/dist/atf-c++/
utils.cpp 42 atf_utils_cat_file(path.c_str(), prefix.c_str());
48 atf_utils_copy_file(source.c_str(), destination.c_str());
54 return atf_utils_compare_file(path.c_str(), contents.c_str());
60 atf_utils_create_file(path.c_str(), "%s", contents.c_str());
66 return atf_utils_file_exists(path.c_str());
80 return atf_utils_grep_file("%s", path.c_str(), regex.c_str())
    [all...]
build.cpp 85 atf_error_t err = atf_build_c_o(sfile.c_str(), ofile.c_str(),
99 atf_error_t err = atf_build_cpp(sfile.c_str(), ofile.c_str(),
113 atf_error_t err = atf_build_cxx_o(sfile.c_str(), ofile.c_str(),
  /src/external/bsd/atf/dist/atf-c++/detail/
env.cpp 50 return atf_env_get(name.c_str());
56 return atf_env_has(name.c_str());
62 atf_error_t err = atf_env_set(name.c_str(), val.c_str());
70 atf_error_t err = atf_env_unset(name.c_str());
  /src/external/bsd/atf/dist/tools/
env.cpp 51 const char *n =name.c_str();
66 return getenv(name.c_str()) != NULL;
72 if (setenv(name.c_str(), val.c_str(), 1) == -1)
82 unsetenv(name.c_str());
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
genrvv-type-indexer.cc 204 fprintf (fp, " /*VECTOR*/ %s,\n", mode.str ().c_str ());
205 fprintf (fp, " /*MASK*/ %s,\n", mode.str ().c_str ());
230 inttype (eew, LMUL1_LOG2, /* unsigned_p */false).c_str ());
234 inttype (eew, LMUL1_LOG2, /* unsigned_p */true).c_str ());
256 inttype (sew, lmul_log2, nf, unsigned_p).c_str ());
258 maskmode (sew, lmul_log2).c_str ());
260 inttype (sew, lmul_log2, /*unsigned_p*/ false).c_str ());
262 inttype (sew, lmul_log2, /*unsigned_p*/ true).c_str ());
267 .c_str ());
269 inttype (sew, lmul_log2, /*unsigned_p*/ true).c_str ());
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
mkdir-recursive-selftests.c 61 rmdir (string_printf ("%s/a/b/c/d/e", m_base).c_str ());
62 rmdir (string_printf ("%s/a/b/c/d", m_base).c_str ());
63 rmdir (string_printf ("%s/a/b/c", m_base).c_str ());
64 rmdir (string_printf ("%s/a/b", m_base).c_str ());
65 rmdir (string_printf ("%s/a", m_base).c_str ());
74 SELF_CHECK (create_dir_and_check (dir.c_str ()));
77 SELF_CHECK (create_dir_and_check (dir.c_str ()));
  /src/external/gpl3/gdb/dist/gdb/unittests/
mkdir-recursive-selftests.c 61 rmdir (string_printf ("%s/a/b/c/d/e", m_base).c_str ());
62 rmdir (string_printf ("%s/a/b/c/d", m_base).c_str ());
63 rmdir (string_printf ("%s/a/b/c", m_base).c_str ());
64 rmdir (string_printf ("%s/a/b", m_base).c_str ());
65 rmdir (string_printf ("%s/a", m_base).c_str ());
74 SELF_CHECK (create_dir_and_check (dir.c_str ()));
77 SELF_CHECK (create_dir_and_check (dir.c_str ()));
remote-arg-selftests.c 75 debug_printf ("Input (%s)\n", d.input.c_str ());
92 got = split_args[i].c_str ();
95 expected = d.split[i].c_str ();
112 split_args_c_str.push_back (xstrdup (s.c_str ()));
118 joined_args.c_str (), d.joined.c_str ());
143 debug_printf (" got (%s)\n", a.c_str ());
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilLinux.cpp 22 return system(CmdLine.c_str());
FuzzerDataFlowTrace.cpp 26 Printf("INFO: DataFlowTrace: reading from '%s'\n", DirPath.c_str());
50 Name.c_str(), L.c_str());
53 // Printf("=== %s\n", Name.c_str());
61 size_t N = std::atol(L.c_str() + 1);
66 const char *Beg = L.c_str() + SpacePos + 1;
67 const char *End = L.c_str() + L.size();
79 Printf("%s => |%s|\n", Name.c_str(), L.c_str() + SpacePos + 1);
  /src/external/gpl3/gdb.old/dist/gdb/arch/
csky.c 31 set_tdesc_architecture (tdesc.get (), arch_name.c_str ());
  /src/external/gpl3/gdb/dist/gdb/arch/
csky.c 31 set_tdesc_architecture (tdesc.get (), arch_name.c_str ());
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 42 { _M_init(token.c_str(), token.length()); }
46 { _M_init(token.c_str(), token.length()); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cow-string-inst.cc 43 { _M_init(token.c_str(), token.length()); }
47 { _M_init(token.c_str(), token.length()); }
  /src/external/gpl3/gcc/dist/libcc1/
compiler.cc 77 rx.c_str());
79 int code = regcomp (&triplet, rx.c_str (), REG_EXTENDED | REG_NOSUB);
88 rx.c_str (),
98 rx.c_str (),
104 fprintf (stderr, _("found compiler %s\n"), compiler.c_str());
115 driver_filename_.c_str());
  /src/external/gpl3/gcc.old/dist/libcc1/
compiler.cc 77 rx.c_str());
79 int code = regcomp (&triplet, rx.c_str (), REG_EXTENDED | REG_NOSUB);
88 rx.c_str (),
98 rx.c_str (),
104 fprintf (stderr, _("found compiler %s\n"), compiler.c_str());
115 driver_filename_.c_str());
  /src/external/gpl3/gdb/dist/gdb/
target-delegates-gen.c 407 target_debug_print_int (arg0).c_str ());
428 target_debug_print_inferior_p (arg0).c_str (),
429 target_debug_print_int (arg1).c_str ());
451 target_debug_print_const_char_p (arg0).c_str (),
452 target_debug_print_int (arg1).c_str ());
474 target_debug_print_ptid_t (arg0).c_str (),
475 target_debug_print_step (arg1).c_str (),
476 target_debug_print_gdb_signal (arg2).c_str ());
519 target_debug_print_ptid_t (arg0).c_str (),
520 target_debug_print_target_waitstatus_p (arg1).c_str (),
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
target-delegates-gen.c 399 target_debug_print_int (arg0).c_str ());
420 target_debug_print_inferior_p (arg0).c_str (),
421 target_debug_print_int (arg1).c_str ());
443 target_debug_print_const_char_p (arg0).c_str (),
444 target_debug_print_int (arg1).c_str ());
466 target_debug_print_ptid_t (arg0).c_str (),
467 target_debug_print_step (arg1).c_str (),
468 target_debug_print_gdb_signal (arg2).c_str ());
511 target_debug_print_ptid_t (arg0).c_str (),
512 target_debug_print_target_waitstatus_p (arg1).c_str (),
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
console_reporter.cc 61 str += FormatString(" %10s", c.first.c_str());
124 result.benchmark_name().c_str());
128 result.error_message.c_str());
141 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(),
142 cpu_time, big_o.c_str());
148 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel,
149 cpu_time_str.c_str(), timeLabel);
162 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str());
164 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str());
168 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str()
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
console_reporter.cc 61 str += FormatString(" %10s", c.first.c_str());
109 result.benchmark_name.c_str());
113 result.error_message.c_str());
135 printer(Out, COLOR_YELLOW, "%10.2f %s %10.2f %s ", real_time, big_o.c_str(),
136 cpu_time, big_o.c_str());
156 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str());
158 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str());
162 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(),
168 printer(Out, COLOR_DEFAULT, " %*s", 13, rate.c_str());
    [all...]
  /src/external/mit/isl/dist/interface/
cpp_conversion.cc 30 printf(".as<%s%s>()", to, name.c_str());
45 to, name.c_str(), function, from, name.c_str());
plain_cpp.cc 208 const char *cppname = cppstring.c_str();
215 supername = super.c_str();
218 generator.isl_bool2cpp().c_str(), supername);
222 clazz.subclass_name.c_str());
241 const char *name = clazz.name.c_str();
242 const char *cppname = printer.cppstring.c_str();
251 type2cpp(clazz.superclass_name).c_str());
275 const char *cppname = cppstring.c_str();
302 const char *name = clazz.name.c_str();
303 const char *cppname = cppstring.c_str();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
Demangle.cpp 25 Demangled = itaniumDemangle(MangledName.c_str(), nullptr, nullptr, nullptr);
27 Demangled = microsoftDemangle(MangledName.c_str(), nullptr, nullptr,
  /src/external/bsd/kyua-cli/dist/integration/helpers/
interrupts.cpp 46 std::ofstream output(cookie.c_str());
54 std::ofstream output(cookie.c_str());
  /src/external/gpl3/gdb.old/dist/gdb/compile/
compile-internal.h 68 std::string to avoid having to use c_str() everywhere in client
72 { return m_source_file.c_str (); }
75 { return m_object_file.c_str (); }

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>