Searched defs:begin (Results 76 - 100 of 932) sorted by path

1234567891011>>

/external/clang/include/clang/Sema/
H A DLookup.h319 iterator begin() const { return iterator(Decls.begin()); } function in class:clang::LookupResult
424 Decls.append(Other.Decls.begin(), Other.Decls.end());
504 return (*begin())->getUnderlyingDecl();
510 return *begin();
608 : Results(Results), I(Results.begin()), Changed(false), CalledDone(false)
633 I = Results.begin();
696 for (iterator I = begin(), E = end(); I != E; ++I)
792 iterator begin() { return iterator(Decls.begin(), select_secon function in class:clang::ADLResult
[all...]
H A DOverload.h314 iterator begin() { return conversions().begin(); }
318 const_iterator begin() const { return conversions().begin(); }
751 iterator begin() { return Candidates.begin(); } function in class:clang::OverloadCandidateSet
H A DSemaInternal.h144 return CorrectionResults.begin()->second[Name];
153 unsigned BestED = CorrectionResults.begin()->first;
272 Outer(Set.DistanceMap.begin()),
273 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) {
281 Inner = Outer->second.begin();
290 iterator begin() { return iterator(*this, /*IsAtEnd=*/false); } function in class:clang::TypoCorrectionConsumer::NamespaceSpecifierSet
H A DTemplateDeduction.h112 diag_iterator diag_begin() const { return SuppressedDiagnostics.begin(); }
298 iterator begin() { return Candidates.begin(); } function in class:clang::TemplateSpecCandidateSet
H A DTypoCorrection.h135 return hasCorrectionDecl() ? *(CorrectionDecls.begin()) : nullptr;
162 CorrectionDecls.insert(CorrectionDecls.begin(), Decls.begin(), Decls.end());
218 decl_iterator begin() { function in class:clang::TypoCorrection
219 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
223 const_decl_iterator begin() const { function in class:clang::TypoCorrection
224 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
/external/clang/include/clang/Serialization/
H A DASTWriter.h743 void append(InputIterator begin, InputIterator end) { argument
744 Record->append(begin, end);
H A DContinuousRangeMap.h74 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare());
86 iterator begin() { return Rep.begin(); } function in class:clang::ContinuousRangeMap
88 const_iterator begin() const { return Rep.begin(); } function in class:clang::ContinuousRangeMap
92 iterator I = std::upper_bound(Rep.begin(), Rep.end(), K, Compare());
95 if (I == Rep.begin())
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
120 std::unique(Self.Rep.begin(), Self.Rep.end(),
H A DModuleManager.h124 ModuleIterator begin() { return Chain.begin(); } function in class:clang::serialization::ModuleManager
129 ModuleConstIterator begin() const { return Chain.begin(); } function in class:clang::serialization::ModuleManager
140 return llvm::make_range(PCHChain.begin(), PCHChain.end());
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h305 visitor_iterator visitor_begin() { return Callbacks.begin(); }
364 iterator begin() { return Reports.begin(); } function in class:clang::ento::BugReportEquivClass
367 const_iterator begin() const { return Reports.begin(); } function in class:clang::ento::BugReportEquivClass
438 iterator begin() { return BugTypes.begin(); } function in class:clang::ento::BugReporter
443 EQClasses_iterator EQClasses_begin() { return EQClasses.begin(); }
H A DPathDiagnostic.h601 for (PathPieces::iterator I = path.begin(),
666 iterator begin() { return LPairs.begin(); } function in class:clang::ento::PathDiagnosticControlFlowPiece
670 for (iterator I=begin(), E=end(); I!=E; ++I) I->flatten();
675 const_iterator begin() const { return LPairs.begin(); } function in class:clang::ento::PathDiagnosticControlFlowPiece
700 for (PathPieces::iterator I = subPieces.begin(),
806 meta_iterator meta_begin() const { return OtherDesc.begin(); }
827 for (PathPieces::iterator I = pathImpl.begin(), E = pathImpl.end();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h36 iterator begin() const { return L.begin(); } function in class:clang::ento::CompoundValData
H A DCoreEngine.h154 return blocksExhausted.begin();
160 return blocksAborted.begin();
231 for (iterator I = Frontier.begin(), E = Frontier.end(); I != E; ++I) {
288 inline iterator begin() { function in class:clang::ento::NodeBuilder
291 return Frontier.begin();
302 for (ExplodedNodeSet::iterator I = S.begin(), E = S.end(); I != E; ++I )
368 for (ExplodedNodeSet::iterator I = SrcSet.begin(),
478 iterator begin() { return iterator(DispatchBlock.succ_begin()); } function in class:clang::ento::IndirectGotoNodeBuilder
525 iterator begin() { return iterator(Src->succ_rbegin()+1); } function in class:clang::ento::SwitchNodeBuilder
H A DEnvironment.h73 iterator begin() const { return ExprBindings.begin(); } function in class:clang::ento::Environment
H A DExplodedGraph.h85 ExplodedNode * const *begin() const;
207 pred_iterator pred_begin() { return Preds.begin(); }
217 succ_iterator succ_begin() { return Succs.begin(); }
344 node_iterator nodes_begin() { return Nodes.begin(); }
348 const_node_iterator nodes_begin() const { return Nodes.begin(); }
352 roots_iterator roots_begin() { return Roots.begin(); }
356 const_roots_iterator roots_begin() const { return Roots.begin(); }
360 eop_iterator eop_begin() { return EndNodes.begin(); }
364 const_eop_iterator eop_begin() const { return EndNodes.begin(); }
436 Impl.insert(S.begin(),
439 inline iterator begin() { return Impl.begin(); } function in class:clang::ento::ExplodedNodeSet
442 inline const_iterator begin() const { return Impl.begin(); } function in class:clang::ento::ExplodedNodeSet
[all...]
/external/clang/lib/ARCMigrate/
H A DInternals.h40 iterator begin() const { return List.begin(); } function in class:clang::arcmt::CapturedDiagList
H A DTransforms.h108 traverser_iterator traversers_begin() { return Traversers.begin(); }
210 void clearRefsIn(iterator begin, iterator end, ExprSet &refs) { argument
211 for (; begin != end; ++begin)
212 clearRefsIn(*begin, refs);
/external/clang/lib/AST/
H A DExprCXX.cpp1192 static bool hasOnlyNonStaticMemberFunctions(UnresolvedSetIterator begin, argument
1195 NamedDecl *decl = *begin;
1204 } while (++begin != end);
H A DExprObjC.cpp196 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
340 Stmt **begin; local
342 begin = reinterpret_cast<Stmt **>(getTrailingObjects<void *>());
344 begin = reinterpret_cast<Stmt **>(getArgs());
345 return child_range(begin,
/external/clang/lib/Analysis/
H A DCFG.cpp246 /// begin of this scope.
255 const_iterator begin() const { return const_iterator(*this, Vars.size()); } function in class:__anon1507::LocalScope
322 iterator begin() const { return children.rbegin(); } function in class:__anon1507::reverse_children
1058 for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
1077 for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
1395 ScopePos = Scope->begin();
1623 for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
3412 // for ( auto __begin = begin-expr,
3424 // Create local scopes and destructors for range, begin and end variables.
3872 bool first_block = begin()
[all...]
H A DThreadSafety.cpp77 iterator It = std::find_if(begin(), end(),
171 iterator begin() { return FactIDs.begin(); } function in class:__anon1520::FactSet
172 const_iterator begin() const { return FactIDs.begin(); } function in class:__anon1520::FactSet
216 return std::find_if(begin(), end(), [&](FactID ID) {
222 auto I = std::find_if(begin(), end(), [&](FactID ID) {
229 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool {
237 auto I = std::find_if(begin(), end(), [&](FactID ID) -> bool {
244 auto I = std::find_if(begin(), en
[all...]
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp127 for (StringRef Comp : llvm::make_range(path::begin(Path), path::end(Path)))
478 const_iterator begin() const { return Entries.begin(); } function in class:clang::vfs::detail::InMemoryDirectory
525 auto I = llvm::sys::path::begin(Path), E = llvm::sys::path::end(Path);
547 StringRef(Path.str().begin(), Name.end() - Path.str().begin()),
597 auto I = llvm::sys::path::begin(Path), E = llvm::sys::path::end(Path);
649 : I(Dir.begin()), E(Dir.end()) {
739 iterator contents_begin() { return Contents.begin(); }
1031 for (DenseMap<StringRef, KeyStatus>::iterator I = Keys.begin(),
[all...]
/external/clang/lib/CodeGen/
H A DCGDecl.cpp927 /// Emit a lifetime.begin marker if some criteria are satisfied.
1528 llvm::Value *begin = addr.getPointer(); local
1529 llvm::Value *end = Builder.CreateInBoundsGEP(begin, length);
1530 emitArrayDestroy(begin, end, type, elementAlign, destroyer,
1537 /// \param begin - a type* denoting the first element of the array
1544 void CodeGenFunction::emitArrayDestroy(llvm::Value *begin, argument
1559 llvm::Value *isEmpty = Builder.CreateICmpEQ(begin, end,
1568 Builder.CreatePHI(begin->getType(), 2, "arraydestroy.elementPast");
1577 pushRegularPartialArrayCleanup(begin, element, elementType, elementAlign,
1587 llvm::Value *done = Builder.CreateICmpEQ(element, begin, "arraydestro
1597 emitPartialArrayDestroy(CodeGenFunction &CGF, llvm::Value *begin, llvm::Value *end, QualType type, CharUnits elementAlign, CodeGenFunction::Destroyer *destroyer) argument
[all...]
H A DCGExprAgg.cpp413 llvm::Value *begin = local
414 Builder.CreateInBoundsGEP(DestPtr.getPointer(), indices, "arrayinit.begin");
432 endOfInit = CGF.CreateTempAlloca(begin->getType(), CGF.getPointerAlign(),
434 cleanupDominator = Builder.CreateStore(begin, endOfInit);
435 CGF.pushIrregularPartialArrayCleanup(begin, endOfInit, elementType,
452 llvm::Value *element = begin;
492 llvm::Value *end = Builder.CreateInBoundsGEP(begin,
940 eval.begin(CGF);
955 eval.begin(CGF);
H A DCGObjCMac.cpp761 /// subsequent word-size instructions do not begin at a multiple of
1145 /// - begin, end: The method list to output.
1175 ObjCProtocolDecl::protocol_iterator begin,
1353 ObjCProtocolDecl::protocol_iterator begin,
1606 CallArgList::const_iterator I = CallArgs.begin();
2048 void visitAggregate(Iterator begin, Iterator end,
2448 llvm::array_pod_sort(RunSkipBlockVars.begin(), RunSkipBlockVars.end());
2765 OptMethodTypesExt.begin(), OptMethodTypesExt.end());
2874 ObjCProtocolDecl::protocol_iterator begin,
2878 for (; begin !
2873 EmitProtocolList(Twine Name, ObjCProtocolDecl::protocol_iterator begin, ObjCProtocolDecl::protocol_iterator end) argument
4755 visitAggregate(Iterator begin, Iterator end, CharUnits aggregateOffset, const GetOffsetFn &getOffset) argument
6603 EmitProtocolList(Twine Name, ObjCProtocolDecl::protocol_iterator begin, ObjCProtocolDecl::protocol_iterator end) argument
[all...]
H A DCodeGenFunction.cpp382 I = DeferredReplacements.begin(),
885 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
1234 eval.begin(*this);
1283 eval.begin(*this);
1324 cond.begin(*this);
1334 cond.begin(*this);
1403 Address begin = local
1404 Builder.CreateElementBitCast(dest, CGF.Int8Ty, "vla.begin");
1406 Builder.CreateInBoundsGEP(begin.getPointer(), sizeInChars, "vla.end");
1416 llvm::PHINode *cur = Builder.CreatePHI(begin
[all...]

Completed in 452 milliseconds

1234567891011>>