HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 1001 - 1025 of 7248) sorted by null

<<41424344454647484950>>

  /packages/inputmethods/LatinIME/java/res/values/
phantom-sudden-move-event-device-list.xml 22 <!-- "Build condition,true" that needs "phantom sudden move event" hack.
  /packages/inputmethods/LatinIME/java/res/values-land/
keyboard-heights.xml 22 <!-- Build condition,keyboard_height_in_dp -->
  /packages/services/Car/libvehiclenetwork/include/
HandlerThread.h 44 Condition mLooperWait;
  /platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/exceptions/
UiTimeoutException.java 21 * when a specific UI condition is not met due to a timeout that has been exceeded.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atm_zatm.h 28 int rqa_count,rqu_count; /* queue condition counters */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atm_zatm.h 28 int rqa_count,rqu_count; /* queue condition counters */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
mode-classes.def 22 DEF_MODE_CLASS (MODE_CC), /* condition code in a register */ \
  /prebuilts/tools/common/m2/repository/net/sf/proguard/
NOTICE 3 The ProGuard code itself is copyrighted, but its distribution license provides you with some rights for modifying and redistributing its code and its documentation. More specifically, ProGuard is distributed under the terms of the GNU General Public License (GPL), version 2, as published by the Free Software Foundation (FSF). In short, this means that you may freely redistribute the program, modified or as is, on the condition that you make the complete source code available as well. If you develop a program that is linked with ProGuard, the program as a whole has to be distributed at no charge under the GPL. I am granting a special exception to the latter clause (in wording suggested by the FSF), for combinations with the following stand-alone applications: Gradle, Apache Ant, Apache Maven, the Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, and the Simple Build Tool for Scala.
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3-sources.jar 
  /prebuilts/tools/common/m2/repository/org/w3c/css/sac/1.3/
sac-1.3-sources.jar 
  /prebuilts/tools/common/proguard/proguard4.7/build/
build.xml 93 <condition>
97 </condition>
126 <condition>
130 </condition>
  /system/connectivity/shill/cellular/
subscription_state_out_of_credits_detector.h 24 // Detects out-of-credits condition by using the subscription state.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/
ret-cc.d 3 #name: return on condition code
  /cts/tests/tests/security/src/android/security/cts/
