HomeSort by relevance Sort by last modified time
    Searched defs:begin (Results 201 - 225 of 582) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/Sema/
IdentifierResolver.cpp 71 for (DeclsTy::iterator I = Decls.end(); I != Decls.begin(); --I) {
223 /// begin - Returns an iterator for decls with name 'Name'.
225 IdentifierResolver::begin(DeclarationName Name) { function in class:IdentifierResolver
  /external/clang/test/Analysis/
cxx11-crashes.cpp 63 bool begin(double *it) { function
  /external/clang/test/Analysis/inlining/
containers.cpp 30 clang_analyzer_eval(set.begin().impl == set.end().impl);
39 sub.useIterator(sub.begin());
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl);
119 iterator begin() { function in class:MySet
194 wrapped_iterator begin() { function in class:BeginOnlySet
199 return IterImpl(impl.begin());
221 return impl.begin();
243 return impl.begin();
267 return iterator{impl.begin().impl}
    [all...]
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 4 int begin; member in struct:pr12960
6 for (int& it : x) { // expected-error {{invalid range expression of type 'int'; no viable 'begin' function available}}
17 auto begin(T &&t) -> decltype(t.begin()) { return t.begin(); } // expected-note 2{{ignored: substitution failure}}
22 auto begin(T &&t) -> decltype(t.alt_begin()) { return t.alt_begin(); } // expected-note {{selected 'begin' template [with T = }} \
29 int begin(int);
37 int *begin(); // expected-note 3{{selected 'begin' function with iterator type 'int *'}} expected-note {{'begin' declared here}
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 33 const _E* begin() const {return __begin_;} function in class:std::initializer_list
  /external/elfutils/0.153/libdw/
dwarf_getlocation.c 618 Dwarf_Addr begin; local
624 &begin, &end, &base);
669 if (address >= base + begin && address < base + end)
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 231 protected void analyze(CodeIterator ci, int begin, int end)
234 ci.begin();
235 ci.move(begin);
  /external/libvorbis/lib/
envelope.h 46 int begin; member in struct:__anon4295
  /external/lldb/source/Symbol/
UnwindPlan.cpp 176 for (collection::const_iterator idx = m_register_locations.begin (); idx != m_register_locations.end (); ++idx)
326 for (pos = m_row_list.begin(); pos != end; ++pos)
402 collection::const_iterator pos, begin = m_row_list.begin(), end = m_row_list.end(); local
403 for (pos = begin; pos != end; ++pos)
405 s.Printf ("row[%u]: ", (uint32_t)std::distance (begin, pos));
  /external/lldb/source/Target/
PathMappingList.cpp 94 for (pos = rhs.m_pairs.begin(); pos != end; ++pos)
112 insert_iter = m_pairs.begin() + index;
141 iterator iter = m_pairs.begin() + index;
189 for (pos = m_pairs.begin(); pos != end; ++pos)
211 for (pos = m_pairs.begin(); pos != end; ++pos)
236 for (pos = m_pairs.begin(); pos != end; ++pos)
294 const_iterator begin = m_pairs.begin(); local
297 for (pos = begin; pos != end; ++pos)
309 iterator begin = m_pairs.begin() local
338 const_iterator begin = m_pairs.begin(); local
    [all...]
  /external/llvm/include/llvm/ADT/
ArrayRef.h 65 ArrayRef(const T *begin, const T *end)
66 : Data(begin), Length(end - begin) {}
89 : Data(Vec.begin() == Vec.end() ? (T*)0 : Vec.begin()),
97 iterator begin() const { return Data; } function in class:llvm::ArrayRef
101 reverse_iterator rend() const { return reverse_iterator(begin()); }
126 std::copy(begin(), end(), Buff);
134 return std::equal(begin(), end(), RHS.begin());
    [all...]
DenseSet.h 106 iterator begin() { return Iterator(TheMap.begin()); } function in class:llvm::DenseSet
109 const_iterator begin() const { return ConstIterator(TheMap.begin()); } function in class:llvm::DenseSet
PostOrderIterator.h 136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); } function in class:llvm::po_iterator
139 static inline _Self begin(GraphT G, SetType &S) { function in class:llvm::po_iterator
175 po_iterator<T> po_begin(T G) { return po_iterator<T>::begin(G); }
188 return po_ext_iterator<T, SetType>::begin(G, S);
207 return ipo_iterator<T>::begin(G, Reverse);
227 return ipo_ext_iterator<T, SetType>::begin(G, S);
249 // for (rpo_iterator I = RPOT.begin(); I != RPOT.end(); ++I) {
252 // for (rpo_iterator I = RPOT.begin(); I != RPOT.end(); ++I) {
273 inline rpo_iterator begin() { return Blocks.rbegin(); } function in class:llvm::ReversePostOrderTraversal
SCCIterator.h 100 static scc_iterator begin(const GraphT &G) { function in class:llvm::scc_iterator
223 /// \brief Construct the begin iterator for a deduced graph type T.
225 return scc_iterator<T>::begin(G);
233 /// \brief Construct the begin iterator for a deduced graph type T's Inverse<T>.
235 return scc_iterator<Inverse<T> >::begin(G);
SparseSet.h 174 const_iterator begin() const { return Dense.begin(); } function in class:llvm::SparseSet
176 iterator begin() { return Dense.begin(); } function in class:llvm::SparseSet
211 return begin() + i;
272 /// for (SparseSet::iterator I = Set.begin(); I != Set.end();)
281 assert(unsigned(I - begin()) < size() && "Invalid iterator");
286 Sparse[BackIdx] = I - begin();
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 59 iterator begin() { return Frontiers.begin(); } function in class:llvm::DominanceFrontierBase
60 const_iterator begin() const { return Frontiers.begin(); } function in class:llvm::DominanceFrontierBase
74 for (iterator I = begin(), E = end(); I != E; ++I)
94 for (DomSetType::const_iterator I = DS2.begin(),
98 for (DomSetType::const_iterator I = DS1.begin(),
119 for (DomSetMapType::const_iterator I = Other.begin(),
123 for (DomSetMapType::iterator I = tmpFrontiers.begin(),
IVUsers.h 162 iterator begin() { return IVUses.begin(); } function in class:llvm::IVUsers
164 const_iterator begin() const { return IVUses.begin(); } function in class:llvm::IVUsers
LoopIterator.h 72 return PostBlocks.begin();
138 POTIterator begin() { function in class:llvm::LoopBlocksTraversal
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 132 /// begin/end - Iterators for function metadata.
134 iterator begin() { return Functions.begin(); } function in class:llvm::GCStrategy
  /external/llvm/include/llvm/IR/
BasicBlock.h 198 inline iterator begin() { return InstList.begin(); } function in class:llvm::BasicBlock
199 inline const_iterator begin() const { return InstList.begin(); } function in class:llvm::BasicBlock
  /external/llvm/include/llvm/MC/MCAnalysis/
MCAtom.h 43 uint64_t getBeginAddr() const { return Begin; }
75 uint64_t Begin, End;
79 : Kind(K), Name("(unknown)"), Parent(P), Begin(B), End(E) { }
84 /// \brief Remap the atom, using the given range, updating Begin/End.
93 /// remap(Begin, TruncPt);
98 /// The bounds for the resulting atoms are returned in {L,R}{Begin,End}.
138 const_iterator begin() const { return Insts.begin(); } function in class:llvm::MCTextAtom
157 MCTextAtom(MCModule *P, uint64_t Begin, uint64_t End)
158 : MCAtom(TextAtom, P, Begin, End), NextInstAddress(Begin) {
    [all...]
MCFunction.h 62 succ_const_iterator succ_begin() const { return Successors.begin(); }
66 pred_const_iterator pred_begin() const { return Predecessors.begin(); }
124 const_iterator begin() const { return Blocks.begin(); } function in class:llvm::MCFunction
125 iterator begin() { return Blocks.begin(); } function in class:llvm::MCFunction
  /external/llvm/lib/IR/
AttributeImpl.h 148 std::copy(Attrs.begin(), Attrs.end(),
170 iterator begin() const { return reinterpret_cast<iterator>(this + 1); } function in class:llvm::AttributeSetNode
171 iterator end() const { return begin() + NumAttrs; }
174 Profile(ID, makeArrayRef(begin(), end()));
208 for (const std::pair<unsigned, AttributeSetNode *> *i = Attrs.begin() + 1,
216 std::copy(Attrs.begin(), Attrs.end(),
248 iterator begin(unsigned Slot) const { return getSlotNode(Slot)->begin(); } function in class:llvm::AttributeSetImpl
  /external/mesa3d/src/gallium/state_trackers/clover/core/
compat.hpp 73 p(alloc(v.size(), &*v.begin(), v.size())), n(v.size()) {
124 begin() { function in class:clover::compat::vector
129 begin() const { function in class:clover::compat::vector
165 vector_ref(C &v) : p(&*v.begin()), n(v.size()) {
174 begin() { function in class:clover::compat::vector_ref
179 begin() const { function in class:clover::compat::vector_ref
224 std::memcpy(p, buf.begin() + offset, n);
242 std::memcpy(buf.begin() + offset, p, n);
261 return std::string(begin(), end());
267 if (!std::memcmp(begin() + i, s.begin(), s.size())
    [all...]
  /external/nist-sip/java/gov/nist/core/
StringTokenizer.java 195 int begin = line.indexOf("="); local
196 fieldName = line.substring(0, begin);

Completed in 543 milliseconds

1 2 3 4 5 6 7 891011>>