Home
last modified time | relevance | path

Searched defs:Point (Results 1 – 25 of 81) sorted by relevance

1234

/llvm-project/lldb/test/API/functionalities/type_find_first/
H A Dmain.cpp2 struct Point { struct
8 struct Point { struct
18 Integer::Point ip = {2, 3}; in main()
19 Float::Point fp = {2.0, 3.0}; in main()
/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-globals/
H A Dmain.cpp1 struct Point { struct
4 Point(int X = 3, int Y = 2) : x(X), y(Y) {} in Point() argument
/llvm-project/clang/test/CodeCompletion/
H A Dmacros.c5 struct Point { struct
10 void test(struct Point *p) { in test() argument
H A Dmember-access.c1 struct Point { struct
7 void test(struct Point *p) { in test() argument
/llvm-project/clang/test/Modules/Inputs/
H A Dpoint.h1 struct Point { int x, y; }; argument
H A Dignored_macros.h1 struct Point { struct
2 double x, y;
/llvm-project/clang/test/FixIt/
H A Dfixit-errors.c15 struct Point { struct
19 struct Point *get_origin(void); argument
H A Dtypo.c7 struct Point { struct
12 struct Point top_left, // expected-note{{'top_left' declared here}} argument
/llvm-project/lldb/test/API/lang/c/global_variables/
H A Da.c2 struct Point { struct
6 struct Point g_marked_spot = { 20, 21 }; argument
/llvm-project/clang/test/Index/
H A Dcomplete-tabs.c2 struct Point { int x, y; }; struct
H A Dcomplete-macro-args.c1 struct Point { struct
10 void test(struct Point *p) { in test() argument
/llvm-project/lldb/test/API/functionalities/var_path/
H A Dmain.cpp3 struct Point { struct
8 Point pt = { 1, 2 }; in main() argument
/llvm-project/llvm/unittests/ADT/
H A DIntervalTreeTest.cpp38 void checkItem(TPoint Point, TItem Item, TPoint Left, TPoint Right, in checkItem()
81 UUPoint Point; in TEST()
155 void checkData(UUPoint Point, const UUData *Data, UUPoint Left, UUPoint Right, in checkData()
160 void checkData(UUPoint Point, UUIter Iter, UUPoint Left, UUPoint Right, in checkData()
184 UUPoint Point; in TEST() local
227 UUPoint Point; in TEST() local
290 UUPoint Point; in TEST() local
376 UUPoint Point; in TEST() local
453 UUPoint Point; in TEST() local
713 UUPoint Point; in TEST() local
[all …]
/llvm-project/clang/test/OpenMP/
H A Dreduction_compound_op.cpp22 struct Point { struct
26 Point operator+(Point const &other) const; argument
[all...]
/llvm-project/clang/test/PCH/
H A Dstruct.h3 struct Point { struct
7 struct Point2 { argument
/llvm-project/bolt/include/bolt/Passes/
H A DDataflowAnalysis.h184 StateTy getStartingStateAtPoint(const MCInst &Point) { in getStartingStateAtPoint()
210 StateTy computeNext(const MCInst &Point, const StateTy &Cur) { in computeNext()
234 StateTy &getOrCreateStateAt(MCInst &Point) { in getOrCreateStateAt()
239 StateTy &getOrCreateStateAt(ProgramPoint Point) { in getOrCreateStateAt()
279 ErrorOr<const StateTy &> getStateAt(const MCInst &Point) const { in getStateAt()
286 ErrorOr<const StateTy &> getStateAt(ProgramPoint Point) const { in getStateAt()
295 ErrorOr<const StateTy &> getStateBefore(const MCInst &Point) { in getStateBefore()
299 ErrorOr<const StateTy &> getStateBefore(ProgramPoint Point) { in getStateBefore()
490 template <typename T> ExprIterator expr_begin(const T &Point) const { in expr_begin()
514 bool count(ProgramPoint Point, const MCInst &Expr) const { in count()
[all …]
H A DStackPointerTracking.h42 std::pair<int, int> getStartingStateAtPoint(const MCInst &Point) { in getStartingStateAtPoint()
77 int computeNextSP(const MCInst &Point, int SPVal, int FPVal) { in computeNextSP()
130 int computeNextFP(const MCInst &Point, int SPVal, int FPVal) { in computeNextFP()
167 std::pair<int, int> computeNext(const MCInst &Point, in computeNext()
H A DReachingInsns.h65 BitVector getStartingStateAtPoint(const MCInst &Point) { in getStartingStateAtPoint()
73 BitVector computeNext(const MCInst &Point, const BitVector &Cur) { in computeNext()
/llvm-project/clang/test/SemaCXX/
H A Dc99.cpp9 struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a C99 feat… argument
H A Dtag-ambig.cpp4 typedef struct Point Point; typedef
15 struct Point { }; struct in Test
/llvm-project/llvm/include/llvm/ADT/
H A DIntervalTree.h221 bool left(const PointType &Point) const { return left() <= Point; } in left()
225 bool right(const PointType &Point) const { return Point <= right(); } in right()
229 bool contains(const PointType &Point) const { in contains()
279 IntervalNode(PointType Point, unsigned Start) in IntervalNode()
465 PointType Point = {}; variable
546 PointType Point) in find_iterator()
616 IntervalReferences getContaining(PointType Point) const { in getContaining()
680 find_iterator find(PointType Point) const { in find()
/llvm-project/lldb/test/API/benchmarks/expression/
H A Dmain.cpp
/llvm-project/lldb/test/API/functionalities/non-overlapping-index-variable-i/
H A Dmain.cpp1 class Point { class
5 Point(int a, int b): in Point() function in Point
/llvm-project/bolt/lib/Passes/
H A DStackAllocationAnalysis.cpp48 StackAllocationAnalysis::getStartingStateAtPoint(const MCInst &Point) { in getStartingStateAtPoint()
57 BitVector StackAllocationAnalysis::doKill(const MCInst &Point, in doKill()
95 BitVector StackAllocationAnalysis::computeNext(const MCInst &Point, in computeNext()
/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h35 Range(const llvm::APSInt &Point) : Range(Point, Point) {} in Range()
37 bool Includes(const llvm::APSInt &Point) const { in Includes()
318 RangeSet(Factory &F, const llvm::APSInt &Point) in RangeSet()
353 bool contains(llvm::APSInt Point) const { return containsImpl(Point); } in contains()

1234