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

<<11121314151617181920>>

  /external/curl/tests/data/
test247 20 FTP upload time condition evaluates TRUE => skip upload
  /external/icu/icu4j/tools/build/
build.xml 12 <condition property="alt.src.dir" value="out/tmp-src8">
14 </condition>
16 <condition property="src.dir" value="${alt.src.dir}">
18 </condition>
  /external/llvm/test/MC/ARM/
udf-thumb-2-diagnostics.s 10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
  /external/skia/platform_tools/android/gyp_gen/
makefile_writer.py 169 """Helper class to keep a VarsDict along with a name and optional condition.
171 def __init__(self, vars_dict, name, condition=None):
178 condition: Optional string representing a condition. If not None,
182 self.condition = condition
195 writing it to the makefile. VarsDictData.condition, if not None, will be
196 written to the makefile as a condition to determine whether to include
209 if data.condition and (var_dict_shared or var_dict_static):
210 f.write('ifeq ($(%s), true)\n' % data.condition)
    [all...]
  /frameworks/base/core/java/android/service/notification/
Condition.aidl 19 parcelable Condition;
  /frameworks/wilhelm/src/android/
VideoCodec_to_android.h 51 * Pre-condition
60 * Pre-condition
73 * Pre-condition
76 * Post-condition
  /libcore/luni/src/main/java/java/util/concurrent/locks/
package-info.java 26 * <p>The {@link java.util.concurrent.locks.Condition} interface
27 * describes condition variables that may be associated with Locks.
30 * In particular, multiple {@code Condition} objects may be associated
32 * names of {@code Condition} methods are different from the
  /packages/apps/Messaging/src/com/android/messaging/util/
Assert.java 82 public static void isTrue(final boolean condition) {
83 if (!condition) {
84 fail("Expected condition to be true", false);
91 public static void isFalse(final boolean condition) {
92 if (condition) {
93 fail("Expected condition to be false", false);
100 public static void isTrueReleaseCheck(final boolean condition) {
101 if (!condition) {
102 fail("Expected condition to be true", true);
  /prebuilts/go/darwin-x86/test/
func7.go 7 // Test evaluation order in if condition.
  /prebuilts/go/linux-x86/test/
func7.go 7 // Test evaluation order in if condition.
  /sdk/files/
alias_rules.xml 17 <condition property="aapt" value="${android.tools.dir}/aapt.exe" else="${android.tools.dir}/aapt">
19 </condition>
20 <condition property="adb" value="${android.tools.dir}/adb.exe" else="${android.tools.dir}/adb">
22 </condition>
  /external/ceres-solver/internal/ceres/miniglog/glog/
logging.h 71 // CHECK(condition) - fails if condition is false and logs condition.
294 // Log only if condition is met. Otherwise evaluates to void.
295 #define LOG_IF(severity, condition) \
296 !(condition) ? (void) 0 : LoggerVoidify() & \
299 // Log only if condition is NOT met. Otherwise evaluates to void.
300 #define LOG_IF_FALSE(severity, condition) LOG_IF(severity, !(condition))
309 # define VLOG_IF(n, condition) LOG_IF(n, (n <= MAX_LOG_LEVEL) && condition
    [all...]
  /external/libweave/third_party/chromium/base/
logging.h 57 // The CHECK(condition) macro is active in both debug and release builds and
102 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
109 // There is also a VLOG_IF "verbose level" condition macro for sample
196 // values, and there is a race condition that may leak a critical section
327 // the condition doesn't hold. Condition is evaluated once and only once.
328 #define LAZY_STREAM(stream, condition) \
329 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream)
342 #define LOG_IF(severity, condition) \
343 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
    [all...]
  /external/icu/icu4c/source/common/
umutex.cpp 132 umtx_condBroadcast(UConditionVar *condition) {
136 if (condition->fWaitCount == 0) {
139 ResetEvent(condition->fExitGate);
140 SetEvent(condition->fEntryGate);
144 umtx_condSignal(UConditionVar *condition) {
146 // Once ICU drops support for Windows XP and Server 2003, ICU Condition Variables will be
153 umtx_condWait(UConditionVar *condition, UMutex *mutex) {
154 if (condition->fEntryGate == NULL) {
157 // running here with the same condition variable.
159 U_ASSERT(condition->fExitGate == NULL)
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 228 void DeoptimizeIf(Condition condition, LInstruction* instr,
231 void DeoptimizeIf(Condition condition, LInstruction* instr,
264 static Condition TokenToCondition(Token::Value op, bool is_unsigned);
269 void EmitBranch(InstrType instr, Condition condition);
271 void EmitTrueBranch(InstrType instr, Condition condition);
273 void EmitFalseBranch(InstrType instr, Condition condition)
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 202 void DeoptimizeIf(Condition condition, LInstruction* instr,
205 void DeoptimizeIf(Condition condition, LInstruction* instr,
234 static Condition TokenToCondition(Token::Value op);
239 void EmitBranch(InstrType instr, Condition condition, CRegister cr = cr7);
241 void EmitTrueBranch(InstrType instr, Condition condition, CRegister cr = cr7);
243 void EmitFalseBranch(InstrType instr, Condition condition
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
EventConditionProvider.java 34 import android.service.notification.Condition;
51 * Built-in zen condition provider for calendar event-based conditions.
149 notifyCondition(createCondition(conditionId, Condition.STATE_FALSE));
209 List<Condition> conditionsToNotify = new ArrayList<>();
220 conditionsToNotify.add(createCondition(conditionId, Condition.STATE_FALSE));
242 conditionsToNotify.add(createCondition(conditionId, Condition.STATE_FALSE));
252 conditionsToNotify.add(createCondition(conditionId, Condition.STATE_FALSE));
255 conditionsToNotify.add(createCondition(conditionId, Condition.STATE_TRUE));
259 for (Condition condition : conditionsToNotify)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ForceEarlyReturnDebuggee.java 62 public static boolean condition = true; field in class:ForceEarlyReturnDebuggee
91 while (condition)
99 while (condition)
107 while (condition)
115 while (condition)
123 while (condition)
131 while (condition)
139 while (condition)
147 while (condition)
155 while (condition)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/
optionstatus.py 159 "Condition": {
175 for condition_name in statement['Condition']:
178 condition = statement['Condition'][condition_name]
179 if ip not in condition['aws:SourceIp']:
180 condition['aws:SourceIp'].append(ip)
217 for condition_name in statement['Condition']:
219 condition = statement['Condition'][condition_name]
220 if ip in condition['aws:SourceIp']
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
optionstatus.py 144 "Condition": {
160 for condition_name in statement['Condition']:
163 condition = statement['Condition'][condition_name]
164 if ip not in condition['aws:SourceIp']:
165 condition['aws:SourceIp'].append(ip)
202 for condition_name in statement['Condition']:
204 condition = statement['Condition'][condition_name]
205 if ip in condition['aws:SourceIp']
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
extension_helper.py 124 """Create a C-preprocessor condition for the function.
127 condition is only created is all of the entry-point names for f are
128 not in the selected ABI. If all_not_in_ABI is not set, a condition
132 condition = []
136 condition.append( 'defined(need_%s)' % (gl_XML.real_category_name( category )) )
140 return condition
170 condition = condition_for_function(f, abi, 0)
171 if len(condition):
172 print '#if %s' % (string.join(condition, " || "))
256 condition = condition_for_function(f, abi, 1
    [all...]
  /art/compiler/optimizing/
prepare_for_register_allocation.h 45 void VisitCondition(HCondition* condition) OVERRIDE;
50 bool CanEmitConditionAt(HCondition* condition, HInstruction* user) const;
select_generator.h 23 * If [ Condition ]
35 * Select [FalseValue, TrueValue, Condition]
  /art/runtime/interpreter/mterp/mips64/
bincmp.S 2 * Generic two-operand compare-and-branch operation. Provide a "condition"
15 b${condition}c a0, a1, 1f
zcmp.S 2 * Generic one-operand compare-and-branch operation. Provide a "condition"
13 b${condition}zc a0, 1f

Completed in 1244 milliseconds

<<11121314151617181920>>