HomeSort by relevance Sort by last modified time
    Searched defs:condition (Results 26 - 50 of 213) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/chrome/browser/extensions/api/declarative/
declarative_rule.h 7 // templated on the Condition and Action types that define the behavior of a
35 // If any condition is fulfilled, the Actions of the DeclarativeRule can be
48 // // If the Condition needs to be filtered by some URLMatcherConditionSets,
78 // If |url_match_trigger| is not -1, this function looks for a condition
79 // with this URLMatcherConditionSet, and forwards to that condition's
80 // IsFulfilled(|match_data|). If there is no such condition, then false is
211 // format of each condition and action's json is up to the specific ConditionT
305 scoped_ptr<ConditionT> condition = ConditionT::Create( local
309 result.push_back(make_linked_ptr(condition.release()));
  /external/chromium_org/components/url_matcher/
url_matcher_factory_unittest.cc 66 // Test wrong condition name passed.
161 // This class wraps a case sensitivity test for a single UrlFilter condition.
164 // The condition is identified by the key |condition_key|. If that key is
185 // Match the condition against |url_|. Checks via EXPECT_* macros that
204 // Test the condition |condition_key_| = |value| against |url_|.
205 // Check, via EXPECT_* macros, that either the condition cannot be constructed
206 // at all, or that the condition is not fulfilled, or that it is fulfilled,
230 DictionaryValue condition; local
234 condition.SetWithoutPathExpansion(condition_key_, list);
236 condition.SetStringWithoutPathExpansion(condition_key_, value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 134 RefPtr<NodeFilterCondition> condition = V8NodeFilterCondition::create(callback, filterWrapper, isolate); local
135 filter->setCondition(condition.release());
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_variable_index_to_cond_assign.cpp 106 ir_variable *const condition = local
110 instructions->push_tail(condition);
113 new(mem_ctx) ir_dereference_variable(condition);
197 void generate(unsigned i, ir_rvalue* condition, exec_list *list) const
218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask)
219 : new(mem_ctx) ir_assignment(variable, element, condition);
453 /* If the original assignment has a condition, respect that original
454 * condition! This is acomplished by wrapping the new conditional
455 * assignments in an if-statement that uses the original condition.
457 if ((orig_assign != NULL) && (orig_assign->condition != NULL))
    [all...]
ast_to_hir.cpp 3487 ir_rvalue *const condition = this->condition->hir(instructions, state); local
    [all...]
ir_reader.cpp 440 ir_read_error(expr, "expected (if <condition> (<then>...) (<else>...))");
444 ir_rvalue *condition = read_rvalue(s_cond); local
445 if (condition == NULL) {
446 ir_read_error(NULL, "when reading condition of (if ...)");
450 ir_if *iff = new(mem_ctx) ir_if(condition);
550 ir_read_error(expr, "expected (assign [<condition>] (<write mask>) "
555 ir_rvalue *condition = NULL; local
557 condition = read_rvalue(cond_expr);
558 if (condition == NULL) {
559 ir_read_error(NULL, "when reading condition of assignment")
    [all...]
  /external/chromium_org/tools/gn/
parse_tree.h 192 const ParseNode* condition() const { return condition_.get(); } function in class:ConditionNode
203 // condition.
  /external/chromium_org/win8/test/
ui_automation_client.cc 372 base::win::ScopedComPtr<IUIAutomationCondition> condition; local
410 &conditions[0], conditions.size(), condition.Receive());
426 condition,
468 base::win::ScopedComPtr<IUIAutomationCondition> condition; local
493 invokable_condition, control_view_condition, condition.Receive());
509 condition,
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 14 // The three threads are created and then block waiting on a condition variable.
132 int result = pthread_cond_init( &condition, NULL );
141 int result = pthread_cond_destroy( &condition );
166 result = pthread_cond_wait( &condition, &mutex );
190 pthread_cond_wait( &condition, &mutex );
211 int result = pthread_cond_broadcast( &condition );
218 pthread_cond_t condition; member in class:WaitForThreads
  /external/mesa3d/src/glsl/
lower_variable_index_to_cond_assign.cpp 106 ir_variable *const condition = local
110 instructions->push_tail(condition);
113 new(mem_ctx) ir_dereference_variable(condition);
197 void generate(unsigned i, ir_rvalue* condition, exec_list *list) const
218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask)
219 : new(mem_ctx) ir_assignment(variable, element, condition);
453 /* If the original assignment has a condition, respect that original
454 * condition! This is acomplished by wrapping the new conditional
455 * assignments in an if-statement that uses the original condition.
457 if ((orig_assign != NULL) && (orig_assign->condition != NULL))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
AdHocCommandData.java 255 public SpecificErrorCondition condition; field in class:AdHocCommandData.SpecificError
257 public SpecificError(SpecificErrorCondition condition) {
258 this.condition = condition;
262 return condition.toString();
269 return condition;
  /frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
AppLaunchTest.java 224 String condition; local
225 switch (entry.condition) {
227 condition = "a CRASH";
230 condition = "an ANR";
233 condition = "an unknown error";
238 condition, entry.shortMsg));
239 if (entry.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) {
287 return (info.condition == peOther.info.condition)
308 code += info.condition;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 123 * Find the condition that fulfills specified key value pairs from an array of
124 * "condition,constant", and return the corresponding string constant. A condition is
126 * "key=regexp_value" string. The condition matches only if all patterns of the condition
129 * For example, "condition,constant" has the following format.
135 * @param keyValuePairs attributes to be used to look for a matched condition.
136 * @param conditionConstantArray an array of "condition,constant" elements to be searched.
137 * @return the constant part of the matched "condition,constant" element. Returns null if no
138 * condition matches
153 final String condition = conditionConstant.substring(0, posComma); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 213 // Does the loop have a condition?
214 const Expr *condition = FS->getCond(); local
216 if (!condition)
226 condition = condition->IgnoreParenCasts();
229 // Is the loop condition a comparison?
230 const BinaryOperator *B = dyn_cast<BinaryOperator>(condition);
264 // Emit the error. First figure out which DeclRefExpr in the condition
  /external/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 28 * error condition as well as as an optional text explanation. Typical errors are:<p>
53 * <tr><td>500</td><td>undefined-condition</td><td>WAIT</td></tr>
54 * <tr><td>400</td><td>unexpected-condition</td><td>WAIT</td></tr>
64 private String condition; field in class:XMPPError
70 * Creates a new error with the specified condition infering the type and code.
71 * If the Condition is predefined, client code should be like:
72 * new XMPPError(XMPPError.Condition.remote_server_timeout);
73 * If the Condition is not predefined, invocations should be like
74 * new XMPPError(new XMPPError.Condition("my_own_error"));
76 * @param condition the error condition
359 private Condition condition; field in class:XMPPError.ErrorSpecification
    [all...]
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 206 // condition. if the list is empty (null) then "we're good".
280 String condition; local
281 switch (entry.condition) {
283 condition = "a CRASH";
286 condition = "an ANR";
289 condition = "an unknown error";
294 condition, entry.shortMsg));
295 if (entry.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) {
343 return (info.condition == peOther.info.condition)
    [all...]
  /frameworks/base/tools/aidl/
AST.h 208 Expression* condition; member in struct:Ternary
213 Ternary(Expression* condition, Expression* ifpart, Expression* elsepart);
  /art/compiler/dex/quick/arm/
int_arm.cc 35 * four subsequent instructions based on a condition and its
36 * inverse. The condition applies to the first instruction, which
37 * is executed if the condition is met. The string "guide" consists
39 * A "T" means the instruction is executed if the condition is
40 * met, and an "E" means the instruction is executed if the condition
136 ConditionCode condition; local
139 condition = kCondEq;
142 condition = kCondNe;
148 OpCondBranch(condition, taken);
599 // Decrement register and branch on condition
    [all...]
  /external/chromium_org/chrome_frame/
chrome_tab.cc 850 uint16 condition; member in struct:__anon9823::RegistrationStep
873 if ((reg_flags & registration_steps[step].condition) != 0) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 71 static const char condition[] = "condition"; member in namespace:WebCore::DebuggerAgentState
282 static PassRefPtr<JSONObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition, bool isRegex, bool isAnti)
288 breakpointObject->setString(DebuggerAgentState::condition, condition);
324 String condition = optionalCondition ? *optionalCondition : ""; local
334 breakpointsCookie->setObject(breakpointId, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, isRegex, isAntiBreakpointValue));
338 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
371 String condition = optionalCondition ? *optionalCondition : emptyString();
378 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 103 static PassRefPtr<ConditionEventListener> create(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
105 return adoptRef(new ConditionEventListener(animation, condition));
123 ConditionEventListener(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
126 , m_condition(condition)
133 SVGSMILElement::Condition* m_condition;
150 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeat)
437 Condition::Type type
569 Condition& condition = m_conditions[n]; local
596 Condition& condition = m_conditions[n]; local
1214 Condition& condition = m_conditions[n]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
JavaScriptSourceFrame.js 163 // FIXME: Change condition above to explicitly check that current uiSourceCode is created by default debugger mapping
223 this._addBreakpointDecoration(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled, true);
255 this._setBreakpoint(lineNumber, breakpointDecoration.condition, breakpointDecoration.enabled);
371 * @param {string} condition
375 _addBreakpointDecoration: function(lineNumber, condition, enabled, mutedWhileEditing)
378 condition: condition,
385 this.textEditor.addBreakpoint(lineNumber, disabled, !!condition);
438 this._conditionEditorElement.value = breakpoint ? breakpoint.condition() : "";
445 conditionElement.className = "source-frame-breakpoint-condition";
377 condition: condition, property
    [all...]
  /external/chromium_org/v8/src/
full-codegen.h 328 void DoTest(Expression* condition,
337 void Split(Condition cc,
344 void Split(Condition cc,
767 Expression* condition,
772 condition_(condition),
782 Expression* condition() const { return condition_; } function in class:v8::internal::FullCodeGenerator::TestContext
    [all...]
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 268 id->mnem = NULL; // Computed depending on condition code.
1258 int condition = opcode & 0x0F; local
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 543 llvm::LoadInst *condition = cast<llvm::LoadInst>(si->getCondition()); local
549 assert(condition->getOperand(0) == CGF.NormalCleanupDest);
550 assert(condition->use_empty());
551 condition->eraseFromParent();
    [all...]

Completed in 937 milliseconds

12 3 4 5 6 7 8 9