Searched defs:index (Results 76 - 100 of 4630) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/net/
H A Donc_utils_unittest.cc26 int index = 0; local
28 it != list_of_tests->end(); ++it, ++index) {
29 SCOPED_TRACE("Test case #" + base::IntToString(index));
/external/chromium_org/chrome/browser/profiles/
H A Davatar_menu_desktop.cc20 size_t index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
21 if (index == std::string::npos) {
27 if (cache.IsUsingGAIAPictureOfProfileAtIndex(index)) {
28 const gfx::Image* gaia_image = cache.GetGAIAPictureOfProfileAtIndex(index);
37 const size_t icon_index = cache.GetAvatarIconIndexOfProfileAtIndex(index);
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_drag_drop.cc25 int index,
41 model->Copy(dragged_nodes[i], parent_node, index);
43 model->Move(dragged_nodes[i], parent_node, index);
45 index = parent_node->GetIndexOf(dragged_nodes[i]) + 1;
52 bookmarks::CloneBookmarkNode(model, data.elements, parent_node, index, true);
22 DropBookmarks(Profile* profile, const BookmarkNodeData& data, const BookmarkNode* parent_node, int index, bool copy) argument
/external/chromium_org/chrome/browser/ui/passwords/
H A Dsave_password_refusal_combobox_model.cc25 base::string16 SavePasswordRefusalComboboxModel::GetItemAt(int index) { argument
26 return items_[index];
29 bool SavePasswordRefusalComboboxModel::IsItemSeparatorAt(int index) { argument
30 return items_[index].empty();
/external/chromium_org/chrome/browser/ui/tabs/
H A Dhover_tab_selector.cc23 void HoverTabSelector::StartTabTransition(int index) { argument
27 if (index == tab_transition_tab_index_)
32 if (index != tab_strip_model_->active_index()) {
37 tab_transition_tab_index_ = index;
H A Dtab_menu_model.cc15 int index)
17 Build(tab_strip, index);
20 void TabMenuModel::Build(TabStripModel* tab_strip, int index) { argument
22 (tab_strip->IsTabSelected(index) &&
29 bool will_pin = tab_strip->WillContextMenuPin(index);
49 !chrome::IsTabAudioMuted(tab_strip->GetWebContentsAt(index));
13 TabMenuModel(ui::SimpleMenuModel::Delegate* delegate, TabStripModel* tab_strip, int index) argument
/external/chromium_org/chrome/browser/ui/translate/
H A Dlanguage_combobox_model.cc14 // view::Combobox can't treate an negative index, but |default_index| can be
25 base::string16 LanguageComboboxModel::GetItemAt(int index) { argument
26 return model_->GetLanguageNameAt(index);
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dbrowser_action_drag_data.h22 BrowserActionDragData(const std::string& id, int index);
34 size_t index() const { return index_; } function in class:BrowserActionDragData
59 // The index of the view being dragged.
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_strip_observer.cc7 void TabStripObserver::TabStripAddedTabAt(TabStrip* tab_strip, int index) { argument
15 void TabStripObserver::TabStripRemovedTabAt(TabStrip* tab_strip, int index) { argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DNavigationClient.java24 * Navigates to the specified index in the navigation entry for this page.
25 * @param index The navigation index to navigate to.
27 public void goToNavigationIndex(int index); argument
/external/chromium_org/net/quic/crypto/
H A Dcommon_cert_set_test.cc83 uint32 index; local
87 &hash, &index));
90 StringPiece gia_copy = sets->GetCert(hash, index);
101 uint32 index; local
105 &hash, &index));
/external/chromium_org/sync/syncable/
H A Dscoped_parent_child_index_updater.cc15 ParentChildIndex* index) : entry_(entry), index_(index) {
12 ScopedParentChildIndexUpdater( ScopedKernelLock& proof_of_lock, EntryKernel* entry, ParentChildIndex* index) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DArrayValue.cpp55 bool ArrayValue::get(size_t index, Dictionary& value) const argument
60 if (index >= m_array->Length())
65 v8::Local<v8::Value> indexedValue = m_array->Get(v8::Integer::NewFromUnsigned(m_isolate, index));
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HTMLOptionsCollectionCustom.cpp58 int index = toInt32(info[1], exceptionState); local
62 impl->add(option, index, exceptionState);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8SQLResultSetRowListCustom.cpp52 exceptionState.throwTypeError("The index provided is not a number.");
59 unsigned long index = info[0]->IntegerValue(); local
60 if (index >= rowList->length()) {
61 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound<unsigned>("index", index, rowList->length()));
68 unsigned valuesIndex = index * numColumns;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClientRectList.cpp52 ClientRect* ClientRectList::item(unsigned index) argument
54 if (index >= m_list.size()) {
60 return m_list[index].get();
H A DNodeWithIndex.h34 // For use when you want to get the index for a node repeatedly and
35 // only want to walk the child list to figure out the index once.
47 int index() const function in class:blink::NodeWithIndex
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderlineRangeFilter.cpp16 size_t CompositionUnderlineRangeFilter::seekValidIndex(size_t index) argument
18 if (index == kNotFound)
22 while (index < numUnderlines) {
23 const CompositionUnderline& underline = m_underlines[index];
27 ++index;
30 return index;
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadDispatcher.h26 unsigned index; member in struct:blink::GamepadDispatcher::ConnectionChange
36 virtual void didConnectGamepad(unsigned index, const WebGamepad&) OVERRIDE;
37 virtual void didDisconnectGamepad(unsigned index, const WebGamepad&) OVERRIDE;
43 void dispatchDidConnectOrDisconnectGamepad(unsigned index, const WebGamepad&, bool connected);
H A DGamepadList.cpp35 void GamepadList::set(unsigned index, Gamepad* gamepad) argument
37 if (index >= WebGamepads::itemsLengthCap)
39 m_items[index] = gamepad;
42 Gamepad* GamepadList::item(unsigned index) argument
44 return index < length() ? m_items[index].get() : 0;
49 for (unsigned index = 0; index < WebGamepads::itemsLengthCap; index++) {
50 visitor->trace(m_items[index]);
[all...]
H A DWebKitGamepadList.cpp14 void WebKitGamepadList::set(unsigned index, WebKitGamepad* gamepad) argument
16 if (index >= WebGamepads::itemsLengthCap)
18 m_items[index] = gamepad;
21 WebKitGamepad* WebKitGamepadList::item(unsigned index) argument
23 return index < length() ? m_items[index].get() : 0;
28 for (unsigned index = 0; index < WebGamepads::itemsLengthCap; index++) {
29 visitor->trace(m_items[index]);
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionResult.cpp37 SpeechRecognitionAlternative* SpeechRecognitionResult::item(unsigned long index) argument
39 if (index >= m_alternatives.size())
42 return m_alternatives[index].get();
H A DSpeechRecognitionResultList.cpp37 SpeechRecognitionResult* SpeechRecognitionResultList::item(unsigned long index) argument
39 if (index >= m_results.size())
42 return m_results[index].get();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DIntegralTypedArrayBase.h42 void set(unsigned index, double value) argument
44 if (index >= TypedArrayBase<T>::m_length)
50 TypedArrayBase<T>::data()[index] = static_cast<T>(static_cast<int64_t>(value));
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof_wsconf.h51 uint32_t index; // Index of this set in the Build Time vector member in class:BuilderScriptSet

Completed in 548 milliseconds

1234567891011>>