/external/guava/guava/src/com/google/common/collect/ |
D | CartesianList.java | 37 private transient final ImmutableList<List<E>> axes; field in CartesianList 53 CartesianList(ImmutableList<List<E>> axes) { in CartesianList() argument 54 this.axes = axes; in CartesianList() 55 int[] axesSizeProduct = new int[axes.size() + 1]; in CartesianList() 56 axesSizeProduct[axes.size()] = 1; in CartesianList() 58 for (int i = axes.size() - 1; i >= 0; i--) { in CartesianList() 60 IntMath.checkedMultiply(axesSizeProduct[i + 1], axes.get(i).size()); in CartesianList() 70 return (index / axesSizeProduct[axis + 1]) % axes.get(axis).size(); in getAxisIndexForProductIndex() 80 return axes.size(); in get() 87 return axes.get(axis).get(axisIndex); in get() [all …]
|
D | Sets.java | 1120 private transient final ImmutableList<ImmutableSet<E>> axes; 1133 final ImmutableList<ImmutableSet<E>> axes = axesBuilder.build(); 1138 return axes.size(); 1143 return axes.get(index).asList(); 1151 return new CartesianSet<E>(axes, new CartesianList<E>(listAxes)); 1155 ImmutableList<ImmutableSet<E>> axes, CartesianList<E> delegate) { 1156 this.axes = axes; 1170 return this.axes.equals(that.axes); 1182 for (int i = 0; i < axes.size(); i++) { 1188 for (Set<E> axis : axes) {
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncCurrent.java | 26 import org.apache.xpath.axes.LocPathIterator; 27 import org.apache.xpath.axes.PredicatedNodeTest; 30 import org.apache.xpath.axes.SubContextList;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Sets.java | 961 private transient final ImmutableList<ImmutableSet<E>> axes; 974 final ImmutableList<ImmutableSet<E>> axes = axesBuilder.build(); 979 return axes.size(); 984 return axes.get(index).asList(); 992 return new CartesianSet<E>(axes, new CartesianList<E>(listAxes)); 996 ImmutableList<ImmutableSet<E>> axes, CartesianList<E> delegate) { 997 this.axes = axes; 1011 return this.axes.equals(that.axes); 1023 for (int i = 0; i < axes.size(); i++) { 1029 for (Set<E> axis : axes) {
|
/external/opencv3/modules/python/test/ |
D | transformations.py | 970 def euler_matrix(ai, aj, ak, axes='sxyz'): argument 990 firstaxis, parity, repetition, frame = _AXES2TUPLE[axes] 992 _ = _TUPLE2AXES[axes] 993 firstaxis, parity, repetition, frame = axes 1033 def euler_from_matrix(matrix, axes='sxyz'): argument 1053 firstaxis, parity, repetition, frame = _AXES2TUPLE[axes.lower()] 1055 _ = _TUPLE2AXES[axes] 1056 firstaxis, parity, repetition, frame = axes 1091 def euler_from_quaternion(quaternion, axes='sxyz'): argument 1099 return euler_from_matrix(quaternion_matrix(quaternion), axes) [all …]
|
/external/opencv3/doc/tutorials/viz/transformations/ |
D | transformations.markdown | 11 - How to visualize camera position by axes and by viewing frustum 37 - Obtain transform matrix knowing the axes of camera coordinate system. 40 /// - makeTransformToGlobal. We need the axes of the camera 61 viz::WCameraPosition cpw(0.5); // Coordinate axes
|
/external/opencv3/modules/features2d/src/ |
D | evaluation.cpp | 130 Size_<float> axes; // half length of ellipse axes member in EllipticKeyPoint 148 axes.width = (float)(1/sqrt(x1)); in EllipticKeyPoint() 149 axes.height = (float)(1/sqrt(x2)); in EllipticKeyPoint() 202 Size_<float> axes = src[i].axes; in convert() local 203 float rad = sqrt(axes.height*axes.width); in convert() 331 float maxDist = sqrt(kp1.axes.width*kp1.axes.height), in computeOneToOneMatchedOverlaps()
|
/external/opencv3/samples/cpp/ |
D | drawing.cpp | 70 Size axes; in main() local 71 axes.width = rng.uniform(0, 200); in main() 72 axes.height = rng.uniform(0, 200); in main() 75 ellipse( image, center, axes, angle, angle - 100, angle + 200, in main()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 23 import org.apache.xpath.axes.LocPathIterator; 24 import org.apache.xpath.axes.UnionPathIterator;
|
/external/skia/gm/ |
D | fontscalerdistortable.cpp | 60 SkFontMgr::FontParameters::Axis axes[] = { { tag, styleValue } }; in onDraw() local 62 distortable->duplicate(), SkFontMgr::FontParameters().setAxes(axes, 1))); in onDraw()
|
/external/opencv3/samples/cpp/tutorial_code/core/Matrix/ |
D | Drawing_2.cpp | 167 Size axes; in Drawing_Random_Ellipses() local 168 axes.width = rng.uniform(0, 200); in Drawing_Random_Ellipses() 169 axes.height = rng.uniform(0, 200); in Drawing_Random_Ellipses() 173 ellipse( image, center, axes, angle, angle - 100, angle + 200, in Drawing_Random_Ellipses()
|
/external/chromium-trace/catapult/third_party/flot/ |
D | API.md | 9 | [Customizing the axes](#customizing-the-axes) 10 | [Multiple axes](#multiple-axes) 136 The "xaxis" and "yaxis" options specify which axis to use. The axes 241 ## Customizing the axes ## 277 All axes have the same kind of options. The following describes how to 287 top for x axes, left or right for y axes. The "mode" option determines 306 the number of the axis when there are multiple axes. For example, the x-axis 346 whole tick. The default value is "null" for the x axes and 0.02 for y 347 axes which seems appropriate for most cases. 475 innermost axes will have ticks that extend all across the plot, while [all …]
|
D | jquery.flot.js | 980 function getOrCreateAxis(axes, number) { argument 981 if (!axes[number - 1]) 982 axes[number - 1] = { 984 direction: axes == xaxes ? "x" : "y", 985 options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis) 988 return axes[number - 1]; 1570 var i, axes = allAxes(), showGrid = options.grid.show; 1592 $.each(axes, function (_, axis) { 1601 var allocatedAxes = $.grep(axes, function (axis) { 1633 $.each(axes, function (_, axis) { [all …]
|
D | jquery.flot.min.js | 7 …axes,number){if(!axes[number-1])axes[number-1]={n:number,direction:axes==xaxes?"x":"y",options:$.e… argument 8 …ge.from,yrange.from-yrange.to)}}}axes=allAxes();bw=options.grid.borderWidth;for(var j=0;j<axes.len…
|
D | jquery.flot.selection.js | 226 var axis, from, to, key, axes = plot.getAxes(); 228 for (var k in axes) { 229 axis = axes[k];
|
D | jquery.flot.selection.min.js | 7 …ion extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=ax…
|
/external/skia/include/ports/ |
D | SkFontMgr.h | 130 FontParameters& setAxes(const Axis* axes, int axisCount) { in setAxes() 132 fAxes = axes; in setAxes()
|
/external/opencv3/modules/imgproc/src/ |
D | drawing.cpp | 921 void ellipse2Poly( Point center, Size axes, int angle, in ellipse2Poly() argument 926 double size_a = axes.width, size_b = axes.height; in ellipse2Poly() 988 EllipseEx( Mat& img, Point center, Size axes, in EllipseEx() argument 992 axes.width = std::abs(axes.width), axes.height = std::abs(axes.height); in EllipseEx() 993 int delta = (std::max(axes.width,axes.height)+(XY_ONE>>1))>>XY_SHIFT; in EllipseEx() 997 ellipse2Poly( center, axes, angle, arc_start, arc_end, delta, v ); in EllipseEx() 1764 void ellipse( InputOutputArray _img, Point center, Size axes, in ellipse() argument 1773 CV_Assert( axes.width >= 0 && axes.height >= 0 && in ellipse() 1784 axes.width <<= XY_SHIFT - shift; in ellipse() 1785 axes.height <<= XY_SHIFT - shift; in ellipse() [all …]
|
/external/opencv3/doc/tutorials/viz/widget_pose/ |
D | widget_pose.markdown | 29 - Show coordinate axes in the window using CoordinateSystemWidget. 31 /// Add coordinate axes
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | PathComponent.java | 21 package org.apache.xpath.axes;
|
D | SubContextList.java | 21 package org.apache.xpath.axes;
|
D | RTFIterator.java | 28 package org.apache.xpath.axes;
|
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
D | imgproc_c.h | 1031 CVAPI(void) cvEllipse( CvArr* img, CvPoint center, CvSize axes, 1040 CvSize axes; variable 1041 axes.width = cvRound(box.size.width*0.5); 1042 axes.height = cvRound(box.size.height*0.5); 1044 cvEllipse( img, cvPointFrom32f( box.center ), axes, box.angle, 1192 CVAPI(int) cvEllipse2Poly( CvPoint center, CvSize axes,
|
/external/opencv3/modules/imgproc/test/ |
D | test_contours.cpp | 166 CvSize axes; in cvTsGenerateBlobImage() local 173 axes.width = (cvtest::randInt(rng) % in cvTsGenerateBlobImage() 175 axes.height = (cvtest::randInt(rng) % in cvTsGenerateBlobImage() 178 cvEllipse( img, center, axes, angle, 0, 360, cvScalar(brightness), CV_FILLED ); in cvTsGenerateBlobImage()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | RedundentExprEliminator.java | 33 import org.apache.xpath.axes.AxesWalker; 34 import org.apache.xpath.axes.FilterExprIteratorSimple; 35 import org.apache.xpath.axes.FilterExprWalker; 36 import org.apache.xpath.axes.LocPathIterator; 37 import org.apache.xpath.axes.SelfIteratorNoPredicate; 38 import org.apache.xpath.axes.WalkerFactory; 39 import org.apache.xpath.axes.WalkingIterator;
|