HomeSort by relevance Sort by last modified time
    Searched refs:index_ (Results 1 - 16 of 16) sorted by null

  /external/v8/src/
dateparser.h 69 : index_(0),
76 void Next() { ch_ = (index_ < buffer_.length()) ? buffer_[index_++] : 0; }
136 int index_; member in class:v8::internal::DateParser::BASE_EMBEDDED
189 TimeComposer() : index_(0), hour_offset_(kNone) {}
190 bool IsEmpty() const { return index_ == 0; }
192 return (index_ == 1 && IsMinute(n)) || (index_ == 2 && IsSecond(n));
195 return index_ < kSize ? (comp_[index_++] = n, true) : false
    [all...]
dateparser.cc 41 if (index_ < 2) return false;
42 if (index_ == 3 && !IsDay(comp_[0])) {
51 if (index_ == 3) year = comp_[2];
55 if (index_ < 1) return false;
56 if (index_ == 1) {
84 while (index_ < kSize) {
85 comp_[index_++] = 0;
contexts.cc 78 int* index_, PropertyAttributes* attributes) {
82 *index_ = -1;
133 *index_ = index;
166 *index_ = param_index;
180 *index_ = index;
ast.h 1014 : var_(var), type_(type), index_(index) {
1028 int index() const { return index_; }
1034 int index_; member in class:v8::internal::Slot
1743 int index_; member in class:v8::internal::RegExpCapture
    [all...]
contexts.h 293 // 1) index_ >= 0 && result->IsContext():
298 // 2) index_ >= 0 && result->IsJSObject():
303 // 3) index_ < 0 && result->IsJSObject():
308 // 4) index_ < 0 && result.is_null():
312 int* index_, PropertyAttributes* attributes);
objects.h 4358 int index_; member in class:v8::internal::VectorIterator
    [all...]
mirror-debugger.js     [all...]
  /external/bluetooth/glib/glib/
garray.c 167 guint index_,
175 g_memmove (g_array_elt_pos (array, len + index_),
176 g_array_elt_pos (array, index_),
177 g_array_elt_len (array, array->len - index_));
179 memcpy (g_array_elt_pos (array, index_), data, g_array_elt_len (array, len));
212 guint index_)
218 g_return_val_if_fail (index_ < array->len, NULL);
220 if (index_ != array->len - 1)
221 g_memmove (g_array_elt_pos (array, index_),
222 g_array_elt_pos (array, index_ + 1)
    [all...]
garray.h 86 guint index_,
92 guint index_);
94 guint index_);
96 guint index_,
108 #define g_ptr_array_index(array,index_) ((array)->pdata)[index_]
116 guint index_);
118 guint index_);
124 guint index_,
155 guint index_);
    [all...]
gbsearcharray.h 74 guint index_);
200 guint index_)
206 g_return_val_if_fail (index_ <= barray->n_nodes, NULL);
217 node = G_BSEARCH_ARRAY_NODES (barray) + index_ * bconfig->sizeof_node;
218 g_memmove (node + bconfig->sizeof_node, node, (barray->n_nodes - index_) * bconfig->sizeof_node);
239 guint index_ = g_bsearch_array_get_index (barray, bconfig, node); local
242 barray = g_bsearch_array_grow (barray, bconfig, index_);
243 node = G_BSEARCH_ARRAY_NODES (barray) + index_ * bconfig->sizeof_node;
266 guint index_)
270 g_return_val_if_fail (index_ < barray->n_nodes, NULL)
    [all...]
grel.h 92 gint index_,
  /external/bluetooth/glib/gobject/
gvaluearray.h 55 guint index_);
64 guint index_,
67 guint index_);
  /external/gtest/include/gtest/internal/
gtest-death-test-internal.h 200 : file_(file), line_(line), index_(index), status_fd_(status_fd) {}
217 int index() const { return index_; }
223 int index_; member in class:testing::internal::InternalRunDeathTestFlag
gtest-param-util.h 221 : base_(base), value_(value), index_(index), step_(step) {}
229 index_++;
242 CheckedDowncastToActualType<const Iterator>(&other)->index_;
243 return index_ == other_index;
248 : base_(other.base_), value_(other.value_), index_(other.index_),
253 int index_; member in class:testing::internal::RangeGenerator::Iterator
  /dalvik/vm/alloc/
HeapBitmap.h 31 #define HB_INDEX_TO_OFFSET(index_) \
32 ((uintptr_t)(index_) * HB_OBJECT_ALIGNMENT * HB_BITS_PER_WORD)
  /external/v8/test/cctest/
test-api.cc 3356 int index_; member in class:Snorkel
    [all...]

Completed in 3008 milliseconds