Searched refs:start (Results 176 - 200 of 5526) sorted by relevance

1234567891011>>

/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp22 SkOpSpanBase* start = span->next(); local
26 if (current->activeWinding(start, end)) {
32 SkOpSpanBase* nextStart = start;
40 if (!current->addCurveTo(start, end, simple)) {
53 current->debugID(), start->pt().fX, start->pt().fY,
56 if (!current->addCurveTo(start, end, simple)) {
60 start = nextStart;
62 } while (!simple->isClosed() && (!unsortable || !start->starter(end)->done()));
63 if (current->activeWinding(start, en
105 SkOpSpanBase* start; local
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenStream.as54 /** Return the text of all tokens from start to stop, inclusive.
59 function toStringWithRange(start:int, stop:int):String;
63 * indicate the start/end location. Most often this will just delegate
67 function toStringWithTokenRange(start:Token, stop:Token):String;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java38 public String substring(int start, int stop); argument
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeRuleReturnScope.js2 * the start property is a tree nodes not Token object
11 getStart: function() { return this.start; }
/external/autotest/client/cros/video/
H A Dsequence_generator.py13 def generate_interval_sequence(start, stop, interval_in_s):
24 @param start: timedelta, start time.
33 start_total_ms = int(start.total_seconds() * 1000)
51 def generate_random_sequence(start, stop, samples_per_min):
55 @param start: timedelta, start time.
63 @returns a list of random values between start and stop as per
67 start_total_s = int(start.total_seconds())
/external/autotest/site_utils/admin/
H A Dautotest.init10 # update-rc.d autotest start 95 2 3 4 5 . stop 90 0 1 6 .
33 start-stop-daemon --start --quiet --chuid $BECOME_USER \
41 start-stop-daemon --stop --quiet --pidfile $BASE_DIR/$PID_NAME.pid
50 start)
65 echo "Usage: $0 start|stop|restart"
H A Dsuite_scheduler.conf5 start on (starting network-interface
9 start on runlevel [2345]
14 # exec > /tmp/suite-scheduler-start.log 2>&1
/external/avahi/initscript/lfs/
H A Davahi.in19 start)
37 ${0} start
44 echo "Usage: ${0} {start|stop|reload|restart|status}"
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc27 uptr start, end; local
28 bool res = GetCodeRangeForFile("[vdso]", &start, &end);
30 EXPECT_GT(start, 0U);
31 EXPECT_LT(start, end);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DSimpleTimeLimiterTest.java59 long start = System.nanoTime();
68 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS);
72 long start = System.nanoTime();
84 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS);
88 long start = System.nanoTime();
100 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS);
104 long start = System.nanoTime();
116 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS);
123 long start = System.nanoTime();
125 assertTheCallTookBetween(start, DELAY_M
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNormalizationTransliterator.java78 // start and limit of the input range
79 int start = offsets.start;
81 if(start >= limit) {
97 int c = text.char32At(start);
99 int prev = start;
101 // c holds the character at start.
105 start += Character.charCount(c);
106 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
[all...]
H A DUnicodeReplacer.java24 * Replace characters in 'text' from 'start' to 'limit' with the
30 * @param start inclusive start index of text to be replaced
32 * must be greater than or equal to start
38 * the characters at offsets start..(limit-1) in text
41 int start,
40 replace(Replaceable text, int start, int limit, int[] cursor) argument
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DValueIterator.java80 * <p>Resets the iterator to start iterating from the integer index
87 * to begin at the index argument start.
88 * <p>If setRange(start, end) is not performed before next(element) is
89 * called, the iteration will start from the integer index
95 * @param start first integer in the range to iterate
98 * illegal range. E.g limit &lt;= start
100 public void setRange(int start, int limit); argument
/external/icu/icu4c/source/test/intltest/
H A Dsimplethread.h17 int32_t start(void); // start the thread. Return 0 if successfull.
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeReplacer.java23 * Replace characters in 'text' from 'start' to 'limit' with the
29 * @param start inclusive start index of text to be replaced
31 * must be greater than or equal to start
37 * the characters at offsets start..(limit-1) in text
40 int start,
39 replace(Replaceable text, int start, int limit, int[] cursor) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DValueIterator.java85 * <p>Resets the iterator to start iterating from the integer index
94 * to begin at the index argument start.
95 * <p>If setRange(start, end) is not performed before next(element) is
96 * called, the iteration will start from the integer index
102 * @param start first integer in the range to iterate
105 * illegal range. E.g limit &lt;= start
108 public void setRange(int start, int limit); argument
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNormalizationTransliterator.java77 // start and limit of the input range
78 int start = offsets.start;
80 if(start >= limit) {
96 int c = text.char32At(start);
98 int prev = start;
100 // c holds the character at start.
104 start += Character.charCount(c);
105 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
[all...]
/external/libcxx/test/std/numerics/numarray/class.gslice/gslice.cons/
H A Ddefault.pass.cpp22 assert(gs.start() == 0);
/external/libcxx/test/std/numerics/numarray/class.slice/cons.slice/
H A Ddefault.pass.cpp22 assert(s.start() == 0);
H A Dstart_size_stride.pass.cpp14 // slice(size_t start, size_t size, size_t stride);
22 assert(s.start() == 1);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ethread.h24 int start; member in struct:EncWorkerData
/external/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp37 SegmentIter SegPos = Segments.find(RegPos->start);
40 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
43 SegPos.advanceTo(RegPos->start);
50 SegPos.insert(RegEnd->start, RegEnd->end, &VirtReg);
52 SegPos.insert(RegPos->start, RegPos->end, &VirtReg);
64 SegmentIter SegPos = Segments.find(RegPos->start);
73 RegPos = Range.advanceTo(RegPos, SegPos.start());
77 SegPos.advanceTo(RegPos->start);
88 OS << " [" << SI.start() << ' ' << SI.stop() << "):"
135 // In most cases, the union will start befor
[all...]
/external/llvm/tools/llvm-pdbdump/
H A DEnumDumper.h23 void start(const PDBSymbolTypeEnum &Symbol);
/external/ltrace/
H A Dsummary.h30 struct timedelta calc_time_spent(struct timeval start);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.h51 i915_dump_batchbuffer( unsigned *start,

Completed in 892 milliseconds

1234567891011>>