HomeSort by relevance Sort by last modified time
    Searched refs:shape (Results 251 - 275 of 394) sorted by null

<<111213141516

  /libcore/ojluni/src/main/java/java/util/stream/
Nodes.java 72 // General shape-based node creation methods
78 * @param shape the shape of the node to be created
82 static <T> Node<T> emptyNode(StreamShape shape) {
83 switch (shape) {
89 throw new IllegalStateException("Unknown shape " + shape);
105 * @param shape the shape of the concatenated node to be created
113 static <T> Node<T> conc(StreamShape shape, Node<T> left, Node<T> right)
    [all...]
ReduceOps.java 689 * Create a {@code ReduceOp} of the specified stream shape which uses
692 * @param shape The shape of the stream pipeline
694 ReduceOp(StreamShape shape) {
695 inputShape = shape;
  /external/python/cpython2/Modules/_ctypes/
_ctypes.c 327 the given prefix (if non-null), an additional shape prefix, and a suffix.
332 _ctypes_alloc_format_string_with_shape(int ndim, const Py_ssize_t *shape,
351 /* Add the prefix "(shape[0],shape[1],...,shape[ndim-1])" */
355 sprintf(buf, "%"PY_FORMAT_SIZE_T"d,", shape[k]);
357 sprintf(buf, "%"PY_FORMAT_SIZE_T"d)", shape[k]);
975 if (itemdict->shape != NULL) {
976 /* pointer to an array: the shape needs to be prefixed */
978 itemdict->ndim, itemdict->shape, "&", current_format)
    [all...]
  /cts/apps/CameraITS/tests/rolling_shutter_skew/
test_rolling_shutter_skew.py 136 (frame_h, _, _) = frames[0].shape
324 (frame_h, frame_w, _) = frame.shape
  /external/aac/libAACdec/src/
block.cpp 663 int getWindow2Nr(int length, int shape)
667 if (shape == 2) {
  /external/autotest/client/cros/audio/
audio_quality_measurement.py 160 N = x.shape[axis]
173 if len(x.shape) > 1:
    [all...]
  /external/skia/tests/
TessellatingPathRendererTests.cpp 266 // A shape with a vertex collinear to the right hand edge.
376 GrShape shape(path, style);
383 &shape, local
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 28 import java.awt.Shape;
82 public void setJavaShape(Shape shape) {
84 mPath.append(shape, false /*connect*/);
790 * @param left The left of oval defining shape and size of the arc
791 * @param top The top of oval defining shape and size of the arc
792 * @param right The right of oval defining shape and size of the arc
793 * @param bottom The bottom of oval defining shape and size of the arc
  /prebuilts/go/darwin-x86/src/html/template/
attr.go 116 "shape": contentTypePlain,
  /prebuilts/go/linux-x86/src/html/template/
attr.go 116 "shape": contentTypePlain,
  /external/ImageMagick/MagickCore/
xwindow-private.h 392 shape, member in struct:_XWindowInfo
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 75 | node [shape=plaintext, fixedsize=true, fontsize=11, fontname="Courier",
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 96 self.shape("square")
  /external/libvorbis/doc/
01-introduction.tex 296 \item decode window shape (long windows only)
341 \paragraph{Window shape decode (long windows only)} \label{vorbis:spec:window}
352 added. The window shape assures seamless reconstruction.
369 In the unequal-sized window case, the window shape of the long window
371 correctly infer window shape to be applied to the current window from
375 flag bits to specify pre- and post- window shape. Although not
  /libcore/ojluni/src/main/java/java/awt/font/
NumericShaper.java 41 * interpret the deprecated numeric shape selector character (U+206E).
48 * shape European digits to Arabic in an Arabic context:<br>
62 * // shape all EUROPEAN digits (except zero) to ARABIC digits
64 * shaper.shape(text, start, count);
66 * // shape European digits to ARABIC digits if preceding text is Arabic, or
67 * // shape European digits to TAMIL digits if preceding text is Tamil, or
74 * shaper.shape(text, start, count);
373 /** flag indicating whether to shape contextually (high bit) and which
374 * digit ranges to shape (bits 0-18)
389 * shape. {@code null} for the bit mask-based API
1100 public void shape(char[] text, int start, int count) { method in class:NumericShaper
1131 public void shape(char[] text, int start, int count, int context) { method in class:NumericShaper
1163 public void shape(char[] text, int start, int count, Range context) { method in class:NumericShaper
    [all...]
  /prebuilts/devtools/tools/lib/
asset-studio.jar 
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_memoryview.py 178 self.assertEqual(m.shape, (6,))
  /external/autotest/client/cros/multimedia/
display_facade_native.py 355 data = numpy.fliplr(data.reshape(-1, 3)).reshape(data.shape)
  /external/harfbuzz_ng/util/
options.hh 246 hb_bool_t shape (hb_font_t *font, hb_buffer_t *buffer) function in struct:shape_options_t
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiTransform.java 136 * calling <code>{@link ArabicShaping#shape}</code>.</li>
354 /* Honor all shape options other than letters (not necessarily digits
358 /* Honor all shape options other than digits (not necessarily letters
373 text = shaper.shape(text);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiTransform.java 142 * calling <code>{@link ArabicShaping#shape}</code>.</li>
361 /* Honor all shape options other than letters (not necessarily digits
365 /* Honor all shape options other than digits (not necessarily letters
380 text = shaper.shape(text);

Completed in 795 milliseconds

<<111213141516