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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/
test_expectations.py 14 def __init__(self, expectation, url_pattern, conditions=None, bug=None):
27 if conditions:
28 for c in conditions:
50 def Fail(self, url_pattern, conditions=None, bug=None):
51 self._Expect('fail', url_pattern, conditions, bug)
53 def _Expect(self, expectation, url_pattern, conditions=None, bug=None):
54 self.expectations.append(Expectation(expectation, url_pattern, conditions,
65 """Determines if the conditions for an expectation apply to this system."""
  /external/ganymed-ssh2/examples/
SingleThreadStdoutStderr.java 71 int conditions = sess.waitForCondition(ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA local
76 if ((conditions & ChannelCondition.TIMEOUT) != 0)
84 if ((conditions & ChannelCondition.EOF) != 0)
88 if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) == 0)
98 // if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) == 0)
99 // throw new IllegalStateException("Unexpected condition result (" + conditions + ")");
  /external/chromium_org/chrome/browser/extensions/api/declarative/
declarative_rule_unittest.cc 59 RecordingConditionSet::AnyVector conditions; local
60 conditions.push_back(ScopedToLinkedPtr(ParseJson("{\"key\": 1}")));
61 conditions.push_back(ScopedToLinkedPtr(ParseJson("{\"bad_key\": 2}")));
66 conditions, &error);
73 RecordingConditionSet::AnyVector conditions; local
74 conditions.push_back(ScopedToLinkedPtr(ParseJson("{\"key\": 1}")));
75 conditions.push_back(ScopedToLinkedPtr(ParseJson("[\"val1\", 2]")));
81 conditions, &error);
84 EXPECT_EQ(2u, result->conditions().size());
86 EXPECT_EQ(matcher.condition_factory(), result->conditions()[0]->factory)
147 FulfillableConditionSet::AnyVector conditions; local
335 const Rule::ConditionSet::Conditions& conditions = local
    [all...]
declarative_rule.h 33 // This class stores a set of conditions that may be part of a DeclarativeRule.
57 typedef std::vector<linked_ptr<const ConditionT> > Conditions;
58 typedef typename Conditions::const_iterator const_iterator;
61 // array |conditions| passed by the extension API. Sets |error| and returns
65 const AnyVector& conditions,
68 const Conditions& conditions() const { function in class:extensions::DeclarativeConditionSet
79 // of the conditions without URL attributes is satisfied.
83 // Appends the URLMatcherConditionSet from all conditions to |condition_sets|.
87 // Returns whether there are some conditions without UrlFilter attributes
224 const ConditionSet& conditions() const { return *conditions_; } function in class:extensions::DeclarativeRule
433 scoped_ptr<ConditionSet> conditions = ConditionSet::Create( local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 80 tabname, [colname], conditions={colname: None})
125 conditions={col0: lambda x: pickle.loads(x) >= 8})
128 conditions={col0: lambda x:
170 self.tdb.Select(tabname, [], conditions={'foo': '123'})
198 conditions={'e': re.compile('wuzzy').search,
203 self.tdb.Delete(tabname, conditions={'b': dbtables.ExactCond('good')})
206 conditions={'e': dbtables.PrefixCond('Fuzzy')})
211 conditions={'c': lambda c: c == 'meep'})
249 conditions={'e': dbtables.ExactCond('E'),
299 conditions={'e': dbtables.PrefixCond('the l')}
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbtables.py 80 tabname, [colname], conditions={colname: None})
125 conditions={col0: lambda x: pickle.loads(x) >= 8})
128 conditions={col0: lambda x:
170 self.tdb.Select(tabname, [], conditions={'foo': '123'})
198 conditions={'e': re.compile('wuzzy').search,
203 self.tdb.Delete(tabname, conditions={'b': dbtables.ExactCond('good')})
206 conditions={'e': dbtables.PrefixCond('Fuzzy')})
211 conditions={'c': lambda c: c == 'meep'})
249 conditions={'e': dbtables.ExactCond('E'),
299 conditions={'e': dbtables.PrefixCond('the l')}
    [all...]
  /external/chromium_org/extensions/common/matcher/
url_matcher_unittest.cc 413 std::set<URLMatcherCondition> conditions;
414 conditions.insert(m1);
415 conditions.insert(m2);
418 new URLMatcherConditionSet(1, conditions));
420 EXPECT_EQ(2u, condition_set->conditions().size());
433 std::set<URLMatcherCondition> conditions;
434 conditions.insert(m1);
435 conditions.insert(m2);
438 new URLMatcherConditionSet(1, conditions));
440 EXPECT_EQ(2u, condition_set->conditions().size())
603 URLMatcherConditionSet::Conditions conditions; local
653 URLMatcherConditionSet::Conditions conditions; local
671 URLMatcherConditionSet::Conditions conditions; local
    [all...]
