HomeSort by relevance Sort by last modified time
    Searched refs:IsValidIndex (Results 1 - 25 of 26) sorted by null

1 2

  /art/runtime/mirror/
object_array-inl.h 43 if (UNLIKELY(!IsValidIndex(i))) {
64 if (LIKELY(IsValidIndex(i) && CheckAssignable(object))) {
74 DCHECK(IsValidIndex(i));
81 DCHECK(IsValidIndex(i));
88 DCHECK(IsValidIndex(i));
97 if (src->IsValidIndex(src_pos) &&
98 src->IsValidIndex(src_pos+length-1) &&
99 dst->IsValidIndex(dst_pos) &&
100 dst->IsValidIndex(dst_pos+length-1)) {
array.h 73 bool IsValidIndex(int32_t index) const
116 if (!IsValidIndex(i)) {
123 if (IsValidIndex(i)) {
  /external/chromium/chrome/browser/ui/views/tabs/
tab_strip_controller.h 27 virtual bool IsValidIndex(int index) const = 0;
browser_tab_strip_controller.h 44 virtual bool IsValidIndex(int model_index) const OVERRIDE;
browser_tab_strip_controller.cc 190 bool BrowserTabStripController::IsValidIndex(int index) const {
418 if (IsValidIndex(model_index)) {
base_tab_strip.cc 193 return controller_->IsValidIndex(model_index);
  /external/chromium_org/chrome/browser/ui/views/tabs/
fake_base_tab_strip_controller.cc 41 bool FakeBaseTabStripController::IsValidIndex(int index) const {
46 if (!IsValidIndex(index))
tab_strip_controller.h 36 virtual bool IsValidIndex(int index) const = 0;
fake_base_tab_strip_controller.h 27 virtual bool IsValidIndex(int index) const OVERRIDE;
browser_tab_strip_controller.h 50 virtual bool IsValidIndex(int model_index) const OVERRIDE;
browser_tab_strip_controller.cc 231 bool BrowserTabStripController::IsValidIndex(int index) const {
500 if (IsValidIndex(model_index)) {
tab_strip.cc 877 return controller_->IsValidIndex(model_index);
    [all...]
  /external/v8/src/
property-details.h 108 static bool IsValidIndex(int index) {
property.h 67 ASSERT(PropertyDetails::IsValidIndex(index));
objects.cc     [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 172 if (!loaded_ || !IsValidIndex(parent, index, false) || is_root(parent)) {
182 if (!loaded_ || !node || !IsValidIndex(new_parent, index, true) ||
221 if (!loaded_ || !node || !IsValidIndex(new_parent, index, true) ||
377 if (!loaded_ || parent == &root_ || !IsValidIndex(parent, index, true)) {
406 !IsValidIndex(parent, index, true)) {
702 bool BookmarkModel::IsValidIndex(const BookmarkNode* parent,
bookmark_model.h 381 bool IsValidIndex(const BookmarkNode* parent, int index, bool allow_end);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model.cc 309 if (!loaded_ || !IsValidIndex(parent, index, false) || is_root_node(parent)) {
351 if (!loaded_ || !node || !IsValidIndex(new_parent, index, true) ||
390 if (!loaded_ || !node || !IsValidIndex(new_parent, index, true) ||
597 if (!loaded_ || is_root_node(parent) || !IsValidIndex(parent, index, true)) {
628 !IsValidIndex(parent, index, true)) {
922 bool BookmarkModel::IsValidIndex(const BookmarkNode* parent,
    [all...]
bookmark_model.h 471 bool IsValidIndex(const BookmarkNode* parent, int index, bool allow_end);
  /external/chromium_org/ui/app_list/views/
apps_grid_view.cc 296 if (IsValidIndex(index))
316 if (IsValidIndex(index))
440 if (IsValidIndex(drop_target_))
672 bool AppsGridView::IsValidIndex(const Index& index) const {
688 if (!IsValidIndex(index))
    [all...]
apps_grid_view.h 171 bool IsValidIndex(const Index& index) const;
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 644 if (!IsValidIndex(segment)) {
737 if (IsValidIndex(segment)) {
747 bool CMapTable::CMapFormat4::IsValidIndex(int32_t segment) {
759 if (IsValidIndex(segment))
765 if (IsValidIndex(segment))
771 if (IsValidIndex(segment))
    [all...]
cmap_table.h 486 bool IsValidIndex(int32_t segment);
  /external/chromium_org/v8/src/
property-details.h 236 static bool IsValidIndex(int index) {
  /art/runtime/interpreter/
interpreter.cc     [all...]

Completed in 548 milliseconds

1 2