StagefrightTest.java 47 import java.util.concurrent.locks.Condition;
204 condition.signal();
217 // preserve error condition, if any
219 condition.signal();
225 if (condition.awaitNanos(TIMEOUT_NS) <= 0) {
239 Condition condition = lock.newCondition(); field in class:StagefrightTest.MediaPlayerCrashListener
  /external/autotest/client/cros/networking/
cellular_proxy.py 217 def _poll_for_condition(condition, desc, timeout=10):
218 """Poll till |condition| is satisfied.
220 @param condition: A function taking no arguments. The condition is
223 |condition|.
228 value = condition()
234 'Timed out waiting for condition %s.' % desc)
  /external/icu/icu4c/source/common/
umutex.h 393 * This is an error condition. ICU requires mutexes.
424 * Wait on a condition variable.
425 * The calling thread will unlock the mutex and wait on the condition variable.
428 * @param cond the condition variable to wait on.
436 * Broadcast wakeup of all threads waiting on a Condition.
440 * @param cond the condition variable.
445 * Signal a condition variable, waking up one waiting thread.
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 14 // The three threads are created and then block waiting on a condition variable.
133 int result = pthread_cond_init( &condition, nullptr );
142 int result = pthread_cond_destroy( &condition );
169 result = pthread_cond_wait( &condition, &mutex );
194 pthread_cond_wait( &condition, &mutex );
215 int result = pthread_cond_broadcast( &condition );
222 pthread_cond_t condition; member in class:WaitForThreads
  /external/clang/test/Sema/
uninit-variables.c 42 if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \
43 // expected-note{{remove the 'if' if its condition is always true}}
155 if ((test19_aux1() + test19_aux2() && test19_aux1()) || test19_aux3(&z)) // expected-warning {{variable 'z' is used uninitialized whenever '||' condition is true}} expected-note {{remove the '||' if its condition is always false}}
162 if ((x && y) || test19_aux3(&z) || test19_aux2()) // expected-warning {{variable 'z' is used uninitialized whenever '||' condition is true}} expected-note {{remove the '||' if its condition is always false}}
298 if (x) y = 1; // expected-warning{{variable 'y' is used uninitialized whenever 'if' condition is false}} \
299 // expected-note{{remove the 'if' if its condition is always true}}
365 switch (a || b) { // expected-warning {{switch condition has boolean value}}
424 // Test uninitialized value used in loop condition
    [all...]
  /external/clang/test/SemaObjC/
arc-repeated-weak.mm 18 extern bool condition();
149 if (condition()) {
160 id val = (condition() ? a.weakProp : a.weakProp); // no-warning
174 if (condition()) {
185 if (condition()) {
217 while (condition()) {
229 } while (condition());
255 while (condition()) {
386 if (condition())
393 if (condition())
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java 39 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
60 * This defines two rules, for 'one' and 'few'. The condition for 'one' is "n is 1" which means that the number must be
61 * equal to 1 for this condition to pass. The condition for 'few' is "n in 2..4" which means that the number must be
62 * between 2 and 4 inclusive - and be an integer - for this condition to pass. All other numbers are assigned the
71 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
72 * its condition holds for 119, 219, 319...
79 * This illustrates conjunction and negation. The condition for 'few' has two parts, both of which must be met:
89 * rule = keyword ':' condition
1178 String condition = and_together[j].trim(); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 81 * Begin a "skip" block. Inside this block we can test a condition and
82 * skip to the end of the block if the condition is false.
95 * Insert code to test a condition and branch to the end of the current
96 * skip block if the condition is true.
279 * contrasts lp_build_loop as this checks condition on entry
379 LLVMValueRef condition)
385 ifthen->condition = condition;
443 LLVMBuildCondBr(builder, ifthen->condition,
448 LLVMBuildCondBr(builder, ifthen->condition,
    [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java 36 * method examines each condition in order and returns the keyword for the first condition that matches the number. If
57 * This defines two rules, for 'one' and 'few'. The condition for 'one' is "n is 1" which means that the number must be
58 * equal to 1 for this condition to pass. The condition for 'few' is "n in 2..4" which means that the number must be
59 * between 2 and 4 inclusive - and be an integer - for this condition to pass. All other numbers are assigned the
68 * keyword whose condition passes is the one returned. Also notes that a modulus is applied to n in the last rule. Thus
69 * its condition holds for 119, 219, 319...
76 * This illustrates conjunction and negation. The condition for 'few' has two parts, both of which must be met:
86 * rule = keyword ':' condition
1169 String condition = and_together[j].trim(); local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractFakeCommandHandler.java 253 * Verify that the specified condition related to the file system is true,
256 * @param condition - the condition that must be true
258 * error message if the condition is not true.
260 * @throws FileSystemException - if the condition is not true
262 protected void verifyFileSystemCondition(boolean condition, String path, String messageKey) {
263 if (!condition) {
273 * @throws FileSystemException - if the condition is not true
286 * @throws FileSystemException - if the condition is not true
299 * @throws FileSystemException - if the condition is not true
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.h 231 void DeoptimizeIf(Condition cc, LInstruction* instr,
234 void DeoptimizeIf(Condition cc, LInstruction* instr,
280 static Condition TokenToCondition(Token::Value op, bool is_unsigned);
285 void EmitBranch(InstrType instr, Condition cc);
287 void EmitTrueBranch(InstrType instr, Condition cc);
289 void EmitFalseBranch(InstrType instr, Condition cc);
295 // Returns the condition on which a final split to
297 Condition EmitTypeofIs(LTypeofIsAndBranch* instr, Register input);
300 // Returns the condition on which a final split to
302 Condition EmitIsString(Register input
    [all...]
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_events.c 70 pthread_cond_t condition; member in struct:__anon35727
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...]

Completed in 3091 milliseconds

<<41424344454647484950>>