Searched defs:Point (Results 26 - 50 of 72) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dimplicit-member-functions.cpp102 template<typename K> struct Point { struct in namespace:Recursion
107 pair<Point<K>, Vector<K>> x;
112 // definition of Point's copy constructor, which performs overload resolution
H A Dmember-init.cpp97 struct Point { // expected-note 3 {{candidate constructor}} struct in namespace:rdar14084171
102 Point location = Point(0,0); // expected-error {{no matching constructor for initialization of 'rdar14084171::Point'}}
/external/dng_sdk/source/
H A Ddng_bad_pixels.h135 const dng_point & Point (uint32 index) const function in class:dng_bad_pixel_list
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPath.java10 import static com.xtremelabs.robolectric.shadows.ShadowPath.Point.Type.LINE_TO;
11 import static com.xtremelabs.robolectric.shadows.ShadowPath.Point.Type.MOVE_TO;
20 private List<Point> points = new ArrayList<Point>();
21 private List<Point> pointsMovedTo = new ArrayList<Point>();
22 private List<Point> pointsLinedTo = new ArrayList<Point>();
23 private Point wasMovedTo;
28 Point
67 public static class Point { class in class:ShadowPath
76 public Point(float x, float y, Type type) { method in class:ShadowPath.Point
[all...]
/external/ImageMagick/Magick++/lib/
H A DGeometry.cpp574 MagickPPExport int Magick::operator == (const Magick::Point& left_,
575 const Magick::Point& right_)
581 MagickPPExport int Magick::operator != (const Magick::Point& left_,
582 const Magick::Point& right_)
587 Magick::Point::Point(void) function in class:Magick::Point
593 Magick::Point::Point(const char *point_) function in class:Magick::Point
600 Magick::Point::Point(cons function in class:Magick::Point
606 Magick::Point::Point(const std::string &point_) function in class:Magick::Point
613 Magick::Point::Point(double x_,double y_) function in class:Magick::Point
619 Magick::Point::Point(double xy_) function in class:Magick::Point
[all...]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/
H A Dmtb_unittest.py20 from geometry.elements import Point, about_eq namespace
210 [TidPacket(time, Point(*xy), z)
404 expected_packet = TidPacket(syn_time, Point(*xy), z)
453 self.assertTrue(Point(*xy_pair) == points[i])
591 points = [Point(*pairs) for pairs in list_coordinates_pairs]
H A Dvalidators_unittest.py20 from geometry.elements import Point namespace
673 points = [Point(*xy) for xy in xy_pairs]
/external/clang/test/Analysis/
H A Dptr-arith.c289 struct Point { struct
293 void symbolicFieldRegion(struct Point *points, int i, int j) {
H A Dnew.cpp174 struct Point { int x, y; }; struct
175 new Point{1, 2}; // no crash
177 Point p;
178 new (&p) Point{1, 2}; // no crash
/external/deqp/framework/referencerenderer/
H A DrrPrimitiveAssembler.hpp273 struct Point struct in namespace:rr::pa
280 Point (void) function in struct:rr::pa::Point
285 Point (VertexPacket* v0_) function in struct:rr::pa::Point
301 *(outputIterator++) = Point(vertices[ndx]);
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h94 BasicBlock::iterator Point; member in class:llvm::SCEVExpander::SCEVInsertPointGuard
103 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
114 Builder.restoreIP(IRBuilderBase::InsertPoint(Block, Point));
118 BasicBlock::iterator GetInsertPoint() const { return Point; }
119 void SetInsertPoint(BasicBlock::iterator I) { Point = I; }
H A DDependenceAnalysis.h387 /// 4) Point - A point <x, y> representing the dependence from
392 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceInfo::Constraint::ConstraintKind
403 /// isPoint - Return true if the constraint is of kind Point.
404 bool isPoint() const { return Kind == Point; }
444 /// setPoint - Change a constraint to Point.
/external/webrtc/webrtc/base/
H A Dvirtualsocketserver.h104 typedef std::pair<double, double> Point; typedef in class:rtc::VirtualSocketServer
105 typedef std::vector<Point> Function;
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dvalidators.py71 from geometry.elements import Point namespace
1435 return Point(*self.device.pixel_to_mm(point_px.value()))
H A Dmtb.py17 from geometry.elements import Point namespace
415 self.point = {self.tid: Point()}
433 self.point[self.tid] = Point()
755 points_in_mm = [Point(*self.device.pixel_to_mm(p.value()))
903 p1, p2 = [Point(*self.device.pixel_to_mm(p.value()))
/external/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp674 RegBankSelect::InsertPoint &Point) {
675 CanMaterialize &= Point.canMaterialize();
676 HasSplit |= Point.isSplit();
677 InsertPoints.emplace_back(&Point);
673 addInsertPoint( RegBankSelect::InsertPoint &Point) argument
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp270 // Return a scattered form of V that can be accessed by Point. V must be a
272 Scatterer Scalarizer::scatter(Instruction *Point, Value *V) { argument
287 // In the fallback case, just put the scattered before Point and
288 // keep the result local to Point.
289 return Scatterer(Point->getParent(), Point->getIterator(), V);
/external/llvm/lib/Transforms/Utils/
H A DMemorySSA.cpp479 InsertionPlace Point) {
482 if (Point == Beginning) {
476 createMemoryAccessInBB(Instruction *I, MemoryAccess *Definition, const BasicBlock *BB, InsertionPlace Point) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_context.h244 * Point/Line/Triangle function pointers below.
266 swrast_point_func Point; member in struct:__anon15317
/external/pdfium/xfa/fde/css/
H A Dfde_css.h134 Point, member in class:FDE_CSSLengthUnit
/external/icu/icu4c/source/common/
H A Dubidiimp.h234 typedef struct Point { struct
237 } Point; typedef in typeref:struct:Point
244 Point *points; /* pointer to array of points */
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DContext.h111 struct Point struct in namespace:es1
139 Point position;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegAllocLinearScan.cpp812 SlotIndex Point){
816 IP.second, Point);
811 RevertVectorIteratorsTo(RALinScan::IntervalPtrs &V, SlotIndex Point) argument
/external/llvm/include/llvm/IR/
H A DIRBuilder.h152 BasicBlock::iterator Point; member in class:llvm::IRBuilderBase::InsertPoint
160 : Block(InsertBlock), Point(InsertPoint) {}
166 llvm::BasicBlock::iterator getPoint() const { return Point; }
213 BasicBlock::iterator Point; member in class:llvm::IRBuilderBase::InsertPointGuard
221 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()),
225 Builder.restoreIP(InsertPoint(Block, Point));
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DIRBuilder.h130 BasicBlock::iterator Point; member in class:llvm::IRBuilderBase::InsertPoint
138 : Block(InsertBlock), Point(InsertPoint) {}
144 llvm::BasicBlock::iterator getPoint() const { return Point; }

Completed in 1487 milliseconds

123