HomeSort by relevance Sort by last modified time
    Searched refs:contents (Results 51 - 75 of 962) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalSet.java 37 public static <E> MinimalSet<E> of(E... contents) {
39 Object.class, (E[]) new Object[0], Arrays.asList(contents));
43 public static <E> MinimalSet<E> from(Collection<? extends E> contents) {
44 return ofClassAndContents(Object.class, (E[]) new Object[0], contents);
49 Iterable<? extends E> contents) {
51 for (E e : contents) {
59 private MinimalSet(Class<? super E> type, E... contents) {
60 super(type, true, contents);
  /external/webkit/Tools/Scripts/webkitpy/common/
newstringio_unittest.py 42 contents = f.read()
43 self.assertEqual(contents, "foo")
  /external/chromium/chrome/browser/extensions/
extension_browser_event_router.h 61 virtual void TabInsertedAt(TabContentsWrapper* contents, int index,
64 TabContentsWrapper* contents,
66 virtual void TabDetachedAt(TabContentsWrapper* contents, int index);
71 virtual void TabMoved(TabContentsWrapper* contents, int from_index,
73 virtual void TabChangedAt(TabContentsWrapper* contents, int index,
79 virtual void TabPinnedStateChanged(TabContentsWrapper* contents, int index);
100 void TabCreatedAt(TabContents* contents, int index, bool foreground);
104 void TabUpdated(TabContents* contents, bool did_navigate);
106 // Packages |changed_properties| as a tab updated event for the tab |contents|
108 void DispatchTabUpdatedEvent(TabContents* contents,
    [all...]
extension_clipboard_api.cc 24 TabContentsWrapper* contents = NULL; local
26 NULL, NULL, &contents, NULL)) {
32 RenderViewHost* render_view_host = contents->render_view_host();
  /system/core/libcutils/
array.c 27 void** contents; member in struct:Array
40 free(array->contents);
71 if (array->contents == NULL) {
79 newContents = realloc(array->contents, sizeof(void*) * newCapacity);
86 array->contents = newContents;
99 array->contents[size] = pointer;
112 return array->contents[index];
118 void* pointer = array->contents[index];
124 memmove(array->contents + index, array->contents + index + 1,
    [all...]
  /external/chromium/chrome/browser/tab_contents/
infobar_delegate.cc 69 InfoBarDelegate::InfoBarDelegate(TabContents* contents)
71 if (contents)
72 StoreActiveEntryUniqueID(contents);
75 void InfoBarDelegate::StoreActiveEntryUniqueID(TabContents* contents) {
76 NavigationEntry* active_entry = contents->controller().GetActiveEntry();
web_contents_unittest.cc 240 contents()->UpdateTitle(rvh(), 0, L" Lots O' Whitespace\n");
241 EXPECT_EQ(ASCIIToUTF16("Lots O' Whitespace"), contents()->GetTitle());
262 EXPECT_EQ(ASCIIToUTF16(kUrl), contents()->GetTitle());
263 EXPECT_TRUE(contents()->ShouldDisplayURL());
269 SiteInstance* instance1 = contents()->GetSiteInstance();
270 EXPECT_TRUE(contents()->pending_rvh() == NULL);
275 EXPECT_FALSE(contents()->cross_navigation_pending());
284 contents()->TestDidNavigate(orig_rvh, params);
285 EXPECT_FALSE(contents()->cross_navigation_pending());
286 EXPECT_EQ(orig_rvh, contents()->render_view_host())
    [all...]
  /external/chromium/chrome/browser/
background_contents_service_unittest.cc 118 MockBackgroundContents* contents = new MockBackgroundContents(&profile); local
119 EXPECT_FALSE(service.IsTracked(contents));
120 contents->SendOpenedNotification(&service);
121 EXPECT_TRUE(service.IsTracked(contents));
122 delete contents;
123 EXPECT_FALSE(service.IsTracked(contents));
134 scoped_ptr<MockBackgroundContents> contents(
137 contents->SendOpenedNotification(&service);
139 contents->Navigate(url);
141 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()))
157 MockBackgroundContents* contents = new MockBackgroundContents(&profile); local
207 MockBackgroundContents* contents = new MockBackgroundContents(&profile, local
    [all...]
background_page_tracker.cc 57 const DictionaryValue* contents = local
59 return contents ? contents->size() : 0;
66 const DictionaryValue* contents = local
68 if (!contents)
71 for (DictionaryValue::key_iterator it = contents->begin_keys();
72 it != contents->end_keys(); ++it) {
74 bool found = contents->GetWithoutPathExpansion(*it, &value);
90 DictionaryValue* contents = update.Get(); local
92 for (DictionaryValue::key_iterator it = contents->begin_keys()
199 DictionaryValue* contents = update.Get(); local
271 DictionaryValue* contents = update.Get(); local
286 DictionaryValue* contents = update.Get(); local
    [all...]
  /external/chromium/chrome/browser/automation/
automation_tab_helper_unittest.cc 79 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()))
82 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()))
95 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()));
96 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()));
108 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()))
111 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()))
122 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()));
123 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()));
137 EXPECT_CALL(mock_observer_, OnFirstPendingLoad(contents()));
138 EXPECT_CALL(mock_observer_, OnNoMorePendingLoads(contents()));
    [all...]
  /external/chromium/chrome/browser/ui/find_bar/
