HomeSort by relevance Sort by last modified time
    Searched full:intervals (Results 1 - 25 of 626) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 22 * The intervals array must contain an even number of entries (>=2), with
23 * the even indices specifying the "on" intervals, and the odd indices
24 * specifying the "off" intervals. phase is an offset into the intervals
25 * array (mod the sum of all of the intervals). The intervals array
31 * @param intervals array of ON and OFF distances
32 * @param phase offset into the intervals array
34 public DashPathEffect(float intervals[], float phase) {
35 if (intervals.length < 2)
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.stderr.exp 2 # Total intervals: 0 (Interval Size 100000)
fldcw_check.stderr.exp 2 # Total intervals: 0 (Interval Size 10000)
ll.stderr.exp 2 # Total intervals: 45 (Interval Size 1000)
million.stderr.exp 2 # Total intervals: 10 (Interval Size 100000)
rep_prefix.stderr.exp 2 # Total intervals: 0 (Interval Size 100000)
clone_test.stderr.exp 2 # Total intervals: 15 (Interval Size 100000)
8 # Total intervals: 25 (Interval Size 100000)
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.stderr.exp 2 # Total intervals: 47 (Interval Size 1000)
million.stderr.exp 2 # Total intervals: 10 (Interval Size 100000)
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.stderr.exp 2 # Total intervals: 40 (Interval Size 1000)
million.stderr.exp 2 # Total intervals: 10 (Interval Size 100000)
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.stderr.exp 2 # Total intervals: 0 (Interval Size 100000)
fldcw_check.stderr.exp 2 # Total intervals: 0 (Interval Size 10000)
million.stderr.exp 2 # Total intervals: 10 (Interval Size 100000)
rep_prefix.stderr.exp 2 # Total intervals: 0 (Interval Size 100000)
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.stderr.exp 2 # Total intervals: 39 (Interval Size 1000)
clone_test.stderr.exp 2 # Total intervals: 15 (Interval Size 100000)
8 # Total intervals: 25 (Interval Size 100000)
  /external/chromium_org/third_party/skia/include/effects/
SkDashPathEffect.h 19 /** intervals: array containing an even number of entries (>=2), with
20 the even indices specifying the length of "on" intervals, and the odd
21 indices specifying the length of "off" intervals.
22 count: number of elements in the intervals array
23 phase: offset into the intervals array (mod the sum of all of the
24 intervals).
26 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
35 because the sum of all the intervals is 30.
39 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase,
  /external/skia/include/effects/
SkDashPathEffect.h 19 /** intervals: array containing an even number of entries (>=2), with
20 the even indices specifying the length of "on" intervals, and the odd
21 indices specifying the length of "off" intervals.
22 count: number of elements in the intervals array
23 phase: offset into the intervals array (mod the sum of all of the
24 intervals).
26 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
35 because the sum of all the intervals is 30.
39 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase,
  /external/chromium_org/third_party/skia/src/animator/
SkDrawDash.cpp 16 SK_MEMBER_ARRAY(intervals, Float),
31 int count = intervals.count();
34 return new SkDashPathEffect(intervals.begin(), count, phase);
SkDrawDash.h 22 SkTDScalarArray intervals; member in class:SkDash
  /external/skia/src/animator/
SkDrawDash.cpp 16 SK_MEMBER_ARRAY(intervals, Float),
31 int count = intervals.count();
34 return new SkDashPathEffect(intervals.begin(), count, phase);
  /external/openfst/src/include/fst/
interval-set.h 19 // Class to represent and operate on sets of intervals.
34 // Stores and operates on a set of half-open integral intervals [a,b)
80 vector<Interval> *Intervals() { return &intervals_; }
82 const vector<Interval> *Intervals() const { return &intervals_; }
88 // Number of points in the intervals (undefined if not normalized).
98 const vector<Interval> *intervals = iset.Intervals(); local
99 for (typename vector<Interval>::const_iterator it = intervals->begin();
100 it != intervals->end(); ++it)
104 // Requires intervals be normalized
275 const vector<Interval> *intervals = iset.Intervals(); local
295 const vector<Interval> *intervals = iset.Intervals(); local
344 const vector<Interval> *intervals = iset.Intervals(); local
366 const vector<Interval> *intervals = s.Intervals(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntervalSet.java 42 * integer intervals.
48 * elements are encoded with an index pair where both intervals are the same.
55 /** The list of sorted, disjoint intervals. */
56 protected List<Interval> intervals; field in class:IntervalSet
60 intervals = new ArrayList<Interval>(2); // most sets are 1 or 2 elements
63 public IntervalSet(List<Interval> intervals) {
64 this.intervals = intervals;
99 // copy on write so we can cache a..a intervals and sets of that
101 //System.out.println("add "+addition+" to "+intervals.toString())
    [all...]
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 19 INITIALIZE_PASS(IntervalPartition, "intervals",
28 for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
29 delete Intervals[i];
31 Intervals.clear();
36 for(unsigned i = 0, e = Intervals.size(); i != e; ++i)
37 Intervals[i]->print(O);
40 // addIntervalToPartition - Add an interval to the internal list of intervals,
45 Intervals.push_back(I);
55 // run through all of the intervals and propagate successor info as
71 assert(I != intervals_end(&F) && "No intervals in function!?!?!")
    [all...]

Completed in 318 milliseconds

1 2 3 4 5 6 7 8 91011>>