HomeSort by relevance Sort by last modified time
    Searched refs:globs (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/tools/grit/grit/gather/
json_loader.py 20 globs = {}
21 exec('data = ' + self._json_text, globs)
22 self._data = globs['data']
  /external/chromium_org/extensions/common/
user_script.cc 14 bool UrlMatchesGlobs(const std::vector<std::string>* globs,
16 for (std::vector<std::string>::const_iterator glob = globs->begin();
17 glob != globs->end(); ++glob) {
146 const std::vector<std::string>& globs) const {
147 pickle->WriteUInt64(globs.size());
148 for (std::vector<std::string>::const_iterator glob = globs.begin();
149 glob != globs.end(); ++glob) {
196 std::vector<std::string>* globs) {
199 globs->clear();
203 globs->push_back(glob)
    [all...]
user_script_unittest.cc 133 // If there are both, match intersection(union(globs), union(urlpatterns)).
158 // Try with no globs or exclude globs.
213 ASSERT_EQ(script1.globs().size(), script2.globs().size());
214 for (size_t i = 0; i < script1.globs().size(); ++i) {
215 EXPECT_EQ(script1.globs()[i], script2.globs()[i]);
user_script.h 147 // The globs, if any, that determine which pages this script runs against.
149 const std::vector<std::string>& globs() const { return globs_; } function in class:extensions::UserScript
204 const std::vector<std::string>& globs) const;
211 std::vector<std::string>* globs);
234 // Greasemonkey-style globs that determine pages to inject the script into.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
profile.py 598 globs = {
603 runctx(code, globs, None, options.outfile, options.sort)
trace.py 801 globs = {
807 t.runctx(code, globs, globs)
pdb.py 480 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None
481 line = linecache.getline(filename, lineno, globs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
doctest.py 178 def _extract_future_flags(globs):
181 have been imported into the given namespace (globs).
185 feature = globs.get(fname, None)
480 - globs: The namespace (aka globals) that the examples should
497 def __init__(self, examples, globs, name, filename, lineno, docstring):
500 DocTest's globals are initialized with a copy of `globs`.
506 self.globs = globs.copy()
527 self.globs == other.globs and
    [all...]
cProfile.py 187 globs = {
192 runctx(code, globs, None, options.outfile, options.sort)
profile.py 598 globs = {
603 runctx(code, globs, None, options.outfile, options.sort)
trace.py 801 globs = {
807 t.runctx(code, globs, globs)
pdb.py 480 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None
481 line = linecache.getline(filename, lineno, globs)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
user_script_master_unittest.cc 122 ASSERT_EQ(3U, script.globs().size());
123 EXPECT_EQ("*mail.google.com*", script.globs()[0]);
124 EXPECT_EQ("*mail.yahoo.com*", script.globs()[1]);
125 EXPECT_EQ("*mail.msn.com*", script.globs()[2]);
134 ASSERT_EQ(1U, script.globs().size());
135 EXPECT_EQ("*", script.globs()[0]);
146 ASSERT_EQ(1U, script.globs().size());
147 EXPECT_EQ("*foo*", script.globs()[0]);
164 EXPECT_EQ(0U, script.globs().size());
convert_user_script_unittest.cc 68 ASSERT_EQ(2u, script.globs().size());
69 EXPECT_EQ("http://www.google.com/*", script.globs().at(0));
70 EXPECT_EQ("http://www.yahoo.com/*", script.globs().at(1));
120 ASSERT_EQ(1u, script.globs().size());
121 EXPECT_EQ("*", script.globs()[0]);
convert_user_script.cc 109 // generate some using the include globs.
133 for (size_t i = 0; i < script.globs().size(); ++i)
134 includes->Append(new base::StringValue(script.globs().at(i)));
user_script_master.cc 148 if (script->globs().empty() && script->url_patterns().is_empty())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)
test_zipimport.py 342 globs=locals()
355 globs=locals()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_parser.py 557 globs = {}
558 exec code in globs
559 self.assertEqual(globs['y'], 5)
test_zipimport.py 342 globs=locals()
355 globs=locals()
  /external/chromium_org/third_party/yasm/source/patched-yasm/
splint.sh 18 -globs \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 124 globs = (self.package_data.get('', [])
127 for pattern in globs:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 124 globs = (self.package_data.get('', [])
127 for pattern in globs:

Completed in 680 milliseconds

1 2