Searched defs:contents (Results 151 - 175 of 309) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/webui/
H A Dextension_icon_source.cc56 std::string contents = ResourceBundle::GetSharedInstance() local
61 reinterpret_cast<const unsigned char*>(contents.data());
62 return ToBitmap(data, contents.length());
H A Dhistory2_ui.cc378 HistoryUI2::HistoryUI2(TabContents* contents) : WebUI(contents) { argument
384 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
H A Dhistory_ui.cc366 HistoryUI::HistoryUI(TabContents* contents) : WebUI(contents) { argument
372 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
H A Dplugins_ui.cc353 PluginsUI::PluginsUI(TabContents* contents) : WebUI(contents) { argument
359 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
H A Dslideshow_ui.cc276 SlideshowUI::SlideshowUI(TabContents* contents) : WebUI(contents) { argument
283 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
/external/chromium/chrome/browser/ui/webui/options/
H A Doptions_ui.cc181 OptionsUI::OptionsUI(TabContents* contents) argument
182 : WebUI(contents), initialized_handlers_(false) {
244 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
247 ThemeSource* theme = new ThemeSource(contents->profile());
248 contents->profile()->GetChromeURLDataManager()->AddDataSource(theme);
254 contents->profile()->GetChromeURLDataManager()->AddDataSource(
260 InitializeAboutDataSource(contents->profile());
/external/chromium/chrome/browser/webdata/
H A Dweb_database_migration_unittest.cc178 // The textual contents of |file| are read from
179 // "chrome/test/data/web_database" and returned in the string |contents|.
181 bool GetWebDatabaseData(const FilePath& file, std::string* contents) { argument
185 file_util::ReadFileToString(path, contents);
199 // sqlite3 command-line application to dump the contents of the "Web Data"
218 std::string contents; local
219 ASSERT_TRUE(GetWebDatabaseData(FilePath(file), &contents));
223 ASSERT_TRUE(connection.Execute(contents.data()));
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsessionmessages.h37 #include "talk/p2p/base/sessiondescription.h" // Needed to delete contents.
127 for (ContentInfos::iterator content = contents.begin();
128 content != contents.end(); content++) {
134 // Caller takes ownership of contents.
137 contents.swap(out);
143 ContentInfos contents; member in struct:cricket::SessionInitiate
222 const ContentInfos& contents,
235 const ContentInfos& contents,
253 const ContentInfos& contents,
/external/elfutils/libdwfl/
H A Dcore-file.c328 void *contents = elf->map_address + elf->start_offset + start; local
333 const void *eos = memchr (contents, '\0', size);
334 if (unlikely (eos == NULL) || unlikely (eos == contents))
336 size = eos + 1 - contents;
341 *buffer = contents;
347 memcpy (*buffer, contents, *buffer_available);
406 /* Now sniff segment contents for modules. */
450 /* Now we have NT_AUXV contents. From here on this processing could be
/external/guava/guava/src/com/google/common/collect/
H A DImmutableMultiset.java518 final Multiset<E> contents; field in class:ImmutableMultiset.Builder
528 Builder(Multiset<E> contents) { argument
529 this.contents = contents;
540 contents.add(checkNotNull(element));
558 contents.add(checkNotNull(element), occurrences);
573 contents.setCount(checkNotNull(element), count);
625 * Returns a newly-created {@code ImmutableMultiset} based on the contents
629 return copyOf(contents);
H A DImmutableSet.java508 * captures their "logical contents" and they are reconstructed using public
553 final ArrayList<E> contents = Lists.newArrayList(); field in class:ImmutableSet.Builder
571 contents.add(checkNotNull(element));
585 contents.ensureCapacity(contents.size() + elements.length);
602 contents.ensureCapacity(contents.size() + collection.size());
623 * Returns a newly-created {@code ImmutableSet} based on the contents of
627 return copyOf(contents);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableList.java289 private final ArrayList<E> contents = Lists.newArrayList(); field in class:ImmutableList.Builder
294 contents.add(checkNotNull(element));
315 return copyOf(contents);
/external/libvorbis/lib/
H A Dinfo.c77 void vorbis_comment_add_tag(vorbis_comment *vc, const char *tag, const char *contents){ argument
78 char *comment=alloca(strlen(tag)+strlen(contents)+2); /* +2 for = and \0 */
81 strcat(comment, contents);
/external/libvpx/examples/includes/geshi/contrib/
H A Dcssgen.php179 // Get file contents and see if GeSHi is in here
181 $contents = ''; variable
184 $contents .= $line;
186 if ( strpos($contents, '<?php
/external/protobuf/src/google/protobuf/compiler/
H A Dimporter_unittest.cc81 void AddFile(const string& name, const char* contents) { argument
82 files_[name] = contents;
87 const char* contents = FindPtrOrNull(files_, filename); local
88 if (contents == NULL) {
91 return new io::ArrayInputStream(contents, strlen(contents));
349 void AddFile(const string& filename, const char* contents) { argument
350 File::WriteStringToFileOrDie(contents, filename);
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.c77 unsigned int contents:2; member in struct:modify_ldt_ldt_s
100 ldt_entry.contents = MODIFY_LDT_CONTENTS_DATA;
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageSourceAndroid.cpp218 const char* contents = data->data(); local
219 if (data->size() > 3 && strncmp(contents, "GIF8", 4) == 0
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebview.c52 char* contents; local
56 g_file_get_contents("blank.ico", &contents, &length, &error);
59 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, length);
61 char* contents = g_strdup("<html><body><a id=\"link\" href=\"http://abc.def\">test</a><div style=\"background-color: green; height: 1200px;\"></div></body></html>"); local
62 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, strlen(contents));
64 char* contents = g_strdup("<html><body id=\"some-content\"><div style=\"background-color: green; height: 50px;\"></div><iframe src=\"bigdiv.html\"></iframe></body></html>"); local
65 soup_message_body_append(msg->response_body, SOUP_MEMORY_TAKE, contents, strlen(contents));
67 char* contents local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jar ... runtime.content.IContentDescription) java.io.InputStream contents org.eclipse.core.runtime.content. ...
/external/chromium/base/
H A Dfile_util.cc153 bool ReadFileToString(const FilePath& path, std::string* contents) { argument
162 if (contents)
163 contents->append(buf, len);
/external/chromium/chrome/browser/
H A Dbackground_contents_service.cc133 // contents.
146 std::vector<BackgroundContents*> contents; local
149 contents.push_back(it->second.contents);
150 return contents;
159 // to store an up-to-date list of the urls. Start tracking contents when they
181 // about it, and the crashed contents can be restarted.
328 // Loads all background contents whose urls have been stored in prefs.
333 const DictionaryValue* contents = local
335 if (!contents)
375 const DictionaryValue* contents = local
382 LoadBackgroundContentsFromDictionary( Profile* profile, const std::string& extension_id, const DictionaryValue* contents) argument
433 BackgroundContents* contents = CreateBackgroundContents( local
453 BackgroundContents* contents = new BackgroundContents(site, routing_id, this); local
506 BackgroundContents* contents = GetAppBackgroundContents(appid); local
[all...]
H A Dbrowser_browsertest.cc99 TabContentsWrapper* contents,
427 // Check that the tab contents is in the new browser, and not in the old.
702 // tab contents.
98 TabClosingAt(TabStripModel* tab_strip_model, TabContentsWrapper* contents, int index) argument
/external/chromium/chrome/browser/download/
H A Dsave_file_manager.cc190 TabContents* contents = tab_util::GetTabContentsByID(render_process_id, local
192 if (contents) {
194 TabContentsWrapper::GetCurrentWrapperForContents(contents);
/external/chromium/chrome/browser/extensions/
H A Dextension_browser_event_router.cc33 const TabContents* contents) {
37 if (!complete_waiting_on_load_ || contents->is_loading())
49 const TabContents* contents) {
56 if (contents->GetURL() != url_) {
57 url_ = contents->GetURL();
135 TabContents* contents = browser->GetTabContentsAt(i); local
136 int tab_id = ExtensionTabUtil::GetTabId(contents);
183 TabContents* contents) {
185 Source<NavigationController>(&contents->controller()));
192 Source<TabContents>(contents));
32 UpdateLoadState( const TabContents* contents) argument
48 DidNavigate( const TabContents* contents) argument
182 RegisterForTabNotifications( TabContents* contents) argument
195 UnregisterForTabNotifications( TabContents* contents) argument
262 TabCreatedAt(TabContents* contents, int index, bool foreground) argument
271 TabInsertedAt(TabContentsWrapper* contents, int index, bool foreground) argument
299 TabDetachedAt(TabContentsWrapper* contents, int index) argument
323 TabClosingAt(TabStripModel* tab_strip_model, TabContentsWrapper* contents, int index) argument
371 TabMoved(TabContentsWrapper* contents, int from_index, int to_index) argument
393 TabUpdated(TabContents* contents, bool did_navigate) argument
409 DispatchTabUpdatedEvent( TabContents* contents, DictionaryValue* changed_properties) argument
433 GetTabEntry( const TabContents* contents) argument
451 TabContents* contents = Source<TabContents>(source).ptr(); local
468 TabChangedAt(TabContentsWrapper* contents, int index, TabChangeType change_type) argument
483 TabPinnedStateChanged( TabContentsWrapper* contents, int index) argument
[all...]
H A Dextension_web_ui.cc193 TabContents* contents = tab_contents(); local
196 if (contents == (*tab_iterator)->tab_contents())

Completed in 491 milliseconds

1234567891011>>