HomeSort by relevance Sort by last modified time
    Searched refs:FIXED (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
TableSizingMethod.java 22 * FIXED: Each element in the table has a predefined number of pixels
27 FIXED
TableModel.java 48 FIXED,
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BoundaryMode.java 20 FIXED,
XYPlotZoomPan.java 181 minXLimit = lowerBoundaryMode == BoundaryMode.FIXED ? lowerBoundary.floatValue() : getCalculatedMinX().floatValue();
182 maxXLimit = upperBoundaryMode == BoundaryMode.FIXED ? upperBoundary.floatValue() : getCalculatedMaxX().floatValue();
194 minYLimit = lowerBoundaryMode == BoundaryMode.FIXED ? lowerBoundary.floatValue() : getCalculatedMinY().floatValue();
195 maxYLimit = upperBoundaryMode == BoundaryMode.FIXED ? upperBoundary.floatValue() : getCalculatedMaxY().floatValue();
207 minXLimit = mode == BoundaryMode.FIXED ? lowerBoundary.floatValue() : getCalculatedMinX().floatValue();
208 maxXLimit = mode == BoundaryMode.FIXED ? upperBoundary.floatValue() : getCalculatedMaxX().floatValue();
220 minYLimit = mode == BoundaryMode.FIXED ? lowerBoundary.floatValue() : getCalculatedMinY().floatValue();
221 maxYLimit = mode == BoundaryMode.FIXED ? upperBoundary.floatValue() : getCalculatedMaxY().floatValue();
269 super.setDomainBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
276 super.setRangeBoundaries(newX.x, newX.y, BoundaryMode.FIXED);
    [all...]
XYPlot.java 426 case FIXED:
446 case FIXED:
468 case FIXED:
488 case FIXED:
551 if (domainOriginBoundaryMode == BoundaryMode.FIXED) {
589 if (rangeOriginBoundaryMode == BoundaryMode.FIXED) {
629 // if fixed, then the value already exists within "user" vals.
630 case FIXED:
679 case FIXED:
855 * Setup the boundary mode, boundary values only applicable in FIXED mode.
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ranking/
NaNStrategy.java 28 * <li>FIXED - NaNs are left "in place," that is the rank transformation is
48 FIXED
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
arrays_csharp.i 40 * Please note that when using fixed arrays, you have to mark your corresponding
48 * %apply int FIXED[] { int* sourceArray, int *targetArray }
110 %typemap(ctype) CTYPE FIXED[] "CTYPE*"
111 %typemap(imtype) CTYPE FIXED[] "IntPtr"
112 %typemap(cstype) CTYPE FIXED[] "CSTYPE[]"
114 pre= " fixed ( CSTYPE* swig_ptrTo_$csinput = $csinput ) {",
116 CTYPE FIXED[] "(IntPtr)swig_ptrTo_$csinput"
118 %typemap(in) CTYPE FIXED[] "$1 = $input;"
119 %typemap(freearg) CTYPE FIXED[] ""
120 %typemap(argout) CTYPE FIXED[] ""
    [all...]
  /external/fec/
encode_rs.c 7 #ifdef FIXED
8 #include "fixed.h"
16 #ifdef FIXED
25 #ifdef FIXED
exercise.c 13 #ifdef FIXED
14 #include "fixed.h"
17 #include "fixed.h"
28 #ifdef FIXED
38 #if !defined(CCSDS) && !defined(FIXED)
42 #if !defined(CCSDS) && !defined(FIXED)
63 #if defined(CCSDS) || defined(FIXED)
93 #if defined(CCSDS) || defined(FIXED)
decode_rs.c 15 #ifdef FIXED
16 #include "fixed.h"
24 #ifdef FIXED
39 #ifdef FIXED
  /external/compiler-rt/test/msan/
mmap_below_shadow.cc 36 MAP_PRIVATE | MAP_ANONYMOUS | (FIXED ? MAP_FIXED : 0), -1, 0);
37 if (FIXED)
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYSeriesRendererTest.java 76 plot.setDomainBoundaries(0, 100, BoundaryMode.FIXED);
77 plot.setRangeBoundaries(0, 100, BoundaryMode.FIXED);
XYPlotTest.java 79 plot.centerOnDomainOrigin(5, 2, BoundaryMode.FIXED);
157 plot.setDomainBoundaries(2, BoundaryMode.FIXED, 8, BoundaryMode.FIXED);
160 // fixed
241 plot.setRangeBoundaries(5, BoundaryMode.FIXED, 80, BoundaryMode.FIXED);
244 // fixed
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 58 // Capped conversion from float to fixed.
66 #define FIXED(value) floatToFixed(value)
254 // kludge to set lower edge of the object to fixed level
290 result->normalArray[i] = FIXED(n.x);
291 result->normalArray[i + 1] = FIXED(n.y);
292 result->normalArray[i + 2] = FIXED(n.z);
309 result->vertexArray[currentVertex * 3] = FIXED(pa.x);
310 result->vertexArray[currentVertex * 3 + 1] = FIXED(pa.y);
311 result->vertexArray[currentVertex * 3 + 2] = FIXED(pa.z);
313 result->vertexArray[currentVertex * 3] = FIXED(pb.x)
    [all...]
  /frameworks/native/opengl/tests/angeles/
demo.c 58 // Capped conversion from float to fixed.
66 #define FIXED(value) floatToFixed(value)
254 // kludge to set lower edge of the object to fixed level
290 result->normalArray[i] = FIXED(n.x);
291 result->normalArray[i + 1] = FIXED(n.y);
292 result->normalArray[i + 2] = FIXED(n.z);
309 result->vertexArray[currentVertex * 3] = FIXED(pa.x);
310 result->vertexArray[currentVertex * 3 + 1] = FIXED(pa.y);
311 result->vertexArray[currentVertex * 3 + 2] = FIXED(pa.z);
313 result->vertexArray[currentVertex * 3] = FIXED(pb.x)
    [all...]
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
OrientationSensorExampleActivity.java 69 aprLevelsPlot.setDomainBoundaries(-1, 1, BoundaryMode.FIXED);
90 aprLevelsPlot.setRangeBoundaries(-180, 359, BoundaryMode.FIXED);
110 aprHistoryPlot.setRangeBoundaries(-180, 359, BoundaryMode.FIXED);
111 aprHistoryPlot.setDomainBoundaries(0, HISTORY_SIZE, BoundaryMode.FIXED);
TouchZoomExampleActivity.java 60 mySimpleXYPlot.setDomainBoundaries(minXY.x, maxXY.x, BoundaryMode.FIXED);
149 BoundaryMode.FIXED);
157 BoundaryMode.FIXED);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/
rx-asm-good.s 77 .FIXED 1.234
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 33 VOID, UNSIGNED, SIGNED, FIXED, FLOAT = range(5)
60 self.sign = type in (SIGNED, FIXED, FLOAT)
79 if self.type == FIXED:
93 if self.type == FIXED:
216 'h': FIXED,
u_format_pack.py 66 elif channel.type in (SIGNED, FIXED):
84 elif channel.type in (SIGNED, FIXED):
122 if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT, FIXED):
167 elif channel.type in (SIGNED, FIXED):
208 if type.type == FIXED:
217 if type.type == FIXED:
359 if src_norm or src_type == FIXED:
383 if dst_channel.norm or dst_channel.type == FIXED:
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraCapabilities.java 94 * Focus is fixed.
97 FIXED,
710 if (supports(FocusMode.FIXED)) {
713 Log.w(TAG, "Focus mode not supported... trying FIXED");
714 settings.setFocusMode(FocusMode.FIXED);
  /bionic/libc/kernel/uapi/linux/
v4l2-mediabus.h 41 V4L2_MBUS_FROM_MEDIA_BUS_FMT(FIXED),
  /external/kernel-headers/original/uapi/linux/
v4l2-mediabus.h 55 V4L2_MBUS_FROM_MEDIA_BUS_FMT(FIXED),
  /external/pdfium/xfa/src/fgas/src/font/
fx_gdifont.h 96 FX_DWORD GetMAT2HashCode(const FIXED* pFixed);
  /frameworks/av/services/audioflinger/
AudioResamplerFirProcessNeon.h 73 template <int CHANNELS, int STRIDE, bool FIXED>
93 if (!FIXED) {
112 if (!FIXED) { // interpolate
181 template <int CHANNELS, int STRIDE, bool FIXED>
201 if (!FIXED) {
232 if (!FIXED) { // interpolate
356 template <int CHANNELS, int STRIDE, bool FIXED>
376 if (!FIXED) {
407 if (!FIXED) { // interpolate
    [all...]

Completed in 2525 milliseconds

1 2 3