url_matcher.cc 595 const Conditions& conditions)
597 conditions_(conditions) {}
601 const Conditions& conditions,
605 conditions_(conditions),
612 for (Conditions::const_iterator i = conditions_.begin();
734 const URLMatcherConditionSet::Conditions& conditions = local
735 condition_set_iter->second->conditions();
788 const URLMatcherConditionSet::Conditions& conditions = local
817 const URLMatcherConditionSet::Conditions& conditions = local
839 const URLMatcherConditionSet::Conditions& conditions = local
866 const URLMatcherConditionSet::Conditions& conditions = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_rules_registry.cc 27 "conditions can be checked and the action can possibly be executed.";
60 // 1st phase -- add all rules with some conditions without UrlFilter
64 if ((*it)->conditions().IsFulfilled(-1, request_data))
68 // 2nd phase -- add all rules with some conditions triggered by URL matches.
208 const WebRequestConditionSet& conditions = i->second->conditions(); local
209 conditions.GetURLMatcherConditionSets(&url_condition_sets);
221 i->second->conditions().GetURLMatcherConditionSets(&all_new_condition_sets);
222 if (i->second->conditions().HasConditionsWithoutUrls())
292 rule->conditions().GetURLMatcherConditionSets(&condition_sets)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-260.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
29 // conditions twice, even in cases where the loop condition is
  /external/v8/test/mjsunit/regress/
regress-260.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
29 // conditions twice, even in cases where the loop condition is
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Session.java 353 int conditions = cm.waitForCondition(cn, timeout, ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA local
356 if ((conditions & ChannelCondition.TIMEOUT) != 0)
359 if ((conditions & (ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA)) != 0)
364 if ((conditions & ChannelCondition.EOF) != 0)
367 throw new IllegalStateException("Unexpected condition result (" + conditions + ")");
371 * This method blocks until certain conditions hold true on the underlying SSH-2 channel.
375 * <li>at least of the specified conditions (see {@link ChannelCondition}) holds true</li>
376 * <li>timeout > 0 and a timeout occured (TIMEOUT will be set in result conditions)</a>
377 * <li>the underlying channel was closed (CLOSED will be set in result conditions)</a>
380 * In any case, the result value contains ALL current conditions, which may be mor
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_rules_registry.cc 131 if (rule->conditions().IsFulfilled(*url_match, renderer_data))
175 const ContentConditionSet& conditions = i->second->conditions(); local
176 conditions.GetURLMatcherConditionSets(&url_condition_sets);
187 i->second->conditions().GetURLMatcherConditionSets(&all_new_condition_sets);
214 rule->conditions().GetURLMatcherConditionSets(&condition_sets);
261 condition = rule.conditions().begin();
262 condition != rule.conditions().end(); ++condition) {
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_prime.pl 42 * the following conditions are aheared to. The following conditions
56 * modification, are permitted provided that the following conditions
59 * notice, this list of conditions and the following disclaimer.
61 * notice, this list of conditions and the following disclaimer in the
  /external/openssl/crypto/bn/
bn_prime.pl 42 * the following conditions are aheared to. The following conditions
56 * modification, are permitted provided that the following conditions
59 * notice, this list of conditions and the following disclaimer.
61 * notice, this list of conditions and the following disclaimer in the
  /external/chromium/android/
generateAndroidForwardingHeader.pl 6 # modification, are permitted provided that the following conditions
9 # notice, this list of conditions and the following disclaimer.
11 # notice, this list of conditions and the following disclaimer in the
35 * modification, are permitted provided that the following conditions
38 * notice, this list of conditions and the following disclaimer.
40 * notice, this list of conditions and the following disclaimer in the
  /external/chromium_org/v8/samples/
count-hosts.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/intl/break-iterator/
wellformed-unsupported-locale.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/intl/collator/
wellformed-unsupported-locale.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/intl/date-format/
utils.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
wellformed-unsupported-locale.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/intl/number-format/
wellformed-unsupported-locale.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/intl/
utils.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
  /external/chromium_org/v8/test/message/
isvar.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
overwritten-builtins.js 3 // modification, are permitted provided that the following conditions are
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>