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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/actions/src/subdir2/
make-file.py 9 contents = "Hello from make-file.py\n" variable
11 open(sys.argv[1], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/actions-subdir/src/
make-file.py 9 contents = 'Hello from make-file.py\n' variable
11 open(sys.argv[1], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/actions-subdir/src/subdir/
make-subdir-file.py 9 contents = 'Hello from make-subdir-file.py\n' variable
11 open(sys.argv[1], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/generator-output/actions/subdir2/
make-file.py 9 contents = "Hello from make-file.py\n" variable
11 open(sys.argv[1], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/generator-output/rules/
copy-file.py 9 contents = open(sys.argv[1], 'r').read() variable
10 open(sys.argv[2], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/rules/src/
copy-file.py 8 contents = open(sys.argv[1], 'r').read() variable
9 open(sys.argv[2], 'wb').write(contents)
  /external/chromium_org/tools/gyp/test/rules-dirname/src/
copy-file.py 8 contents = open(sys.argv[1], 'r').read() variable
9 open(sys.argv[2], 'wb').write(contents)
  /external/chromium_org/chrome/browser/ui/
browser_finder.h 14 namespace contents { namespace
  /external/chromium_org/tools/gyp/test/library/
gyptest-shared.py 42 contents = test.read('relocate/src/program.c') variable
43 contents = contents.replace('Hello', 'Hello again') variable
44 test.write('relocate/src/program.c', contents)
64 contents = test.read('relocate/src/program.c') variable
65 contents = contents.replace('again', 'again again') variable
66 test.write('relocate/src/program.c', contents)
gyptest-static.py 42 contents = test.read('relocate/src/program.c') variable
43 contents = contents.replace('Hello', 'Hello again') variable
44 test.write('relocate/src/program.c', contents)
64 contents = test.read('relocate/src/program.c') variable
65 contents = contents.replace('again', 'again again') variable
66 test.write('relocate/src/program.c', contents)
  /external/chromium_org/tools/gyp/test/rules-rebuild/
gyptest-all.py 35 contents = test.read(['relocate', 'src', 'prog1.in']) variable
36 contents = contents.replace('!', ' AGAIN!') variable
37 test.write(['relocate', 'src', 'prog1.in'], contents)
53 contents = test.read(['relocate', 'src', 'prog2.in']) variable
54 contents = contents.replace('!', ' AGAIN!') variable
55 test.write(['relocate', 'src', 'prog2.in'], contents)
gyptest-default.py 35 contents = test.read(['relocate', 'src', 'prog1.in']) variable
36 contents = contents.replace('!', ' AGAIN!') variable
37 test.write(['relocate', 'src', 'prog1.in'], contents)
53 contents = test.read(['relocate', 'src', 'prog2.in']) variable
54 contents = contents.replace('!', ' AGAIN!') variable
55 test.write(['relocate', 'src', 'prog2.in'], contents)
74 contents = test.read(['relocate', 'src', 'make-sources.py']) variable
75 contents = contents.replace('%s', 'the amazing %s' variable
    [all...]
  /external/chromium_org/tools/gyp/test/variables/commands/
gyptest-commands-repeated.py 22 # Verify the commands-repeated.gypd against the checked-in expected contents.
25 # contents file setting the Subversion svn:eol-style to native,
31 contents = test.read('commands-repeated.gypd').replace('\r\n', '\n') variable
33 if not test.match(contents, expect):
34 print "Unexpected contents of `commands-repeated.gypd'"
35 test.diff(expect, contents, 'commands-repeated.gypd ')
gyptest-commands-ignore-env.py 30 # Verify the commands.gypd against the checked-in expected contents.
33 # contents file setting the Subversion svn:eol-style to native,
39 contents = test.read('commands.gypd').replace('\r', '') variable
41 if not test.match(contents, expect):
42 print "Unexpected contents of `commands.gypd'"
43 test.diff(expect, contents, 'commands.gypd ')
gyptest-commands.py 23 # Verify the commands.gypd against the checked-in expected contents.
26 # contents file setting the Subversion svn:eol-style to native,
32 contents = test.read('commands.gypd').replace('\r', '') variable
34 if not test.match(contents, expect):
35 print "Unexpected contents of `commands.gypd'"
36 test.diff(expect, contents, 'commands.gypd ')
  /external/apache-harmony/support/src/test/java/tests/support/
Support_TestResource.java 24 Object[][] contents = { { "parent1", "parentValue1" }, local
27 return contents;
Support_TestResource_en.java 24 Object[][] contents = { { "parent2", "enValue2" }, local
27 return contents;
Support_TestResource_en_US.java 24 Object[][] contents = { { "parent3", "enUSValue3" }, local
27 return contents;
Support_TestResource_fr.java 24 Object[][] contents = { { "parent2", "frValue2" }, local
27 return contents;
Support_TestResource_fr_FR.java 24 Object[][] contents = { { "parent3", "frFRValue3" }, local
27 return contents;
Support_TestResource_fr_FR_VAR.java 24 Object[][] contents = { { "parent4", "frFRVARValue4" }, local
28 return contents;
  /external/chromium/chrome/browser/extensions/
extension_clipboard_api.cc 24 TabContentsWrapper* contents = NULL; local
26 NULL, NULL, &contents, NULL)) {
32 RenderViewHost* render_view_host = contents->render_view_host();
  /external/chromium_org/tools/gyp/test/standalone/
gyptest-standalone.py 27 contents = open(file).read() variable
28 if 'standalone.gyp' in contents:
  /external/chromium_org/ui/v2/public/
window.h 21 View* contents() { return contents_.get(); } function in class:v2::Window
  /libcore/support/src/test/java/tests/support/
Support_TestResource_en.java 24 Object[][] contents = { { "parent2", "enValue2" }, local
27 return contents;

Completed in 236 milliseconds

1 2 3 4 5 6 7 8 91011>>