HomeSort by relevance Sort by last modified time
    Searched refs:contents (Results 101 - 125 of 1022) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_container_win.cc 31 void NativeTabContentsContainerWin::AttachContents(TabContents* contents) {
32 // We need to register the tab contents window with the BrowserContainer so
37 Attach(contents->GetNativeView());
40 void NativeTabContentsContainerWin::DetachContents(TabContents* contents) {
48 HWND container_hwnd = contents->GetNativeView();
50 // Hide the contents before adjusting its parent to avoid a full desktop
55 static_cast<TabContentsViewViews*>(contents->view())->Unparent();
100 // We need to be focusable when our contents is not a view hierarchy, as
101 // clicking on the contents needs to focus us.
tab_contents_container_views.cc 38 void TabContentsContainer::ChangeTabContents(TabContents* contents) {
45 tab_contents_ = contents;
49 views::View *v = static_cast<TabContentsViewTouch*>(contents->view());
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessiondescription.h 60 const ContentInfos& contents, const std::string& name);
62 const ContentInfos& contents, const std::string& type);
64 // Describes a collection of contents, each with its own name and
66 // contents are unique be name, but doesn't enforce that.
70 explicit SessionDescription(const ContentInfos& contents) :
71 contents_(contents) {}
81 const ContentInfos& contents() const { return contents_; } function in class:cricket::SessionDescription
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 10 private List<Statement> contents = new ArrayList<Statement>(); field in class:Statement
18 // if (contents == null){
19 // contents = new ArrayList<Statement>();
21 contents.add(statement);
33 return contents;
44 if (contents != null){
46 for (Statement statement : contents){
  /external/chromium/chrome/browser/geolocation/
geolocation_permission_context_unittest.cc 76 int process_id() { return contents()->render_view_host()->process()->id(); }
80 int render_id() { return contents()->render_view_host()->routing_id(); }
163 contents()->GetTabSpecificContentSettings();
179 SiteInstance* site_instance = contents()->GetSiteInstance();
198 EXPECT_EQ(0U, contents()->infobar_count());
201 EXPECT_EQ(1U, contents()->infobar_count());
215 EXPECT_EQ(0U, contents()->infobar_count());
222 EXPECT_EQ(1U, contents()->infobar_count());
224 contents()->GetInfoBarDelegateAt(0)->AsConfirmInfoBarDelegate();
233 contents()->RemoveInfoBar(infobar_0)
    [all...]
  /dalvik/vm/native/
java_lang_System.cpp 245 srcType, dstArray->contents, dstPos,
246 srcArray->contents, srcPos, length);
252 memmove((u1*) dstArray->contents + dstPos,
253 (const u1*) srcArray->contents + srcPos,
259 move16((u1*) dstArray->contents + dstPos * 2,
260 (const u1*) srcArray->contents + srcPos * 2,
266 move32((u1*) dstArray->contents + dstPos * 4,
267 (const u1*) srcArray->contents + srcPos * 4,
276 move32((u1*) dstArray->contents + dstPos * 8,
277 (const u1*) srcArray->contents + srcPos * 8
    [all...]
  /external/chromium/chrome/browser/automation/
automation_util.h 38 TabContents* contents,
45 TabContents* contents,
51 TabContents* contents,
  /external/chromium/chrome/browser/tabs/
tab_strip_model_delegate.h 45 // Asks for a new TabStripModel to be created and the given tab contents to
51 virtual Browser* CreateNewStripWithContents(TabContentsWrapper* contents,
72 // Returns whether some contents can be duplicated.
75 // Duplicates the contents at the provided index and places it into its own
85 virtual void CreateHistoricalTab(TabContentsWrapper* contents) = 0;
92 virtual bool RunUnloadListenerBeforeClosing(TabContentsWrapper* contents) = 0;
100 // Returns whether some contents can be closed.
  /external/chromium/chrome/browser/ui/webui/
remoting_ui.cc 65 RemotingUI::RemotingUI(TabContents* contents) : WebUI(contents) {
69 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 68 contents()->TestDidNavigate(contents()->render_view_host(), params);
72 (new TestOfflineLoadPage(contents(), GURL(url), this))->Show();
78 return InterstitialPage::GetInterstitialPage(contents());
110 EXPECT_EQ(kURL2, contents()->GetURL().spec());
138 EXPECT_EQ(kURL1, contents()->GetURL().spec());
  /development/tools/idegen/src/
Files.java 43 static void toFile(String contents, File file) throws IOException {
45 out.write(contents);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SerializerMessages_sv.java 28 Object[][] contents = new Object[][] { local
96 return contents;
  /external/chromium/chrome/browser/history/
history_publisher.cc 31 const string16& contents) const {
35 contents.c_str(),
  /external/chromium/chrome/browser/sessions/
session_command.cc 20 memcpy(contents(), pickle.data(), pickle.size());
31 return new Pickle(contents(), static_cast<int>(size()));
session_command.h 34 // of size |size| that must be filled via contents().
38 // id whose contents is populated from the contents of pickle.
41 // The contents of the command.
42 char* contents() { return &(contents_[0]); } function in class:SessionCommand
43 const char* contents() const { return &(contents_[0]); } function in class:SessionCommand
55 // Returns the contents as a pickle. It is up to the caller to delete the
  /external/chromium/chrome/browser/tab_contents/
confirm_infobar_delegate.cc 39 ConfirmInfoBarDelegate::ConfirmInfoBarDelegate(TabContents* contents)
40 : InfoBarDelegate(contents) {
infobar_delegate.h 99 // object. If |contents| is non-NULL, its active entry's unique ID will be
101 explicit InfoBarDelegate(TabContents* contents);
106 void StoreActiveEntryUniqueID(TabContents* contents);
  /external/chromium/chrome/browser/ui/views/location_bar/
page_action_with_badge_view.cc 37 void PageActionWithBadgeView::UpdateVisibility(TabContents* contents,
39 image_view_->UpdateVisibility(contents, url);
  /external/chromium/chrome/browser/ui/views/tabs/
browser_tab_strip_controller.cc 26 TabContents* contents) {
27 if (!contents || !contents->is_loading())
29 if (contents->waiting_for_response())
255 TabContentsWrapper* contents = model_->GetTabContentsAt(model_index); local
257 TabContentsNetworkState(contents->tab_contents()));
302 void BrowserTabStripController::TabInsertedAt(TabContentsWrapper* contents,
305 DCHECK(contents);
310 SetTabRendererDataFromModel(contents->tab_contents(), model_index, &data);
314 void BrowserTabStripController::TabDetachedAt(TabContentsWrapper* contents,
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.h 33 explicit EnterpriseEnrollmentUI(TabContents* contents);
46 // Sets the controller on a tab contents.
47 static void SetController(TabContents* contents, Controller* controller);
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 51 my @contents = <IN>;
57 foreach my $line (@contents) {
  /external/webkit/Tools/Scripts/
clean-header-guards 37 contents = file.read
38 match_results = contents.match(/#ifndef (\S+)\n#define \1/s)
43 contents.gsub!(/#{current_guard}\b/, new_guard)
49 new_file.write(contents)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
urlfetcher.py 40 """Fetches the contents of the URL as a string."""
47 """Fetches the contents of the URL into a temporary file and return the filename.
52 contents = self.fetch(url)
53 file_object.write(contents)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config.py 147 contents = self._read_configuration()
148 if not contents:
149 contents = "Release"
150 if contents == "Deployment":
151 contents = "Release"
152 if contents == "Development":
153 contents = "Debug"
154 _configuration = contents
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.cc 48 TabContentsWrapper::TabContentsWrapper(TabContents* contents)
49 : TabContentsObserver(contents),
52 tab_contents_(contents) {
53 DCHECK(contents);
56 property_accessor()->SetProperty(contents->property_bag(), this);
59 autocomplete_history_manager_.reset(new AutocompleteHistoryManager(contents));
60 autofill_manager_.reset(new AutofillManager(contents));
61 automation_tab_helper_.reset(new AutomationTabHelper(contents));
62 download_tab_helper_.reset(new DownloadTabHelper(contents));
64 find_tab_helper_.reset(new FindTabHelper(contents));
    [all...]

Completed in 1186 milliseconds

1 2 3 45 6 7 8 91011>>