Searched refs:std (Results 176 - 200 of 2547) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/libstdc++/include/bits/
H A Dstl_tempbuf.h67 _GLIBCXX_BEGIN_NAMESPACE(std)
98 { std::uninitialized_fill_n(_M_buffer, _M_len, __val); }
129 std::_Destroy(_M_buffer, _M_buffer + _M_len);
130 std::return_temporary_buffer(_M_buffer);
145 : _M_original_len(std::distance(__first, __last)),
149 typedef typename std::__is_scalar<_Tp>::__type _Trivial;
162 std::return_temporary_buffer(_M_buffer);
H A Dstl_uninitialized.h67 _GLIBCXX_BEGIN_NAMESPACE(std)
75 { return std::copy(__first, __last, __result); }
87 std::_Construct(&*__cur, *__first);
92 std::_Destroy(__result, __cur);
112 typedef typename std::__is_scalar<_ValueType>::__type _Is_POD;
113 return std::__uninitialized_copy_aux(__first, __last, __result,
120 std::memmove(__result, __first, __last - __first);
128 std::memmove(__result, __first, sizeof(wchar_t) * (__last - __first));
139 { std::fill(__first, __last, __x); }
150 std
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DPriorityQueue.h22 /// PriorityQueue - This class behaves like std::priority_queue and
26 class Sequence = std::vector<T>,
27 class Compare = std::less<typename Sequence::value_type> >
28 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> {
32 : std::priority_queue<T, Sequence, Compare>(compare, sequence)
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
50 std::find(this->c.begin(), this->c.end(), t) - this->c.begin();
72 std::make_heap(this->c.begin(), this->c.end(), this->comp);
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXSubtarget.h29 std::string TargetName;
43 NVPTXSubtarget(const std::string &TT, const std::string &CPU,
44 const std::string &FS, bool is64Bit);
72 std::string getTargetName() const { return TargetName; }
78 std::string getDataLayout() const {
89 return std::string(p);
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DDisassemblerEmitter.cpp99 std::string PredicateNamespace,
100 std::string GPrefix,
101 std::string GPostfix,
102 std::string ROK,
103 std::string RFail,
104 std::string L);
114 const std::vector<const CodeGenInstruction*> &numberedInstructions =
H A DAsmWriterEmitter.cpp36 std::map<const CodeGenInstruction*, AsmWriterInst*> CGIAWIMap;
37 std::vector<const CodeGenInstruction*> NumberedInstructions;
38 std::vector<AsmWriterInst> Instructions;
51 std::map<const CodeGenInstruction*, AsmWriterInst*>::const_iterator I =
56 void FindUniqueOperandCommands(std::vector<std::string> &UOC,
57 std::vector<unsigned> &InstIdxs,
58 std::vector<unsigned> &InstOpsUsed) const;
62 static void PrintCases(std::vector<std
[all...]
H A DCodeEmitterGen.cpp44 void emitMachineOpEmitter(raw_ostream &o, const std::string &Namespace);
45 void emitGetValueBit(raw_ostream &o, const std::string &Namespace);
46 void reverseBits(std::vector<Record*> &Insts);
47 int getVariableBit(const std::string &VarName, BitsInit *BI, int bit);
48 std::string getInstructionCase(Record *R, CodeGenTarget &Target);
50 const std::string &VarName,
52 std::string &Case, CodeGenTarget &Target);
56 void CodeEmitterGen::reverseBits(std::vector<Record*> &Insts) {
57 for (std::vector<Record*>::iterator I = Insts.begin(), E = Insts.end();
92 int CodeEmitterGen::getVariableBit(const std
[all...]
H A DCodeGenMapTable.cpp83 typedef std::map<std::string, std::vector<Record*> > InstrRelMapTy;
85 typedef std::map<std::vector<Init*>, std::vector<Record*> > RowInstrMapTy;
93 std::string Name;
94 std::string FilterClass;
98 std::vector<ListInit*> ValueCols;
148 std
[all...]
/freebsd-10-stable/contrib/libcxxrt/
H A Dmemory.cc42 namespace std namespace
56 namespace std namespace
76 #define BADALLOC throw(std::bad_alloc)
93 new_handler h = std::get_new_handler();
100 throw std::bad_alloc();
109 void* operator new(size_t size, const std::nothrow_t &) NOEXCEPT
115 // std::bad_alloc exception in new handler
136 void * operator new[](size_t size, const std::nothrow_t &) NOEXCEPT
142 // std::bad_alloc exception in new handler
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h76 bool getFileRemappings(std::vector<std::pair<std::string,std::string> > &remap,
85 std::vector<std::pair<std::string,std::string> > &remap,
91 std::vector<TransformFn> getAllTransformations(LangOptions::GCMode OrigGCMode,
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h48 std::string Path;
65 std::string Prefix;
77 std::string Sysroot;
80 std::vector<Entry> UserEntries;
83 std::vector<SystemHeaderPrefix> SystemHeaderPrefixes;
87 std::string ResourceDir;
90 std::string ModuleCachePath;
121 llvm::SetVector<std::string> ModulesIgnoreMacros;
124 llvm::SetVector<std::string> ModuleMapFiles;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStringList.h34 AppendString (const std::string &s);
37 AppendString (std::string &&s);
66 std::string &
73 const std::string &
95 LongestCommonPrefix (std::string &common_prefix);
98 InsertStringAtIndex (size_t idx, const std::string &str);
101 InsertStringAtIndex (size_t idx, std::string &&str);
113 SplitIntoLines (const std::string &lines);
118 std::string
H A DStreamString.h49 std::string &
52 const std::string &
59 std::string m_packet;
/freebsd-10-stable/contrib/atf/atf-c++/
H A Dcheck_test.cpp55 std::auto_ptr< atf::check::check_result >
58 std::vector< std::string > argv;
61 std::cout << "Executing " << argv[0] << " " << argv[1] << "\n";
68 std::auto_ptr< atf::check::check_result >
71 std::vector< std::string > argv;
75 std::cout << "Executing " << argv[0] << " " << argv[1] << " "
93 std::ofstream sfile("test.c");
108 std
[all...]
H A Dtests.cpp84 detail::atf_tp_writer::atf_tp_writer(std::ostream& os) :
92 detail::atf_tp_writer::start_tc(const std::string& ident)
108 detail::atf_tp_writer::tc_meta_data(const std::string& name,
109 const std::string& value)
120 std::string Program_Name;
125 const std::string program_name = atf::fs::path(argv0).leaf_name();
136 detail::match(const std::string& regexp, const std::string& str)
145 static std::map< atf_tc_t*, impl::tc* > wraps;
146 static std
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DDynamicLibrary.h68 std::string *errMsg = 0);
76 std::string *ErrMsg = 0) {
85 /// @throws std::string on error.
90 static void *SearchForAddressOfSymbol(const std::string &symbolName) {
H A DRegex.h52 bool isValid(std::string &Error);
78 std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandHistory.h53 AppendString (const std::string& str,
69 typedef std::vector<std::string> History;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnames.h28 bool Find(const char* name, bool ignore_case, std::vector<dw_offset_t>& die_offset_coll) const;
29 bool Find(const lldb_private::RegularExpression& regex, std::vector<dw_offset_t>& die_offsets) const;
31 typedef std::list<DWARFDebugPubnamesSet> collection;
/freebsd-10-stable/contrib/atf/atf-c++/detail/
H A Dprocess_test.cpp46 std::size_t
49 std::size_t size = 0;
63 std::vector< std::string > argv;
97 ATF_REQUIRE(std::strcmp(argv[0], carray[0]) == 0);
105 ATF_REQUIRE(std::strcmp(argv[0], carray[0]) == 0);
106 ATF_REQUIRE(std::strcmp(argv[1], carray[1]) == 0);
107 ATF_REQUIRE(std::strcmp(argv[2], carray[2]) == 0);
120 std::vector< std
[all...]
/freebsd-10-stable/contrib/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp40 extern cl::opt<std::string> OutputPrefix;
46 cl::opt<std::string> ChildOutput("child-output", cl::ReallyHidden);
47 cl::opt<std::string> OptCmd("opt-command", cl::init(""),
65 bool BugDriver::writeProgramToFile(const std::string &Filename, int FD,
71 bool BugDriver::writeProgramToFile(const std::string &Filename,
73 std::string ErrInfo;
85 const std::string &ID,
90 std::string Filename = OutputPrefix + "-" + ID + ".bc";
110 static cl::list<std::string> OptArgs("opt-args", cl::Positional,
123 const std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
H A DDriver.h72 std::string Name;
76 std::string Dir;
79 std::string ClangExecutable;
82 std::string InstalledDir;
85 std::string ResourceDir;
91 typedef SmallVector<std::string, 4> prefix_list;
95 std::string SysRoot;
98 std::string DyldPrefix;
104 std::string DefaultTargetTriple;
107 std
[all...]
/freebsd-10-stable/contrib/llvm/lib/TableGen/
H A DTGParser.h35 std::string Name;
36 std::vector<unsigned> Bits;
39 LetRecord(const std::string &N, const std::vector<unsigned> &B, Init *V,
57 std::vector<std::vector<LetRecord> > LetStack;
58 std::map<std::string, MultiClass*> MultiClasses;
62 typedef std::vector<ForeachLoop> LoopVector;
106 const std
[all...]
/freebsd-10-stable/contrib/libstdc++/config/locale/generic/
H A Dmessages_members.cc0 // std::messages implementation details, generic version -*- C++ -*-
38 _GLIBCXX_BEGIN_NAMESPACE(std)
/freebsd-10-stable/contrib/libstdc++/include/c/
H A Dstd_csetjmp.h46 #define setjmp(env) std::setjmp (env)

Completed in 365 milliseconds

1234567891011>>