Searched refs:std (Results 576 - 600 of 2547) sorted by relevance

<<21222324252627282930>>

/freebsd-10-stable/contrib/libstdc++/include/debug/
H A Dhash_map.h47 typename _EqualKey = std::equal_to<_Value>,
48 typename _Alloc = std::allocator<_Value> >
141 std::pair<iterator, bool>
144 std::pair<typename _Base::iterator, bool> __res = _Base::insert(__obj);
145 return std::make_pair(iterator(__res.first, this), __res.second);
164 std::pair<iterator, bool>
167 std::pair<typename _Base::iterator, bool> __res =
169 return std::make_pair(iterator(__res.first, this), __res.second);
183 std::pair<iterator, iterator>
187 std
[all...]
H A Dset.h42 namespace std namespace
46 template<typename _Key, typename _Compare = std::less<_Key>,
47 typename _Allocator = std::allocator<_Key> >
74 typedef std::reverse_iterator<iterator> reverse_iterator;
75 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
145 std::pair<iterator, bool>
149 std::pair<_Base_iterator, bool> __res = _Base::insert(__x);
150 return std::pair<iterator, bool>(iterator(__res.first, this),
250 std::pair<iterator,iterator>
254 std
[all...]
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h77 StringMap<std::vector<DIE *> > AccelNames;
78 StringMap<std::vector<DIE *> > AccelObjC;
79 StringMap<std::vector<DIE *> > AccelNamespace;
80 StringMap<std::vector<std::pair<DIE *, unsigned> > > AccelTypes;
83 std::vector<DIEBlock *> DIEBlocks;
109 const StringMap<std::vector<DIE *> > &getAccelNames() const {
112 const StringMap<std::vector<DIE *> > &getAccelObjC() const {
115 const StringMap<std::vector<DIE *> > &getAccelNamespace() const {
118 const StringMap<std
[all...]
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DCommandLine.cpp53 TEMPLATE_INSTANTIATION(class basic_parser<std::string>);
58 TEMPLATE_INSTANTIATION(class opt<std::string>);
66 void OptionValue<std::string>::anchor() {}
76 void parser<std::string>::anchor() {}
88 static ManagedStatic<std::vector<const char*> > MoreHelp;
171 std::reverse(PositionalOpts.begin(), PositionalOpts.end());
209 std::string &NearestString) {
214 std::pair<StringRef, StringRef> SplitArg = Arg.split('=');
241 NearestString = std::string(OptionNames[i]) + "=" + RHS.str();
619 std
[all...]
/freebsd-10-stable/contrib/libstdc++/libsupc++/
H A Deh_personality.cc95 static const std::type_info*
103 return reinterpret_cast<const std::type_info *>(ptr);
123 const std::type_info* catch_type;
136 catch_type = reinterpret_cast<const std::type_info*>(tmp);
197 typedef const std::type_info _throw_typet;
202 static const std::type_info *
211 return reinterpret_cast<const std::type_info *>(ptr);
220 get_adjusted_ptr (const std::type_info *catch_type,
221 const std::type_info *throw_type,
252 const std
[all...]
/freebsd-10-stable/contrib/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp77 for (std::vector<char *>::iterator I = CodegenOptions.begin(),
113 bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg) {
116 const std::vector<const char*> &undefs = mod->getAsmUndefinedRefs();
169 std::string &errMsg) {
177 std::string ErrInfo;
204 std::string& errMsg) {
241 std::string& errMsg) {
269 bool LTOCodeGenerator::determineTarget(std::string &errMsg) {
273 std::string TripleStr = Linker.getModule()->getTargetTriple();
301 std
[all...]
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
67 std::vector<MMIAddrLabelMapCallbackPtr> BBCallbacks;
73 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >
85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
90 std::vector<MCSymbol*> getAddrLabelSymbolToEmit(BasicBlock *BB);
93 std::vector<MCSymbol*> &Result);
110 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
124 std::vector<MCSymbol*>
130 std
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp115 pos->Dump(s, target, std::distance(begin, pos));
127 typedef std::multimap<const char*, const Symbol *, CStringCompareFunctionObject> CStringToSymbol;
133 name_map.insert (std::make_pair(name, &(*pos)));
162 Symtab::Dump(Stream *s, Target *target, std::vector<uint32_t>& indexes) const
174 std::vector<uint32_t>::const_iterator pos;
175 std::vector<uint32_t>::const_iterator end = indexes.end();
287 std::set<const char *> class_contexts;
289 std::vector<const char *> symbol_contexts(num_symbols, NULL);
482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const
488 const uint32_t count = std
[all...]
/freebsd-10-stable/contrib/libstdc++/include/std/
H A Dstd_bitset.h67 _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
169 { std::memset(_M_w, 0, _Nw * sizeof(_WordT)); }
237 std::fill(_M_w + 0, _M_w + __wshift, static_cast<_WordT>(0));
264 std::fill(_M_w + __limit + 1, _M_w + _Nw, static_cast<_WordT>(0));
614 * using namespace std;
749 * @throw std::out_of_range If @a pos is bigger the size of @a s.
750 * @throw std::invalid_argument If a character appears in the string
755 bitset(const std::basic_string<_CharT, _Traits, _Alloc>& __s, argument
763 std::basic_string<_CharT, _Traits, _Alloc>::npos);
771 * @throw std
776 bitset(const std::basic_string<_CharT, _Traits, _Alloc>& __s, size_t __position, size_t __n) argument
1149 _M_copy_from_string(const std::basic_string<_CharT, _Traits, _Alloc>& __s, size_t __pos, size_t __n) argument
[all...]
H A Dstd_valarray.h50 _GLIBCXX_BEGIN_NAMESPACE(std)
95 _GLIBCXX_BEGIN_NAMESPACE(std)
547 _GLIBCXX_BEGIN_NAMESPACE(std)
557 { std::__valarray_default_construct(_M_data, _M_data + __n); }
563 { std::__valarray_fill_construct(_M_data, _M_data + __n, __t); }
571 std::__valarray_copy_construct(__p, __p + __n, _M_data);
578 { std::__valarray_copy_construct(__v._M_data, __v._M_data + _M_size,
586 std::__valarray_copy_construct
596 std::__valarray_copy_construct
606 std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoring.cpp77 std::string Replacement::toString() const {
78 std::string result;
105 const std::pair<FileID, unsigned> DecomposedLocation =
127 std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin);
128 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
157 // FIXME: Remove this function when Replacements is implemented as std::vector
158 // instead of std::set.
159 bool applyAllReplacements(const std::vector<Replacement> &Replaces,
162 for (std::vector<Replacement>::const_iterator I = Replaces.begin(),
174 std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp70 std::string Triple;
74 std::string CPU;
78 std::vector<std::string> Features;
84 std::vector<std::string> IncludePaths;
88 std::string DwarfDebugFlags;
89 std::string DwarfDebugProducer;
90 std::string DebugCompilationDir;
91 std
[all...]
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp113 std::map<
122 std::set<
140 const size_type len = std::distance(first_it, last_it);
184 const size_type len = std::distance(first_it, last_it)
185 + std::distance(other_first_it, other_last_it);
236 std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other);
245 std::swap(m_a_values, other.m_a_values);
246 std::swap(m_a_metadata, other.m_a_metadata);
247 std::swap(m_size, other.m_size);
248 std
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DArrayRef.h37 typedef std::reverse_iterator<iterator> reverse_iterator;
76 /// Construct an ArrayRef from a std::vector.
78 /*implicit*/ ArrayRef(const std::vector<T, A> &Vec) argument
87 /// Construct an ArrayRef from a std::initializer_list.
88 /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec)
157 std::vector<T> vec() const {
158 return std::vector<T>(Data, Data+Length);
164 operator std::vector<T>() const {
165 return std::vector<T>(Data, Data+Length);
188 typedef std
[all...]
H A DSmallVector.h103 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
104 typedef std::reverse_iterator<iterator> reverse_iterator;
183 /// std::move, but not all stdlibs actually provide that.
188 *Dest = ::std::move(*I);
191 return ::std::copy(I, E, Dest);
198 /// std::move_backward, but not all stdlibs actually provide that.
203 *--Dest = ::std::move(*--E);
206 return ::std::copy_backward(I, E, Dest);
216 ::new ((void*) &*Dest) T(::std::move(*I));
218 ::std
928 namespace std { namespace
[all...]
H A DValueMap.h87 typedef std::pair<KeyT, ValueT> value_type;
133 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { argument
134 std::pair<typename MapT::iterator, bool> map_result=
135 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
136 return std::make_pair(iterator(map_result.first), map_result.second);
242 Copy.Map->insert(std::make_pair(typed_new_key, Target));
278 public std::iterator<std::forward_iterator_tag,
279 std
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h32 std::vector<unsigned> MaxSetPressure;
276 std::vector<unsigned> CurrSetPressure;
284 std::vector<unsigned> LiveThruPressure;
348 std::vector<unsigned> &getRegSetPressureAtPos() { return CurrSetPressure; }
402 std::vector<unsigned> &PressureResult,
403 std::vector<unsigned> &MaxPressureResult);
407 std::vector<unsigned> &PressureResult,
408 std::vector<unsigned> &MaxPressureResult);
411 std::vector<unsigned> &PressureResult,
412 std
[all...]
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h34 virtual uint64_t getSymbolAddress(const std::string &Name);
64 virtual bool finalizeMemory(std::string *ErrMsg = 0) {
270 const std::vector<GenericValue> &ArgValues);
280 virtual void *getPointerToNamedFunction(const std::string &Name,
297 virtual uint64_t getGlobalValueAddress(const std::string &Name);
298 virtual uint64_t getFunctionAddress(const std::string &Name);
309 std::string *ErrorStr,
318 uint64_t getSymbolAddress(const std::string &Name,
332 uint64_t getExistingSymbolAddress(const std::string &Name);
333 Module *findModuleForSymbol(const std
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTImporter.h158 typedef std::vector < std::pair<lldb::ModuleSP, ClangNamespaceDecl> > NamespaceMap;
159 typedef std::shared_ptr<NamespaceMap> NamespaceMapSP;
240 typedef std::map<const clang::Decl *, DeclOrigin> OriginMap;
273 void InitDeportWorkQueues (std::set<clang::NamedDecl *> *decls_to_deport,
274 std::set<clang::NamedDecl *> *decls_already_deported);
283 std::set<clang::NamedDecl *> *m_decls_to_deport;
284 std::set<clang::NamedDecl *> *m_decls_already_deported;
289 typedef std::shared_ptr<Minion> MinionSP;
290 typedef std
[all...]
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp52 const std::vector<GenericValue> &);
53 static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions;
54 static std::map<std::string, ExFunc> FuncNames;
58 static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions;
93 std::string ExtName = "lle_";
108 ExportedFunctions->insert(std::make_pair(F, FnPtr)); // Cache for later
182 const std::vector<GenericValue> &ArgVals,
197 std::vector<ffi_type*> args(NumArgs);
248 const std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h61 typedef std::vector<std::pair<StringRef, StringRef> > ConsumerFiles;
91 virtual void FlushDiagnosticsImpl(std::vector<const PathDiagnostic *> &Diags,
333 const std::string str;
347 std::vector<SourceRange> ranges;
411 class PathPieces : public std::list<IntrusiveRefCntPtr<PathDiagnosticPiece> > {
459 virtual std::string getMessage(const ExplodedNode *N) = 0;
471 std::string Msg;
479 virtual std::string getMessage(const ExplodedNode *N);
483 virtual std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp37 std::find(IDs.begin(), IDs.end(), I->getID()) != IDs.end()) &&
66 std::find(IDs.begin(), IDs.end(), I->getID()) != IDs.end()) &&
181 std::string OriginalFile =
190 std::string define = getARCMTMacroName();
199 std::vector<std::string> WarnOpts;
200 for (std::vector<std::string>::iterator
245 std::vector<TransformFn> transforms = arcmt::getAllTransformations(OrigGCMode,
308 std
419 getFileRemappingsFromFileList( std::vector<std::pair<std::string,std::string> > &remap, ArrayRef<StringRef> remapFiles, DiagnosticConsumer *DiagClient) argument
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp208 typedef std::pair<Value *, Value *> ValuePair;
209 typedef std::pair<ValuePair, int> ValuePairWithCost;
210 typedef std::pair<ValuePair, size_t> ValuePairWithDepth;
211 typedef std::pair<ValuePair, ValuePair> VPPair; // A ValuePair pair
212 typedef std::pair<VPPair, unsigned> VPPairWithType;
226 DenseMap<Value *, std::vector<Value *> > &CandidatePairs,
229 std::vector<Value *> &PairableInsts, bool NonPow2Len);
241 DenseMap<Value *, std::vector<Value *> > &CandidatePairs,
243 std::vector<Value *> &PairableInsts,
244 DenseMap<ValuePair, std
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/
H A DASTUnit.h124 std::vector<Decl*> TopLevelDecls;
127 typedef SmallVector<std::pair<unsigned, Decl *>, 64> LocDeclsTy;
135 std::string OriginalSourceFile;
169 std::vector<char> Buffer;
229 llvm::StringMap<std::pair<off_t, time_t> > FilesInPreamble;
251 std::vector<serialization::DeclID> TopLevelDeclsInPreamble;
344 std::vector<CachedCodeCompletionResult> CachedCompletionResults;
387 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
493 typedef std
[all...]
/freebsd-10-stable/contrib/libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
H A Dinsert_fn_imps.hpp48 inline std::pair<typename PB_DS_CLASS_C_DEC::point_iterator, bool>
55 return (std::make_pair(
75 return (std::make_pair(
88 return (std::make_pair(p_pot, false));
96 return (std::make_pair(
103 return (std::make_pair(

Completed in 270 milliseconds

<<21222324252627282930>>