find_backend_unittest.cc 20 string16 FindPrepopulateText(TabContents* contents) {
21 return FindBarState::GetLastPrepopulateText(contents->profile());
31 EXPECT_EQ(string16(), FindPrepopulateText(contents()));
40 EXPECT_EQ(string16(), FindPrepopulateText(contents()));
55 EXPECT_EQ(search_term1, FindPrepopulateText(contents()));
66 EXPECT_EQ(search_term2, FindPrepopulateText(contents()));
77 EXPECT_EQ(search_term3, FindPrepopulateText(contents()));
  /external/chromium/chrome/browser/ui/tab_contents/
test_tab_contents_wrapper.cc 18 TestTabContents* TabContentsWrapperTestHarness::contents() { function in class:TabContentsWrapperTestHarness
26 void TabContentsWrapperTestHarness::SetContents(TestTabContents* contents) {
27 contents_wrapper_.reset(new TabContentsWrapper(contents));
  /external/chromium/chrome/browser/ui/webui/
bookmarks_ui.cc 49 BookmarksUI::BookmarksUI(TabContents* contents) : WebUI(contents) {
53 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
keyboard_ui.cc 20 KeyboardUI::KeyboardUI(TabContents* contents)
21 : WebUI(contents) {
23 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
bug_report_ui.h 25 explicit BugReportUI(TabContents* contents);
conflicts_ui.h 18 explicit ConflictsUI(TabContents* contents);
devtools_ui.h 15 explicit DevToolsUI(TabContents* contents);
flags_ui.h 16 explicit FlagsUI(TabContents* contents);
plugins_ui.h 16 explicit PluginsUI(TabContents* contents);
remoting_ui.h 16 explicit RemotingUI(TabContents* contents);
  /bionic/libc/kernel/arch-x86/asm/
ldt.h 31 unsigned int contents:2; member in struct:user_desc
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ldt.h 31 unsigned int contents:2; member in struct:user_desc
  /external/chromium/chrome/browser/tabs/
default_tab_handler.cc 89 void DefaultTabHandler::CreateHistoricalTab(TabContentsWrapper* contents) {
90 delegate_->AsBrowser()->CreateHistoricalTab(contents);
94 TabContentsWrapper* contents) {
95 return delegate_->AsBrowser()->RunUnloadListenerBeforeClosing(contents);
137 void DefaultTabHandler::TabInsertedAt(TabContentsWrapper* contents,
140 delegate_->AsBrowser()->TabInsertedAt(contents, index, foreground);
144 TabContentsWrapper* contents,
146 delegate_->AsBrowser()->TabClosingAt(tab_strip_model, contents, index);
149 void DefaultTabHandler::TabDetachedAt(TabContentsWrapper* contents, int index) {
150 delegate_->AsBrowser()->TabDetachedAt(contents, index)
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
proxy_settings_ui.h 19 explicit ProxySettingsUI(TabContents* contents);
  /external/kernel-headers/original/asm-x86/
ldt.h 25 unsigned int contents:2; member in struct:user_desc

Completed in 320 milliseconds

1 23 4 5 6 7 8 91011>>