HomeSort by relevance Sort by last modified time
    Searched defs:Interval (Results 1 - 7 of 7) sorted by null

  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 64 T_DRM_DATETIME Interval; /**< The interval time */
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 103 byte Interval; // Polling interval in frames.
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 147 IN PLARGE_INTEGER Interval
452 LARGE_INTEGER Interval;
453 Interval.QuadPart = -5000000; // 0.5 sec. from now
455 NtDelayExecution(FALSE, &Interval);
  /external/bluetooth/glib/glib/
guniprop.c 418 struct Interval
427 struct Interval *interval = (struct Interval *)elt; local
429 if (c < interval->start)
431 if (c > interval->end)
452 static const struct Interval wide[] = {
497 static const struct Interval ambiguous[] = {
    [all...]
  /external/webkit/WebCore/xml/
XPathFunctions.cpp 53 class Interval {
57 Interval();
58 Interval(int value);
59 Interval(int min, int max);
71 Interval args;
266 inline Interval::Interval()
271 inline Interval::Interval(int value)
276 inline Interval::Interval(int min, int max
    [all...]
  /external/v8/test/cctest/
test-log.cc 734 class Interval {
736 Interval()
740 ~Interval() { delete next_; }
748 void CloneFrom(Interval* src) {
790 if (next_ == NULL) next_ = new Interval();
799 Interval* get_next() { return next_; }
805 Interval* next_;
871 Interval bounds;
    [all...]
  /external/v8/src/
jsregexp.h 676 // A simple closed interval.
677 class Interval {
679 Interval() : from_(kNone), to_(kNone) { }
680 Interval(int from, int to) : from_(from), to_(to) { }
681 Interval Union(Interval that) {
687 return Interval(Min(from_, that.from_), Max(to_, that.to_));
695 static Interval Empty() { return Interval(); }
730 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success)
    [all...]

Completed in 193 milliseconds