Searched refs:begin (Results 76 - 100 of 2755) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h182 paths_iterator begin() { return Paths.begin(); } function in class:clang::CXXBasePaths
184 const_paths_iterator begin() const { return Paths.begin(); } function in class:clang::CXXBasePaths
280 iterator begin() { return Overrides.begin(); } function in class:clang::OverridingMethods
281 const_iterator begin() const { return Overrides.begin(); } function in class:clang::OverridingMethods
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h40 const_iterator begin() const { return Expansions.begin(); } function in class:llvm::CodeExpansions
/freebsd-current/contrib/kyua/utils/cmdline/
H A Dcommands_map_test.cpp80 ATF_REQUIRE(commands.begin() == commands.end());
96 iter = commands.begin();
99 ATF_REQUIRE_EQ("cmd1", *(*iter).second.begin());
104 ATF_REQUIRE_EQ("cmd2", *(*iter).second.begin());
/freebsd-current/contrib/kyua/utils/text/
H A Doperations.cpp52 for (std::string::const_iterator it = in.begin();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTrace.h85 iterator begin() { return BasicBlocks.begin(); } function in class:llvm::Trace
86 const_iterator begin() const { return BasicBlocks.begin(); } function in class:llvm::Trace
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineDominanceFrontier.h52 iterator begin() { function in class:llvm::MachineDominanceFrontier
53 return Base.begin();
56 const_iterator begin() const { function in class:llvm::MachineDominanceFrontier
57 return Base.begin();
H A DLiveStacks.h59 const_iterator begin() const { return S2IMap.begin(); } function in class:llvm::LiveStacks
61 iterator begin() { return S2IMap.begin(); } function in class:llvm::LiveStacks
/freebsd-current/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dtime.h25 #pragma omp begin declare variant match( \
/freebsd-current/contrib/processor-trace/libipt/internal/include/posix/
H A Dpt_section_posix.h52 /* The begin and end of the mapped memory. */
53 const uint8_t *begin, *end; member in struct:pt_sec_posix_mapping
/freebsd-current/contrib/processor-trace/libipt/internal/include/
H A Dpt_section_file.h47 /* The begin and end of the section as offset into @file. */
48 long begin, end; member in struct:pt_sec_file_mapping
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DCommentBriefParser.cpp22 std::string::iterator O = S.begin();
23 for (std::string::iterator I = S.begin(), E = S.end();
36 if (O != S.begin() && *(O - 1) == ' ')
39 S.resize(O - S.begin());
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DDJB.cpp24 reinterpret_cast<const UTF8 *>(Buffer.begin());
39 UTF8 *Begin8 = Storage.begin();
47 return StringRef(reinterpret_cast<char *>(Storage.begin()),
48 Begin8 - Storage.begin());
/freebsd-current/contrib/llvm-project/clang/lib/Headers/llvm_libc_wrappers/
H A Dinttypes.h24 #pragma omp begin declare target
H A Dtime.h24 #pragma omp begin declare target
H A Dassert.h24 #pragma omp begin declare target
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DStringViewExtras.h25 return !self.empty() && *self.begin() == C;
/freebsd-current/contrib/llvm-project/libcxx/include/__ranges/
H A Dempty.h39 bool(ranges::begin(__t) == ranges::end(__t));
40 { ranges::begin(__t) } -> forward_iterator;
56 noexcept(noexcept(bool(ranges::begin(__t) == ranges::end(__t)))) {
57 return ranges::begin(__t) == ranges::end(__t);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueSymbolTable.h99 inline iterator begin() { return vmap.begin(); } function in class:llvm::ValueSymbolTable
102 inline const_iterator begin() const { return vmap.begin(); } function in class:llvm::ValueSymbolTable
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariableList.h73 iterator begin() { return m_variables.begin(); } function in class:lldb_private::VariableList
75 const_iterator begin() const { return m_variables.begin(); } function in class:lldb_private::VariableList
/freebsd-current/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h37 iterator begin() const { return Buffer.begin(); } function in class:clang::RewriteBuffer
47 Initialize(Input.begin(), Input.end());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h65 return std::binary_search(Ranges.begin(), Ranges.end(), C);
73 for (CharRanges::const_iterator I = Ranges.begin(), E = Ranges.end();
75 if (I != Ranges.begin() && Prev >= I->Lower) {
/freebsd-current/contrib/netbsd-tests/usr.bin/gzip/
H A Dt_gzip.sh60 begin-base64 644 truncated.gz
77 begin-base64 644 crcerror.gz
94 begin-base64 644 good.gz
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp64 m_break_loc_collection.begin(),
73 m_break_loc_collection.begin(),
141 collection::iterator pos, begin = m_break_loc_collection.begin(), local
144 for (pos = begin; pos != end; ++pos) {
153 collection::const_iterator pos, begin = m_break_loc_collection.begin(), local
158 for (pos = begin; pos != end; ++pos) {
170 collection::iterator pos, begin = m_break_loc_collection.begin(), local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DFinalizeISel.cpp51 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
53 for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
65 MBBI = NewMBB->begin();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSetTheory.h132 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) { argument
133 while (begin != end)
134 evaluate(*begin++, Elts, Loc);

Completed in 148 milliseconds

1234567891011>>