/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | Tabber.java | 58 private List stops = new ArrayList(); field in Tabber.MonoTabber 62 stops.clear(); in clear() 70 for (int i = 0; i < stops.size(); ++i) { in toString() 75 .append(stops.get(i)); in toString() 86 stops.add(new Integer(tabPos)); in addAbsolute() 95 int last = getStop(stops.size()-1); in add() 96 stops.add(new Integer(last + fieldWidth)); in add() 103 if (fieldNumber >= stops.size()) fieldNumber = stops.size() - 1; in getStop() 104 return ((Integer)stops.get(fieldNumber)).intValue(); in getStop() 108 if (fieldNumber >= stops.size()) return LEFT; in getType()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | Tabber.java | 57 private List stops = new ArrayList(); field in Tabber.MonoTabber 61 stops.clear(); in clear() 69 for (int i = 0; i < stops.size(); ++i) { in toString() 74 .append(stops.get(i)); in toString() 85 stops.add(new Integer(tabPos)); in addAbsolute() 94 int last = getStop(stops.size()-1); in add() 95 stops.add(new Integer(last + fieldWidth)); in add() 102 if (fieldNumber >= stops.size()) fieldNumber = stops.size() - 1; in getStop() 103 return ((Integer)stops.get(fieldNumber)).intValue(); in getStop() 107 if (fieldNumber >= stops.size()) return LEFT; in getType()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | paint.h | 82 void paint_set_ramp_stops(struct vg_paint *paint, const VGfloat *stops, 84 void paint_ramp_stops(struct vg_paint *paint, VGfloat *stops, 87 void paint_set_ramp_stopsi(struct vg_paint *paint, const VGint *stops, 89 void paint_ramp_stopsi(struct vg_paint *paint, VGint *stops,
|
D | paint.c | 383 void paint_set_ramp_stops(struct vg_paint *paint, const VGfloat *stops, in paint_set_ramp_stops() argument 396 memcpy(paint->gradient.ramp_stops, stops, sizeof(VGfloat)*num); in paint_set_ramp_stops() 402 if (stops[0] > 1) { in paint_set_ramp_stops() 403 stops = default_stops; in paint_set_ramp_stops() 406 last_coord = stops[0]; in paint_set_ramp_stops() 409 VGfloat coord = stops[idx]; in paint_set_ramp_stops() 411 stops = default_stops; in paint_set_ramp_stops() 418 create_gradient_data(stops, num / 5, paint->gradient.color_data, in paint_set_ramp_stops() 530 void paint_ramp_stops(struct vg_paint *paint, VGfloat *stops, in paint_ramp_stops() argument 533 memcpy(stops, paint->gradient.ramp_stops, sizeof(VGfloat)*num); in paint_ramp_stops() [all …]
|
/external/icu/icu4c/source/data/brkitr/ |
D | thaidict.txt | 15995 # วี.ดี. # TODO: why do these have full stops? 16380 # ส.ธรนินทร์ -- TODO: why do these have full stops?
|
/external/skia/src/effects/gradients/ |
D | SkTwoPointConicalGradient_gpu.cpp | 207 SkScalar* stops = stopsArray; in TestCreate() local 209 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate() 212 colors, stops, colorCount, in TestCreate() 488 SkScalar* stops = stopsArray; in TestCreate() local 490 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate() 493 colors, stops, colorCount, in TestCreate() 701 SkScalar* stops = stopsArray; in TestCreate() local 703 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate() 706 colors, stops, colorCount, in TestCreate() 949 SkScalar* stops = stopsArray; in TestCreate() local [all …]
|
D | SkSweepGradient.cpp | 190 SkScalar* stops = stopsArray; in TestCreate() local 192 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tmIgnored); in TestCreate() 194 colors, stops, colorCount)); in TestCreate()
|
D | SkRadialGradient.cpp | 312 SkScalar* stops = stopsArray; in TestCreate() local 314 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate() 316 colors, stops, colorCount, in TestCreate()
|
D | SkGradientShader.cpp | 1191 SkScalar** stops, in RandomGradientParams() argument 1197 *stops = nullptr; in RandomGradientParams() 1203 if (*stops) { in RandomGradientParams() 1204 (*stops)[i] = stop; in RandomGradientParams()
|
D | SkLinearGradient.cpp | 430 SkScalar* stops = stopsArray; in TestCreate() local 432 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate() 434 colors, stops, colorCount, in TestCreate()
|
/external/strace/ |
D | README-linux-ptrace | 28 ptrace commands from the tracer is called ptrace-stop. Ptrace-stops can 122 The following kinds of ptrace-stops exist: signal-delivery-stops, 123 group-stop, PTRACE_EVENT stops, syscall-stops [, SINGLESTEP, SYSEMU, 147 ptrace-stop - see "Syscall-stops" and "execve" sections below for 215 is returned by some other classes of ptrace-stops, therefore the 240 1.x.x PTRACE_EVENT stops 242 If tracer sets TRACE_O_TRACEfoo options, tracee will enter ptrace-stops 243 called PTRACE_EVENT stops. 245 PTRACE_EVENT stops are observed by tracer as waitpid returning with 263 For all four stops described above: stop occurs in parent, not in newly [all …]
|
/external/skia/experimental/docs/ |
D | canvasBackend.js | 108 var stopLen = g.stops.length; 110 var stop = g.stops[index];
|
D | svgBackend.js | 113 var stopLen = g.stops.length; 115 var stop = g.stops[index];
|
/external/chromium-trace/catapult/third_party/flot/ |
D | excanvas.js | 1054 var stops = fillStyle.colors_; 1055 stops.sort(function(cs1, cs2) { 1059 var length = stops.length; 1060 var color1 = stops[0].color; 1061 var color2 = stops[length - 1].color; 1062 var opacity1 = stops[0].alpha * ctx.globalAlpha; 1063 var opacity2 = stops[length - 1].alpha * ctx.globalAlpha; 1067 var stop = stops[i];
|
/external/autotest/client/tests/profiler_test/ |
D | control | 9 stops it, generates the profiler report and removes it).
|
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/ |
D | graph.rst | 236 If *end* is specified traversal stops when reaching that node. 247 If *end* is specified traversal stops when reaching that node. 261 When *end* is specified iteration stops at that node. 268 When *end* is specified iteration stops at that node.
|
/external/autotest/client/tests/cyclictest/ |
D | README | 3 runs a test with 5 threads, stops after 10 loops and outputs:
|
/external/autotest/server/site_tests/platform_CryptohomeSyncStressServer/ |
D | control | 18 This test runs continuously and fails iff it stops running.
|
/external/clang/test/Analysis/ |
D | pr_2542_rdar_6793404.m | 46 // NOTE: The analyzer doesn't really handle this; it just stops tracking
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
D | sonofmmm.cfg | 12 # when it starts and stops
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/ |
D | copybot.cfg | 16 # when it starts and stops
|
/external/llvm/test/MC/AArch64/ |
D | elf-globaladdress.ll | 53 ; This is on the store, so not really important, but it stops the next
|
/external/llvm/test/CodeGen/SystemZ/ |
D | unaligned-01.ll | 4 ; FIXME: -combiner-alias-analysis (the default for SystemZ) stops
|
/external/llvm/test/Transforms/AtomicExpand/X86/ |
D | expand-atomic-non-integer.ll | 4 ; `llvm::convertAtomicStoreToIntegerType`. If X86 stops using this
|
/external/dhcpcd-6.8.2/ |
D | README | 21 This also puts the --no-background flag on and stops the --background flag 86 instead of the kernel. However, if the /dev management system breaks, stops
|