Searched refs:Point (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-current/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFinder.cpp36 // \param Point the location in the source to search for the NamedDecl.
37 explicit NamedDeclOccurrenceFindingVisitor(const SourceLocation Point, argument
41 Point(Point), Context(Context) {}
61 // Determines if the Point is within Start and End.
63 // FIXME: Add tests for Point == End.
64 return Point == Start || Point == End ||
66 Point) &&
67 Context.getSourceManager().isBeforeInTranslationUnit(Point, En
71 const SourceLocation Point; // The location to find the NamedDecl. member in class:clang::tooling::__anon2366::NamedDeclOccurrenceFindingVisitor
77 getNamedDeclAt(const ASTContext &Context, const SourceLocation Point) argument
[all...]
H A DUSRFindingAction.cpp251 const SourceLocation Point = SourceMgr.getLocForStartOfFile(MainFileID) local
254 ? getNamedDeclAt(Context, Point)
259 FullSourceLoc FullLoc(Point, SourceMgr);
263 Engine.Report(Point, CouldNotFindSymbolAt) << SymbolOffset;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h53 // IntervalReferences getContaining(PointT Point);
56 // find_iterator begin(PointType Point) const;
171 // find_iterator begin(PointType Point) const;
173 // Point: a target point to be tested for inclusion in any interval.
176 // IntervalReferences getContaining(PointT Point);
177 // Point: a target point to be tested for inclusion in any interval.
219 /// Return true if \a Point is inside the left bound of closed interval \a
220 /// [Left;Right]. This is Left <= Point for closed intervals.
221 bool left(const PointType &Point) const { return left() <= Point; }
279 IntervalNode(PointType Point, unsigned Start) argument
465 PointType Point = {}; member in class:llvm::IntervalTree::find_iterator
544 find_iterator(const IntervalReferences *Left, const IntervalReferences *Right, IntervalNode *Node, PointType Point) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-color-helper.h71 std::tuple<uint8_t, uint8_t, uint8_t> getColorTuple(double Point) const;
73 std::string getColorString(double Point) const;
H A Dxray-color-helper.cpp182 ColorHelper::getColorTuple(double Point) const {
186 if (Point < MinIn)
188 if (Point > MaxIn)
193 double OffsetP = Point - MinIn;
220 std::string ColorHelper::getColorString(double Point) const {
221 return getColorString(getColorTuple(Point));
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Rename/
H A DUSRFinder.h35 const SourceLocation Point);
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h35 Range(const llvm::APSInt &Point) : Range(Point, Point) {} argument
37 bool Includes(const llvm::APSInt &Point) const {
38 return From() <= Point && Point <= To();
142 RangeSet add(RangeSet Original, const llvm::APSInt &Point);
160 RangeSet unite(RangeSet Original, llvm::APSInt Point);
205 RangeSet intersect(RangeSet What, llvm::APSInt Point);
211 RangeSet deletePoint(RangeSet From, const llvm::APSInt &Point);
318 RangeSet(Factory &F, const llvm::APSInt &Point) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h85 VPBasicBlock::iterator Point; member in class:llvm::VPBuilder::VPInsertPoint
93 : Block(InsertBlock), Point(InsertPoint) {}
99 VPBasicBlock::iterator getPoint() const { return Point; }
196 VPBasicBlock::iterator Point; member in class:llvm::VPBuilder::InsertPointGuard
200 : Builder(B), Block(B.getInsertBlock()), Point(B.getInsertPoint()) {}
205 ~InsertPointGuard() { Builder.restoreIP(VPInsertPoint(Block, Point)); }
/freebsd-current/contrib/sqlite3/
H A DReplace.cs115 #region Program Entry Point
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h121 BasicBlock::iterator Point; member in class:llvm::SCEVExpander::SCEVInsertPointGuard
130 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
141 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point));
145 BasicBlock::iterator GetInsertPoint() const { return Point; }
146 void SetInsertPoint(BasicBlock::iterator I) { Point = I; }
/freebsd-current/contrib/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp100 for (const auto &[Point, Payload] : Pts)
101 Positions.push_back(Point);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h193 MemorySSA::InsertionPlace Point);
H A DDependenceAnalysis.h402 /// 4) Point - A point <x, y> representing the dependence from
407 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceInfo::Constraint::ConstraintKind
418 /// isPoint - Return true if the constraint is of kind Point.
419 bool isPoint() const { return Kind == Point; }
459 /// setPoint - Change a constraint to Point.
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp134 RangeSet RangeSet::Factory::add(RangeSet Original, const llvm::APSInt &Point) {
135 return add(Original, Range(Point));
150 RangeSet RangeSet::Factory::unite(RangeSet Original, llvm::APSInt Point) {
151 return unite(Original, Range(ValueFactory.getValue(Point)));
372 bool RangeSet::containsImpl(llvm::APSInt &Point) const {
373 if (isEmpty() || !pin(Point))
376 Range Dummy(Point);
381 return std::prev(It)->Includes(Point);
384 bool RangeSet::pin(llvm::APSInt &Point) const {
386 if (Type.testInRange(Point, tru
[all...]
/freebsd-current/stand/i386/mbr/
H A Dmbr.S65 movw %bx,%si # Point to active
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp870 RegBankSelect::InsertPoint &Point) {
871 CanMaterialize &= Point.canMaterialize();
872 HasSplit |= Point.isSplit();
873 InsertPoints.emplace_back(&Point);
869 addInsertPoint( RegBankSelect::InsertPoint &Point) argument
/freebsd-current/release/packages/
H A DMakefile.package88 hostapd_COMMENT= 802.11 Access Point Daemon an Utilities
89 hostapd_DESC= 802.11 Access Point Daemon an Utilities
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp111 type summary add -s "x=${var.x}, y=${var.y}" curses::Point
116 struct Point { struct in namespace:curses
120 Point(int _x = 0, int _y = 0) : x(_x), y(_y) {} function in struct:curses::Point
127 Point &operator+=(const Point &rhs) {
136 bool operator==(const Point &lhs, const Point &rhs) {
140 bool operator!=(const Point &lhs, const Point &rhs) {
166 Point origi
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp315 Scatterer scatter(Instruction *Point, Value *V, const VectorSplit &VS);
437 // Return a scattered form of V that can be accessed by Point. V must be a
439 Scatterer ScalarizerVisitor::scatter(Instruction *Point, Value *V, argument
456 return Scatterer(Point->getParent(), Point->getIterator(),
465 // In the fallback case, just put the scattered before Point and
466 // keep the result local to Point.
467 return Scatterer(Point->getParent(), Point->getIterator(), V, VS);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h377 /// This method takes the ownership of &\p Point.
378 void addInsertPoint(InsertPoint &Point);
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc128 struct Point { struct
130 friend void AbslStringify(Sink& sink, const Point& p) {
339 TEST(PrintClassTest, AbslStringify) { EXPECT_EQ("(10, 20)", Print(Point())); }
1663 EXPECT_PRINT_TO_STRING_(Point(), "(10, 20)");
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp1002 std::optional<StmtPoint> Point = Succ->getLocation().getAs<StmtPoint>();
1003 if (!Point)
1006 auto *LiteralExpr = dyn_cast<ObjCStringLiteral>(Point->getStmt());
1017 PathDiagnosticLocation::create(*Point, BRC.getSourceManager());
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp1577 InsertionPlace Point) {
1579 if (Point == Beginning) {
1658 InsertionPlace Point) {
1660 assert(Point == Beginning &&
1670 insertIntoListsForBlock(What, BB, Point);
1575 insertIntoListsForBlock(MemoryAccess *NewAccess, const BasicBlock *BB, InsertionPlace Point) argument
1657 moveTo(MemoryAccess *What, BasicBlock *BB, InsertionPlace Point) argument
H A DMemorySSAUpdater.cpp1406 MemorySSA::InsertionPlace Point) {
1408 MSSA->insertIntoListsForBlock(NewAccess, BB, Point);
1404 createMemoryAccessInBB( Instruction *I, MemoryAccess *Definition, const BasicBlock *BB, MemorySSA::InsertionPlace Point) argument
/freebsd-current/stand/i386/boot0/
H A Dboot0.S448 shlb $0x4,%al # Point to

Completed in 290 milliseconds

12