HomeSort by relevance Sort by last modified time
    Searched refs:condition (Results 426 - 450 of 1123) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/armv5te/
binopWide2addr.S 30 $preinstr @ optional op; may set condition codes
  /dalvik/vm/mterp/armv6t2/
binopWide2addr.S 29 $preinstr @ optional op; may set condition codes
  /dalvik/vm/mterp/mips/
binflop.S 27 c.eq.s fcc0, ft0, fa1 # condition bit and comparision with 0
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_condition.cc 20 const char kExpectedDictionary[] = "A condition has to be a dictionary.";
21 const char kConditionWithoutInstanceType[] = "A condition had no instanceType";
22 const char kExpectedOtherConditionType[] = "Expected a condition of type "
24 const char kUnknownConditionAttribute[] = "Unknown condition attribute '%s'";
55 // All attributes must be fulfilled for a fulfilled condition.
67 const base::Value& condition,
70 if (!condition.GetAsDictionary(&condition_dict)) {
75 // Verify that we are dealing with a Condition whose type we understand.
content_condition.h 34 // Representation of a condition in the Declarative Content API. A condition
36 // attributes needs to be fulfilled in order for the condition to be fulfilled.
62 // description |condition| passed by the extension API. |condition| should be
66 const base::Value& condition,
81 // If this Condition has a url filter, appends it to |condition_sets|.
94 // Returns the CSS selectors required to match by this condition.
  /external/chromium_org/chrome/installer/util/
work_item.cc 136 WorkItemList* WorkItem::CreateConditionalWorkItemList(Condition* condition) {
137 return new ConditionalWorkItemList(condition);
  /external/chromium_org/sync/syncable/
syncable_util.cc 79 // if the |condition| is false the following will happen:
82 bool SyncAssert(bool condition,
86 if (!condition) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
Console.idl 42 [CallWith=ScriptArguments&ScriptState, ImplementedAs=assertCondition] void assert([Default=Undefined] optional boolean condition);
Console.h 61 void assertCondition(ScriptState*, PassRefPtr<ScriptArguments>, bool condition);
  /external/chromium_org/third_party/mesa/src/docs/
MESA_shader_debug.spec 197 void assertMESA(const bool condition)
198 void assertMESA(const bool condition, const int cookie)
199 void assertMESA(const bool condition, const int cookie,
202 The assertMESA function checks if the argument <condition> is
  /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...]
lower_vec_index_to_swizzle.cpp 162 ir->condition = convert_vec_index_to_swizzle(ir->condition);
opt_if_simplification.cpp 81 /* FINISHME: Ideally there would be a way to note that the condition results
86 ir_constant *condition_constant = ir->condition->constant_expression_value();
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_syncobj.c 67 GLenum condition, GLbitfield flags)
72 assert(condition == GL_SYNC_GPU_COMMANDS_COMPLETE && flags == 0);
  /external/chromium_org/third_party/re2/util/
logging.h 19 #define DCHECK(condition) assert(condition)
  /external/mesa3d/docs/
MESA_shader_debug.spec 197 void assertMESA(const bool condition)
198 void assertMESA(const bool condition, const int cookie)
199 void assertMESA(const bool condition, const int cookie,
202 The assertMESA function checks if the argument <condition> is
  /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...]
lower_vec_index_to_swizzle.cpp 162 ir->condition = convert_vec_index_to_swizzle(ir->condition);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_syncobj.c 67 GLenum condition, GLbitfield flags)
72 assert(condition == GL_SYNC_GPU_COMMANDS_COMPLETE && flags == 0);
  /external/valgrind/main/drd/tests/
pth_cond_race.stderr.exp 3 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread.
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ActivityManagerTest.java 66 // TODO force another process into an error condition. How?
122 assertTrue((info.condition == ActivityManager.ProcessErrorStateInfo.CRASHED) ||
123 (info.condition == ActivityManager.ProcessErrorStateInfo.NOT_RESPONDING));
  /external/chromium_org/v8/tools/testrunner/local/
old_statusfile.py 340 def __init__(self, condition):
341 self.condition = condition
395 def OpenSection(self, condition="ALWAYS"):
398 if type(condition) != str:
399 condition = "'%s'" % condition.string(True)
400 print >> self.out, "%s[%s, {" % (self.indent, condition)
402 self.section = condition
430 condition = ParseCondition(header_match.group(1).strip()
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_condition.h 51 // Representation of a condition in the Declarative WebRequest API. A condition
53 // fulfilled in order for the condition to be fulfilled.
79 // the description |condition| passed by the extension API.
82 const base::Value& condition,
85 // Returns whether the request matches this condition.
88 // If this condition has url attributes, appends them to |condition_sets|.
93 // contains a 1 for each request stage during which the condition can be
98 // URL attributes of this condition.
102 // All non-UrlFilter attributes of this condition
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8HiddenPropertyName.h 42 V(condition) \
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.h 190 UBool assertTrue(const char* message, UBool condition, UBool quiet=FALSE, UBool possibleDataError=FALSE);
191 UBool assertFalse(const char* message, UBool condition, UBool quiet=FALSE);
203 UBool assertTrue(const UnicodeString& message, UBool condition, UBool quiet=FALSE);
204 UBool assertFalse(const UnicodeString& message, UBool condition, UBool quiet=FALSE);

Completed in 356 milliseconds

<<11121314151617181920>>