Searched defs:contents (Results 101 - 125 of 763) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/webui/
H A Dweb_dialog_web_contents_delegate_unittest.cc90 WebContents* contents = local
93 NULL, contents, NEW_FOREGROUND_TAB, gfx::Rect(), false, NULL);
/external/chromium_org/chrome/browser/webdata/
H A Dkeyword_table_unittest.cc172 std::string contents; local
174 WebDatabase::kCurrentVersionNumber, &contents));
175 EXPECT_EQ(kTestContents, contents);
222 std::string contents; local
224 WebDatabase::kCurrentVersionNumber, &contents));
225 EXPECT_EQ(kTestContents, contents);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dupdate_server.py44 contents = f.read() variable
45 if 'USERNAME = None' not in contents:
48 if 'PASSWORD = None' not in contents:
54 contents.replace('PASSWORD = None', 'PASSWORD = \'%s\'' % password)
59 f.write(contents)
/external/chromium_org/chrome/installer/util/
H A Ddelete_tree_work_item_unittest.cc33 const std::wstring& contents) {
37 file << contents; local
32 CreateTextFile(const std::wstring& filename, const std::wstring& contents) argument
H A Dduplicate_tree_detector_unittest.cc28 const string16& contents) {
32 file << contents; local
27 CreateTextFile(const std::string& filename, const string16& contents) argument
/external/chromium_org/chrome/test/base/
H A Din_process_browser_test_browsertest.cc35 explicit LoadFailObserver(content::WebContents* contents) argument
36 : content::WebContentsObserver(contents),
69 content::WebContents* contents = local
78 LoadFailObserver observer(contents);
/external/chromium_org/components/nacl/browser/
H A Dnacl_validation_cache.h45 std::vector<std::string> contents; local
50 contents.push_back(iter->first);
52 return contents;
/external/chromium_org/content/browser/android/
H A Dcontent_settings.cc19 WebContents* contents)
20 : WebContentsObserver(contents),
17 ContentSettings(JNIEnv* env, jobject obj, WebContents* contents) argument
/external/chromium_org/content/public/browser/
H A Dweb_contents_observer.cc67 WebContentsImpl* contents = web_contents_; local
69 WebContentsDestroyed(contents);
/external/chromium_org/tools/gn/
H A Dinput_file.h40 const std::string& contents() const { function in class:InputFile
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild-copy-bundle.py55 contents = test.read('postbuild-copy-bundle/Framework-Info.plist') variable
56 contents = contents.replace('RandomValue', 'NewRandomValue') variable
57 test.write('postbuild-copy-bundle/Framework-Info.plist', contents)
67 contents = test.read('postbuild-copy-bundle/copied.txt') variable
68 contents = contents.replace('old', 'new') variable
69 test.write('postbuild-copy-bundle/copied.txt', contents)
/external/chromium_org/ui/views/controls/
H A Dscroll_view_unittest.cc49 View* contents = new View; local
50 scroll_view.SetContents(contents);
53 EXPECT_EQ("0,0 100x100", contents->parent()->bounds().ToString());
59 View* contents = new View; local
60 scroll_view.SetContents(contents);
63 // Size the contents such that vertical scrollbar is needed.
64 contents->SetBounds(0, 0, 50, 400);
66 EXPECT_EQ(100 - scroll_view.GetScrollBarWidth(), contents->parent()->width());
67 EXPECT_EQ(100, contents->parent()->height());
73 // Size the contents suc
99 View* contents = new View; local
127 View* contents = new View; local
190 CustomView* contents = new CustomView; local
221 CustomView* contents = new CustomView; local
[all...]
/external/chromium_org/v8/src/extensions/
H A Dfree-buffer-extension.cc46 v8::ArrayBuffer::Contents contents = arrayBuffer->Externalize(); local
47 V8::ArrayBufferAllocator()->Free(contents.Data(), contents.ByteLength());
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalSet.java37 public static <E> MinimalSet<E> of(E... contents) { argument
39 Object.class, (E[]) new Object[0], Arrays.asList(contents));
43 public static <E> MinimalSet<E> from(Collection<? extends E> contents) { argument
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) { argument
60 super(type, true, contents);
47 ofClassAndContents( Class<? super E> type, E[] emptyArrayForContents, Iterable<? extends E> contents) argument
/external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
H A DStatement.java10 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/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java55 public void store(String name, String contents) { argument
56 items.put(name, contents);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTestParcelable.java7 int contents; field in class:TestParcelable
9 public TestParcelable(int contents) { argument
10 this.contents = contents;
32 dest.writeInt(contents);
/external/srec/srec/AcousticModels/include/
H A DSR_AcousticModelsImpl.h86 void* contents; member in struct:SR_AcousticModelsImpl_t
88 * Size of contents.
/external/chromium/base/
H A Dsys_info_chromeos.cc57 std::string contents; local
58 if (file_util::ReadFileToString(path, &contents)) {
60 ParseLsbRelease(contents,
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_folder_editor_controller.cc47 string16 contents = is_new_ ? local
54 UTF16ToWideHack(contents),
/external/chromium/chrome/browser/extensions/
H A Dautoupdate_interceptor.cc64 std::string contents; local
65 EXPECT_TRUE(file_util::ReadFileToString(i->second, &contents));
67 return new AutoUpdateTestRequestJob(request, contents);
/external/chromium/chrome/browser/status_icons/
H A Dstatus_tray_unittest.cc19 const string16& contents) {}
18 DisplayBalloon(const string16& title, const string16& contents) argument
/external/chromium/chrome/browser/tab_contents/
H A Dinfobar_delegate.cc69 InfoBarDelegate::InfoBarDelegate(TabContents* contents) argument
71 if (contents)
72 StoreActiveEntryUniqueID(contents);
75 void InfoBarDelegate::StoreActiveEntryUniqueID(TabContents* contents) { argument
76 NavigationEntry* active_entry = contents->controller().GetActiveEntry();
/external/chromium/chrome/browser/ui/gtk/status_icons/
H A Dstatus_icon_gtk.cc47 const string16& contents) {
46 DisplayBalloon(const string16& title, const string16& contents) argument
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dtab_contents_container_native.cc38 void TabContentsContainer::ChangeTabContents(TabContents* contents) { argument
44 tab_contents_ = contents;

Completed in 582 milliseconds

1234567891011>>