HomeSort by relevance Sort by last modified time
    Searched full:contents (Results 1 - 25 of 11591) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/copies/src/directory/
file3 1 file3 contents
file4 1 file4 contents
  /external/chromium_org/tools/gyp/test/copies/src/directory/subdir/
file5 1 file5 contents
  /external/chromium_org/tools/gyp/test/copies/src/
file1 1 file1 contents
file2 1 file2 contents
  /external/chromium_org/tools/gyp/test/copies/src/parentdir/subdir/
file6 1 file6 contents
  /external/chromium_org/tools/gyp/test/generator-output/copies/
file1 1 file1 contents
file2 1 file2 contents
  /external/chromium_org/tools/gyp/test/generator-output/copies/subdir/
file3 1 file3 contents
file4 1 file4 contents
  /external/robolectric/src/test/resources/res/raw/
raw_no_ext 1 no ext file contents
raw_resource.txt 1 raw txt file contents
  /external/chromium_org/tools/grit/grit/testdata/
versions.html 4 [CONTENTS]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_observer.cc 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents,
13 TabContentsWrapper* contents,
17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents,
21 void TabStripModelObserver::TabDeselected(TabContentsWrapper* contents) {
30 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents,
35 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents,
46 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents,
50 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents,
54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents,
  /external/chromium_org/third_party/ots/tools/
ttf-checksum.py 4 def readU32(contents, offset):
5 wordBytes = contents[offset:offset + 4]
8 def readU16(contents, offset):
9 wordBytes = contents[offset:offset + 2]
13 contents = infile.read()
14 if len(contents) % 4:
18 for offset in range(0, len(contents), 4):
19 sum += readU32(contents, offset)
24 numTables = readU16(contents, 4)
27 tag = contents[offset:offset + 4
    [all...]
  /external/harfbuzz_ng/contrib/
README 0 Contents of this directory and outdated and unmaintained.
  /external/harfbuzz_ng/src/hb-icu-le/
COPYING 1 The contents of this directory are licensed under the ICU license.
  /external/chromium_org/chrome/browser/ui/gtk/
location_bar_view_gtk_browsertest.cc 32 int GetZoomPercent(content::WebContents* contents) {
34 return contents->GetZoomPercent(&dummy, &dummy);
37 void ExpectZoomedIn(content::WebContents* contents) {
38 EXPECT_GT(GetZoomPercent(contents), 100);
41 void ExpectZoomedOut(content::WebContents* contents) {
42 EXPECT_LT(GetZoomPercent(contents), 100);
45 void ExpectAtDefaultZoom(content::WebContents* contents) {
46 EXPECT_EQ(GetZoomPercent(contents), 100);
66 content::WebContents* contents = local
68 std::string zoom_percent = base::IntToString(GetZoomPercent(contents));
78 content::WebContents* contents = local
89 content::WebContents* contents = local
126 content::WebContents* contents = SetUpTest(); local
140 content::WebContents* contents = SetUpTest(); local
158 content::WebContents* contents = SetUpTest(); local
172 content::WebContents* contents = SetUpTest(); local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TestParcelable.java 7 int contents; field in class:TestParcelable
9 public TestParcelable(int contents) {
10 this.contents = contents;
32 dest.writeInt(contents);
  /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_org/ui/views/controls/
scroll_view_unittest.cc 49 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 such that horizontal scrollbar is needed
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/components/policy/core/common/cloud/
resource_cache_unittest.cc 61 std::map<std::string, std::string> contents; local
62 cache.LoadAllSubkeys(kKey1, &contents);
63 EXPECT_EQ(2u, contents.size());
64 EXPECT_EQ(kData0, contents[kSubA]);
65 EXPECT_EQ(kData1, contents[kSubB]);
79 cache.LoadAllSubkeys(kKey1, &contents);
80 EXPECT_EQ(2u, contents.size());
81 EXPECT_EQ(kData1, contents[kSubB]);
82 EXPECT_EQ(kData1, contents[kSubD]);
87 cache.LoadAllSubkeys(kKey1, &contents);
134 std::map<std::string, std::string> contents; local
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_user_data_unittest.cc 20 explicit WebContentsAttachedClass1(WebContents* contents) {}
29 explicit WebContentsAttachedClass2(WebContents* contents) {}
39 WebContents* contents = web_contents(); local
41 WebContentsAttachedClass1::FromWebContents(contents);
44 WebContentsAttachedClass2::FromWebContents(contents);
47 WebContentsAttachedClass1::CreateForWebContents(contents);
48 class1 = WebContentsAttachedClass1::FromWebContents(contents);
50 class2 = WebContentsAttachedClass2::FromWebContents(contents);
53 WebContentsAttachedClass2::CreateForWebContents(contents);
55 WebContentsAttachedClass1::FromWebContents(contents);
92 WebContents* contents = web_contents(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
drive_internals.css 6 #gcache-contents {
10 #file-system-contents {
14 #cache-contents {
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_observer.cc 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents,
15 WebContents* contents,
19 void TabStripModelObserver::TabDetachedAt(WebContents* contents,
23 void TabStripModelObserver::TabDeactivated(WebContents* contents) {
37 void TabStripModelObserver::TabMoved(WebContents* contents,
42 void TabStripModelObserver::TabChangedAt(WebContents* contents,
53 void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents,
57 void TabStripModelObserver::TabMiniStateChanged(WebContents* contents,
61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents,

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 91011>>