HomeSort by: relevance | last modified time | path
    Searched refs:Point (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFinder.cpp 10 /// point.
35 // Finds the NamedDecl at a point in the source.
36 // \param Point the location in the source to search for the NamedDecl.
37 explicit NamedDeclOccurrenceFindingVisitor(const SourceLocation Point,
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 |
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-color-helper.h 71 // Sample the gradient at the input point.
72 std::tuple<uint8_t, uint8_t, uint8_t> getColorTuple(double Point) const;
74 std::string getColorString(double Point) const;
xray-color-helper.cpp 181 ColorHelper::getColorTuple(double Point) const {
185 if (Point < MinIn)
187 if (Point > MaxIn)
192 double OffsetP = Point - MinIn;
219 std::string ColorHelper::getColorString(double Point) const {
220 return getColorString(getColorTuple(Point));
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Rename/
USRFinder.h 32 // Given an AST context and a point, returns a NamedDecl identifying the symbol
33 // at the point. Returns null if nothing is found at the point.
35 const SourceLocation Point);
  /src/external/gpl3/gdb/dist/sim/testsuite/m68hc11/
testutils.inc 13 # Point to the string.
29 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/mcore/
testutils.inc 17 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/moxie/
testutils.inc 13 # Point to the string.
29 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/m68hc11/
testutils.inc 13 # Point to the string.
29 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/mcore/
testutils.inc 17 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/moxie/
testutils.inc 13 # Point to the string.
29 # Point to the string.
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
RangedConstraintManager.h 35 Range(const llvm::APSInt &Point) : Range(Point, Point) {}
37 bool Includes(const llvm::APSInt &Point) const {
38 return From() <= Point && Point <= To();
136 /// Create a new set with all ranges from the original set plus the point.
141 RangeSet add(RangeSet Original, const llvm::APSInt &Point);
173 /// Intersect the given range with the given point.
176 /// point depending on whether the point is in the range set
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/iq2000/
testutils.inc 16 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/lm32/
testutils.inc 16 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/m32c/
testutils.inc 14 # Point to the string.
33 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/mn10300/
testutils.inc 16 # Point to the string.
36 # Point to the string.
  /src/external/gpl3/gdb/dist/sim/testsuite/riscv/
testutils.inc 17 # Point to the string.
36 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/iq2000/
testutils.inc 16 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/lm32/
testutils.inc 16 # Point to the string.
35 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/m32c/
testutils.inc 14 # Point to the string.
33 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/mn10300/
testutils.inc 16 # Point to the string.
36 # Point to the string.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/riscv/
testutils.inc 17 # Point to the string.
36 # Point to the string.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Analysis.cpp 125 // point coordinates (measurements).
128 const InstructionBenchmark &Point = Clustering_.getPoints()[PointId];
131 writeSnippet<EscapeTag, kEscapeCsv>(OS, Point.AssembledSnippet, "; ");
133 writeEscaped<kEscapeCsv>(OS, Point.Key.Config);
135 assert(!Point.Key.Instructions.empty());
136 const MCInst &MCI = Point.keyInstruction();
147 for (const auto &Measurement : Point.Measurements) {
222 const InstructionBenchmark &Point = Points[PointId];
223 if (!Point.Error.empty())
225 assert(!Point.Key.Instructions.empty())
    [all...]
Clustering.cpp 49 if (PMeasurements.empty()) // Error point.
67 if (Measurements.empty()) // Error point.
77 // And now check that every point is a neighbour of the centroid. Also O(N).
82 if (PMeasurements.empty()) // Error point.
83 return true; // Pretend that error point is a neighbour.
102 const auto &Point = Points_[P];
103 if (!Point.Error.empty()) {
108 const auto *CurMeasurement = &Point.Measurements;
145 ClusterIdForPoint_[P] = CurrentCluster.Id; /* Label initial point */
152 // Retrieve a point from the set
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/
hello.cs 11 using System.Drawing; /* Point, Size */
69 label1.Location = new Point(border, border);
70 label2.Location = new Point(border, border + label1.PreferredHeight);
71 ok.Location = new Point(border + totalWidth - ok.Width, border + totalHeight - ok.Height);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorizationPlanner.h 63 /// Clear the insertion point: created instructions will not be inserted into
73 /// InsertPoint - A saved insertion point.
76 VPBasicBlock::iterator Point;
79 /// Creates a new insertion point which doesn't point to anything.
82 /// Creates a new insertion point at the given location.
84 : Block(InsertBlock), Point(InsertPoint) {}
86 /// Returns true if this insert point is set.
90 VPBasicBlock::iterator getPoint() const { return Point; }
93 /// Sets the current insert point to a previously-saved location
    [all...]

Completed in 38 milliseconds

1 2 3