HomeSort by relevance Sort by last modified time
    Searched refs:condition (Results 401 - 425 of 1126) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 46 * the execution mask becomes zero or when there is an error condition.
168 LLVMValueRef condition; member in struct:lp_build_if_state
179 LLVMValueRef condition);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_syncobj.c 69 GLenum condition, GLbitfield flags)
74 assert(condition == GL_SYNC_GPU_COMMANDS_COMPLETE);
  /external/gtest/test/
gtest_environment_test.cc 114 // Prints the message and aborts the program if condition is false.
115 void Check(bool condition, const char* msg) {
116 if (!condition) {
  /external/junit/src/org/junit/
Assert.java 32 * Asserts that a condition is true. If it isn't it throws an
38 * @param condition
39 * condition to be checked
41 static public void assertTrue(String message, boolean condition) {
42 if (!condition)
47 * Asserts that a condition is true. If it isn't it throws an
50 * @param condition
51 * condition to be checked
53 static public void assertTrue(boolean condition) {
54 assertTrue(null, condition);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_environment_test.cc 114 // Prints the message and aborts the program if condition is false.
115 void Check(bool condition, const char* msg) {
116 if (!condition) {
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 46 * the execution mask becomes zero or when there is an error condition.
168 LLVMValueRef condition; member in struct:lp_build_if_state
179 LLVMValueRef condition);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_syncobj.c 69 GLenum condition, GLbitfield flags)
74 assert(condition == GL_SYNC_GPU_COMMANDS_COMPLETE);
  /external/regex-re2/util/
logging.h 14 #define DCHECK(condition) assert(condition)
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
IfElseFilter.java 47 .addInputPort("condition", Signature.PORT_REQUIRED, FrameType.single(boolean.class))
57 FrameValue boolFrameValue = getConnectedInputPort("condition").pullFrame().asFrameValue();
58 boolean condition = (Boolean) boolFrameValue.getValue();
60 // If the condition is true, then we want to use the camera, else use the gallery
61 if (condition) {
  /ndk/sources/third_party/googletest/googletest/test/
gtest_environment_test.cc 115 // Prints the message and aborts the program if condition is false.
116 void Check(bool condition, const char* msg) {
117 if (!condition) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 101 /* A conditional node is constructed if its condition is true. All
104 on to the stack. If the condition is false the node is not
106 void closeNodeScope(Node n, boolean condition) {
107 if (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
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_events.c 70 pthread_cond_t condition; member in struct:__anon34757
104 if (SUCCESS != pthread_cond_init(&(plEvent->condition), NULL))
147 if (SUCCESS != pthread_cond_destroy(&(plEvent->condition)))
216 if (SUCCESS != pthread_cond_signal(&plEvent->condition))
219 ("Event Set: Condition Variable Signal failed !");
244 *A representative sequence for using condition variables is shown below
248 *1) Do work up to the point where a certain condition |1)Do work
254 * for signal from Thread-B. Note that a call to | condition, signal Thread-A.
333 pthread_cond_wait(&(plEvent->condition),
370 condition), &(plEvent->mutex)
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 73 static NJ_UINT16 search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset);
77 static NJ_UINT16 search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset)
103 tmp_hinsi = condition->hinsi.fore;
104 condition->hinsi.fore = condition->hinsi.yominasi_fore;
109 if (njd_connect_test(condition, DATA_FHINSI(data), DATA_BHINSI(data))) {
113 if (condition->operation == NJ_CUR_OP_LINK) {
120 if (yomi_strcmp_forward(loctset->loct.handle, data, condition->yomi)) {
136 condition->hinsi.fore = tmp_hinsi;
147 condition->hinsi.fore = tmp_hinsi
    [all...]
ndbdic.c 90 static NJ_INT16 search_node(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset);
91 static NJ_INT16 bdic_search_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset);
92 static NJ_INT16 bdic_search_fore_data(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset);
96 static NJ_INT16 search_node2(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset,
98 static NJ_INT16 bdic_search_fore_data2(NJ_SEARCH_CONDITION *condition,
550 static NJ_INT16 search_node(NJ_SEARCH_CONDITION *condition, NJ_SEARCH_LOCATION_SET *loctset)
564 NJ_UINT16 ysize = (condition->ylen * sizeof(NJ_CHAR));
582 byomi = (NJ_UINT8*)(condition->yomi);
605 if ((condition->operation == NJ_CUR_OP_FORE) &&
606 NJ_CHAR_STRLEN_IS_0(condition->yomi))
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCmd.py 63 test.preserve(condition, ...)
65 test.cleanup(condition)
86 test.pass_test(condition)
87 test.pass_test(condition, function)
90 test.fail_test(condition)
91 test.fail_test(condition, function)
92 test.fail_test(condition, function, skip)
95 test.no_result(condition)
96 test.no_result(condition, function)
97 test.no_result(condition, function, skip
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.cpp 808 condition->print();
821 ast_selection_statement::ast_selection_statement(ast_expression *condition,
825 this->condition = condition;
941 if (condition)
942 condition->print();
954 if (condition)
955 condition->print();
964 if (condition)
965 condition->print()
    [all...]
  /external/mesa3d/src/glsl/
glsl_parser_extras.cpp 808 condition->print();
821 ast_selection_statement::ast_selection_statement(ast_expression *condition,
825 this->condition = condition;
941 if (condition)
942 condition->print();
954 if (condition)
955 condition->print();
964 if (condition)
965 condition->print()
    [all...]
  /bionic/libc/kernel/common/linux/raid/
md_k.h 214 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
215 #define wait_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_irq(wq, condition, lock, cmd); } while (0)
  /external/kernel-headers/original/linux/raid/
md_k.h 334 #define __wait_event_lock_irq(wq, condition, lock, cmd) \
342 if (condition) \
353 #define wait_event_lock_irq(wq, condition, lock, cmd) \
355 if (condition) \
357 __wait_event_lock_irq(wq, condition, lock, cmd); \
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.h     [all...]
  /external/chromium_org/tools/find_runtime_symbols/
proc_maps.py 55 def iter(self, condition):
60 if not condition or condition(self._dictionary[index]):
  /external/chromium_org/v8/test/mjsunit/
debug-changebreakpoint.js 71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
80 testArguments(dcp, '{' + bp_str + ',"condition":"1==2"}', true);
81 testArguments(dcp, '{' + bp_str + ',"condition":"false"}', true);
86 '{' + bp_str + ',"enabled":"true","condition":"false","ignoreCount":0}',
debug-stepnext-do-while.js 43 assertEquals(' } while(condition());',
63 function condition() { function
70 } while(condition());
  /external/v8/test/mjsunit/
debug-changebreakpoint.js 71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
80 testArguments(dcp, '{' + bp_str + ',"condition":"1==2"}', true);
81 testArguments(dcp, '{' + bp_str + ',"condition":"false"}', true);
86 '{' + bp_str + ',"enabled":"true","condition":"false","ignoreCount":0}',

Completed in 1277 milliseconds

<<11121314151617181920>>