Searched refs:begin (Results 176 - 200 of 2755) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h78 StringMap<uint32_t>::const_iterator begin() const { function in class:llvm::codeview::DebugStringTableSubsection
79 return StringToId.begin();
H A DDebugSymbolRVASubsection.h36 ArrayType::Iterator begin() const { return RVAs.begin(); } function in class:llvm::codeview::final
H A DDebugCrossImpSubsection.h63 Iterator begin() const { return References.begin(); } function in class:llvm::codeview::final
H A DDebugFrameDataSubsection.h35 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } function in class:llvm::codeview::final
H A DDebugCrossExSubsection.h40 Iterator begin() const { return References.begin(); } function in class:llvm::codeview::final
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h128 m_map.begin(), m_map.end(), unique_cstr, Compare())))
139 for (pos = m_map.begin(); pos != end; ++pos) {
191 collection temp(m_map.begin(), m_map.end());
196 iterator begin() { return m_map.begin(); } function in class:lldb_private::UniqueCStringMap
198 const_iterator begin() const { return m_map.begin(); } function in class:lldb_private::UniqueCStringMap
205 std::equal_range(m_map.begin(), m_map.end(), unique_cstr, Compare()));
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.h60 uptr begin; member in struct:__sanitizer::LibIgnore::LibCodeRange
65 return (pc >= range.begin && pc < range.end);
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DEnvironment.cpp20 Next = std::copy(Key.begin(), Key.end(), Next);
22 Next = std::copy(Value.begin(), Value.end(), Next);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DLineIterator.h85 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DFileSystemStatCache.h78 iterator begin() const { return StatCalls.begin(); } function in class:clang::MemorizeStatCalls
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSet.h39 void insert(InputIt begin, InputIt end) { argument
40 for (auto it = begin; it != end; ++it)
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h93 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
108 for (typename SeqMap::iterator I = Seqs.begin(), E = Seqs.end(); I != E;
160 for (typename SeqMap::const_iterator I = Seqs.begin(), E = Seqs.end();
163 for (typename SeqT::const_iterator SI = I->first.begin(),
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DScriptLexer.cpp112 StringRef begin = s; local
127 size_t lineno = begin.substr(0, s.data() - begin.data()).count('\n');
164 tokens.insert(tokens.begin() + pos, vec.begin(), vec.end());
251 tokens.erase(tokens.begin() + pos);
252 tokens.insert(tokens.begin() + pos, v.begin(), v.end());
/freebsd-current/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A D__clang_openmp_device_functions.h21 #pragma omp begin declare variant match( \
39 #pragma omp begin declare variant match(device = {arch(amdgcn)})
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A Di386.cpp65 auto &GOTBlock = StubBlock.edges().begin()->getTarget().getBlock();
71 auto &GOTTarget = GOTBlock.edges().begin()->getTarget();
/freebsd-current/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DEntryStage.cpp75 NumRetired = std::distance(Instructions.begin(), It);
78 Instructions.erase(Instructions.begin(), It);
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepUntil.cpp90 for (pos = m_until_points.begin(); pos != end; pos++) {
108 (uint64_t)(*m_until_points.begin()).first,
109 (*m_until_points.begin()).second);
114 for (pos = m_until_points.begin(); pos != end; pos++) {
136 for (pos = m_until_points.begin(); pos != end; pos++) {
193 for (pos = m_until_points.begin(); pos != end; pos++) {
286 for (pos = m_until_points.begin(); pos != end; pos++) {
306 for (pos = m_until_points.begin(); pos != end; pos++) {
H A DPathMappingList.cpp76 for (pos = rhs.m_pairs.begin(); pos != end; ++pos)
105 insert_iter = m_pairs.begin() + index;
130 iterator iter = m_pairs.begin() + index;
188 auto component = llvm::sys::path::begin(components, style);
296 const_iterator begin = m_pairs.begin(); local
299 for (pos = begin; pos != end; ++pos) {
310 iterator begin = m_pairs.begin(); local
313 for (pos = begin; po
335 const_iterator begin = m_pairs.begin(); local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dmax.h44 return *std::__max_element<__comp_ref_type<_Compare> >(__t.begin(), __t.end(), __comp);
49 return *std::max_element(__t.begin(), __t.end(), __less<>());
H A Dmin.h44 return *std::__min_element<__comp_ref_type<_Compare> >(__t.begin(), __t.end(), __comp);
49 return *std::min_element(__t.begin(), __t.end(), __less<>());
/freebsd-current/contrib/llvm-project/llvm/lib/TargetParser/
H A DSubtargetFeature.cpp47 Features.insert(Features.cend(), OtherFeatures.begin(), OtherFeatures.end());
56 return join(Features.begin(), Features.end(), ",");
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DWasmDump.cpp60 Result.append(SymName.begin(), SymName.end());
64 Result.append(FmtBuf.begin(), FmtBuf.end());
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp530 Input = Inputs.begin();
2303 GentooTestTriples.append(CandidateTripleAliases.begin(),
2576 using std::begin;
2587 LibDirs.append(begin(SolarisLibDirs), end(SolarisLibDirs));
2588 BiarchLibDirs.append(begin(SolarisLibDirs), end(SolarisLibDirs));
2591 TripleAliases.append(begin(SolarisX86Triples), end(SolarisX86Triples));
2592 BiarchTripleAliases.append(begin(SolarisX86_64Triples),
2596 TripleAliases.append(begin(SolarisX86_64Triples),
2598 BiarchTripleAliases.append(begin(SolarisX86Triples),
2602 TripleAliases.append(begin(SolarisSparcV8Triple
[all...]
/freebsd-current/contrib/kyua/utils/fs/
H A Ddirectory_test.cpp95 for (fs::directory::const_iterator iter = dir.begin(); iter != dir.end();
122 for (fs::directory::const_iterator iter = dir.begin(); iter != dir.end();
146 directory.begin());
155 fs::directory::const_iterator iter_ok1 = directory.begin();
156 fs::directory::const_iterator iter_ok2 = directory.begin();
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_config.c101 uint8_t *begin, *end; local
114 begin = uconfig->begin;
117 if (!begin || !end || end < begin)

Completed in 336 milliseconds

1234567891011>>