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

  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 95 * Expects |index_list| to be ordered ascending.
98 const std::vector<int>& index_list) {
99 DCHECK(!index_list.empty());
103 int first = std::min(insert_before, index_list.front());
104 int last = std::max(insert_before, index_list.back() + 1);
109 for (size_t i = 0; i < index_list.size(); ++i) {
110 moved_entries.push_back(entries_[index_list[i]]);
111 if (index_list[i] == insert_before)
118 if (skip_count < index_list.size() && index_list[skip_count] == i
    [all...]
custom_home_pages_table_model.h 33 // Collect all entries indexed by |index_list|, and moves them to be right
35 // Expects |index_list| to be ordered ascending.
36 void MoveURLs(int insert_before, const std::vector<int>& index_list);
  /external/chromium_org/chrome/browser/ui/webui/options/
startup_pages_handler.cc 191 std::vector<int> index_list; local
195 index_list.push_back(index);
198 startup_custom_pages_table_model_->MoveURLs(to_index, index_list);
  /external/chromium_org/third_party/sqlite/src/test/
pragma.test 560 pragma index_list(t3);
633 pragma index_list(t3);
638 pragma index_list(t3_bogus);
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 740 (s0.executeQuery("PRAGMA index_list(" +
870 (s0.executeQuery("PRAGMA index_list(" +
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
pragma.c 925 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
    [all...]
test8.c 254 zSql = sqlite3_mprintf("PRAGMA index_list(%s)", zTab);
    [all...]

Completed in 708 milliseconds