Searched refs:comp_ (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/ |
D | dateparser.cc | 39 comp_[index_++] = 1; in Write() 47 if (is_iso_date_ || (index_ == 3 && !IsDay(comp_[0]))) { in Write() 49 year = comp_[0]; in Write() 50 month = comp_[1]; in Write() 51 day = comp_[2]; in Write() 54 month = comp_[0]; in Write() 55 day = comp_[1]; in Write() 56 if (index_ == 3) year = comp_[2]; in Write() 62 day = comp_[0]; in Write() 63 } else if (!IsDay(comp_[0])) { in Write() [all …]
|
D | dateparser.h | 342 return index_ < kSize ? (comp_[index_++] = n, true) : false; in Add() 346 while (index_ < kSize) comp_[index_++] = 0; in AddFinal() 361 int comp_[kSize]; variable 372 comp_[index_] = n; in Add() 386 int comp_[kSize]; variable
|
/external/chromium_org/v8/src/ |
D | dateparser.cc | 39 comp_[index_++] = 1; in Write() 47 if (is_iso_date_ || (index_ == 3 && !IsDay(comp_[0]))) { in Write() 49 year = comp_[0]; in Write() 50 month = comp_[1]; in Write() 51 day = comp_[2]; in Write() 54 month = comp_[0]; in Write() 55 day = comp_[1]; in Write() 56 if (index_ == 3) year = comp_[2]; in Write() 62 day = comp_[0]; in Write() 63 } else if (!IsDay(comp_[0])) { in Write() [all …]
|
D | dateparser.h | 342 return index_ < kSize ? (comp_[index_++] = n, true) : false; in Add() 346 while (index_ < kSize) comp_[index_++] = 0; in AddFinal() 361 int comp_[kSize]; variable 372 comp_[index_] = n; in Add() 386 int comp_[kSize]; variable
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | heap.h | 51 Heap(Compare comp) : comp_(comp), size_(0) { } in Heap() 79 if (comp_(val, A_[Parent(i)])) { in Update() 154 if (l < size_ && comp_(A_[l], A_[i]) ) in Heapify() 159 if (r < size_ && comp_(A_[r], A_[largest]) ) in Heapify() 172 while (i > 0 && !comp_(A_[p = Parent(i)], val)) { in Insert() 182 Compare comp_;
|
D | arcsort.h | 92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) { in ArcSortFstImpl() 95 SetProperties(comp_.Properties(props)); in ArcSortFstImpl() 101 : fst_(impl.fst_->Copy()), comp_(impl.comp_) { in ArcSortFstImpl() 157 sort(carcs.begin(), carcs.end(), comp_); in Expand() 163 C comp_; variable
|
/external/openfst/src/include/fst/ |
D | heap.h | 57 Heap(Compare comp) : comp_(comp), size_(0) { } in Heap() 158 return max ? comp_(y, x) : comp_(x, y); in Better() 194 Compare comp_;
|
D | arcsort.h | 46 : fst_(fst), comp_(comp), i_(0) {} in ArcSortMapper() 51 : fst_(fst ? *fst : mapper.fst_), comp_(mapper.comp_), i_(0) {} 62 sort(arcs_.begin(), arcs_.end(), comp_); in SetState() 71 uint64 Properties(uint64 props) const { return comp_.Properties(props); } in Properties() 75 const Compare &comp_; variable
|
D | state-map.h | 469 sort(arcs_.begin(), arcs_.end(), comp_); in SetState() 516 Compare comp_; variable 552 sort(arcs_.begin(), arcs_.end(), comp_); in SetState() 592 Compare comp_; variable
|
/external/chromium_org/third_party/leveldatabase/src/doc/bench/ |
D | db_bench_tree_db.cc | 145 kyotocabinet::LZOCompressor<kyotocabinet::LZO::RAW> comp_; member in leveldb::Benchmark 410 db_->tune_compressor(&comp_); in Open()
|