HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 51 - 75 of 11431) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips64-mips3d.l 2 .*:150: Warning: condition code register should be even for bc1any2f, was 1
3 .*:152: Warning: condition code register should be even for bc1any2t, was 3
4 .*:154: Warning: condition code register should be 0 or 4 for bc1any4f, was 1
5 .*:156: Warning: condition code register should be 0 or 4 for bc1any4t, was 2
  /external/autotest/frontend/client/src/autotest/tko/
LabelField.java 8 String condition = " IS NOT NULL"; local
10 condition = " IS NULL";
12 return getFilteringName() + condition;
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_Assert.pbtxt 4 name: "condition"
6 The condition to evaluate.
12 The tensors to print out when condition is false.
21 summary: "Asserts that the given condition is true."
23 If `condition` evaluates to false, print the list of tensors in `data`.
api_def_Select.pbtxt 10 = A `Tensor` which may have the same shape as `condition`.
11 If `condition` is rank 1, `t` may have higher rank,
12 but its first dimension must match the size of `condition`.
28 summary: "Selects elements from `t` or `e`, depending on `condition`."
33 The `condition` tensor must be a scalar if `t` and `e` are scalars.
34 If `t` and `e` are vectors or higher rank, then `condition` must be either a
38 The `condition` tensor acts as a mask that chooses, based on the value at each
42 If `condition` is a vector and `t` and `e` are higher rank matrices, then
44 If `condition` has the same shape as `t` and `e`, then it chooses which
50 # 'condition' tensor is [[True, False
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18747.go 10 if {} // ERROR "missing condition in if statement"
13 {} // ERROR "missing condition in if statement"
15 if ; {} // ERROR "missing condition in if statement"
17 if foo; {} // ERROR "missing condition in if statement"
19 if foo; // ERROR "missing condition in if statement"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18747.go 10 if {} // ERROR "missing condition in if statement"
13 {} // ERROR "missing condition in if statement"
15 if ; {} // ERROR "missing condition in if statement"
17 if foo; {} // ERROR "missing condition in if statement"
19 if foo; // ERROR "missing condition in if statement"
  /external/icu/icu4c/source/samples/uresb/
resources.vcxproj 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
29 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
32 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
41 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
42 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
45 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
46 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
49 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
50 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /external/fio/compiler/
compiler.h 39 #define compiletime_assert(condition, msg) _Static_assert(condition, msg)
48 #define __compiletime_error_fallback(condition) do { } while (0)
51 #define __compiletime_assert(condition, msg, prefix, suffix) \
53 int __cond = !(condition); \
60 #define _compiletime_assert(condition, msg, prefix, suffix) \
61 __compiletime_assert(condition, msg, prefix, suffix)
63 #define compiletime_assert(condition, msg) \
64 _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
68 #define compiletime_assert(condition, msg) do { } while (0
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 4 * A Condition implements part of a multi-step match. We sometimes need to write matchers
13 public abstract class Condition<T> {
17 Condition<O> apply(I value, Description mismatch);
20 private Condition() { }
23 public abstract <U> Condition<U> and(Step<? super T, U> mapping);
26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); }
29 public static <T> Condition<T> notMatched() {
30 return (Condition<T>) NOT_MATCHED;
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) {
37 private static final class Matched<T> extends Condition<T>
    [all...]
  /frameworks/support/testutils/src/main/java/androidx/testutils/
PollingCheck.java 22 * Utility used for testing that allows to poll for a certain condition to happen within a timeout.
30 * The condition that the PollingCheck should use to proceed successfully.
34 * @return Whether the polling condition has been met.
72 * Instantiate and start polling for a given condition with a default 3000ms timeout.
73 * @param condition The condition to check for success.
75 public static void waitFor(final PollingCheckCondition condition) {
79 return condition.canProceed();
85 * Instantiate and start polling for a given condition.
87 * @param condition The condition to check for success
    [all...]
  /external/icu/icu4c/source/common/
common.vcxproj 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
32 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
44 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
53 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
54 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/
contextlib_ext.py 8 def __init__(self, manager, condition):
10 self._condition = condition
23 def Optional(manager, condition):
24 """Wraps the provided context manager and runs it if condition is True.
28 condition: If true, runs the given context manager.
32 return _OptionalContextManager(manager, condition)
  /external/llvm/test/MC/ARM/
invalid-crc32.s 11 @ CHECK: error: instruction 'crc32cb' is not predicable, but condition code specified
12 @ CHECK: error: instruction 'crc32b' is not predicable, but condition code specified
13 @ CHECK: error: instruction 'crc32ch' is not predicable, but condition code specified
14 @ CHECK: error: instruction 'crc32h' is not predicable, but condition code specified
15 @ CHECK: error: instruction 'crc32cw' is not predicable, but condition code specified
16 @ CHECK: error: instruction 'crc32w' is not predicable, but condition code specified
thumb-invalid-crypto.txt 5 @ CHECK: error: instruction 'aesd' is not predicable, but condition code specified
7 @ CHECK: error: instruction 'aesimc' is not predicable, but condition code specified
9 @ CHECK: error: instruction 'aesmc' is not predicable, but condition code specified
11 @ CHECK: error: instruction 'aese' is not predicable, but condition code specified
15 @ CHECK: error: instruction 'sha1h' is not predicable, but condition code specified
17 @ CHECK: error: instruction 'sha1su1' is not predicable, but condition code specified
19 @ CHECK: error: instruction 'sha256su0' is not predicable, but condition code specified
23 @ CHECK: error: instruction 'sha1c' is not predicable, but condition code specified
25 @ CHECK: error: instruction 'sha1m' is not predicable, but condition code specified
27 @ CHECK: error: instruction 'sha1p' is not predicable, but condition code specifie
    [all...]
  /external/valgrind/drd/tests/
pth_uninitialized_cond.c 2 * condition variables for dynamically allocated memory.
16 fprintf(stderr, "Statically initialized condition variable.\n");
20 fprintf(stderr, "Uninitialized condition variable.\n");
pth_uninitialized_cond.stderr.exp 2 Statically initialized condition variable.
3 Uninitialized condition variable.
4 condition variable has not been initialized: cond 0x........
  /external/syslinux/gpxe/src/include/
assert.h 35 * Assert a condition at run-time.
37 * If the condition is not true, a debug message will be printed.
43 #define assert( condition ) \
45 if ( ASSERTING && ! (condition) ) { \
47 #condition, __FILE__, __LINE__ ); \
52 * Assert a condition at link-time.
54 * If the condition is not true, the link will fail with an unresolved
61 #define linker_assert( condition, error_symbol ) \
62 if ( ! (condition) ) { \
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/
Condition.java 11 public abstract class Condition {
16 * Converts the condition to be run on UI thread.
18 public static Condition runOnUiThread(final Condition condition) {
20 return new Condition() {
30 value.set(condition.isTrue());
46 public static Condition minChildCount(final UiObject2 obj, final int childCount) {
47 return new Condition() {
  /external/zlib/src/contrib/vstudio/vc10/
minizip.vcxproj 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
54 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
65 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/vstudio/vc10/
minizip.vcxproj 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Itanium'" Label="Configuration">
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Itanium'" Label="Configuration">
50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
54 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
65 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    [all...]
  /external/autotest/frontend/tko/preconfigs/metrics/
kernel_compare 4 globalFilter[0][condition]: IN ('dbench', 'tbench')
6 globalFilter[1][condition]: = 'throughput'
8 globalFilter[2][condition]: = 'my_host'
15 seriesFilters[0][0][condition]: LIKE 'my_kernel_1.%'
22 seriesFilters[1][0][condition]: LIKE 'my_kernel_2.%'
27 globalFilter[0][condition]: IN ('dbench', 'tbench')
29 globalFilter[1][condition]: = 'throughput'
31 globalFilter[2][condition]: = 'my_host'
38 seriesFilters[0][0][condition]: LIKE 'my_kernel_1.%'
45 seriesFilters[1][0][condition]: LIKE 'my_kernel_2.%
    [all...]
perf 4 globalFilter[0][condition]: = 'my_host'
11 seriesFilters[0][0][condition]: = 'elapsed'
13 seriesFilters[0][1][condition]: = 'kernbench'
20 seriesFilters[1][0][condition]: = 'throughput'
22 seriesFilters[1][1][condition]: = 'dbench'
29 seriesFilters[2][0][condition]: = 'throughput'
31 seriesFilters[2][1][condition]: = 'tbench'
38 seriesFilters[3][0][condition]: = 'score'
40 seriesFilters[3][1][condition]: = 'unixbench'
47 seriesFilters[4][0][condition]: = '32768-4096-fwrite
    [all...]
  /external/clang/test/Analysis/
cfref_rdar6080742.c 34 void DebugTraceIf(unsigned int condition, const char *format,...);
37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE__, __LINE__); }
38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [File: %s, Line: %lu]", #condition, message, __FILE__, __LINE__); }
39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE__, __LINE__);
    [all...]
  /external/googletest/googletest/msvc/2010/
gtest_prod_test-md.vcxproj 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
49 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
50 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
53 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
55 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
56 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
SoftAssert.java 28 * without failing the test. Tests don?t stop running even if an assertion condition fails,
43 * Check if condition is true
46 * @param eventTimeInNs the time at which the condition occurred
49 * @param condition condition for test
52 String actualResult, boolean condition) {
53 if (condition) {
75 * @param condition condition for test
78 String actualResult, boolean condition) {
    [all...]

Completed in 775 milliseconds

1 23 4 5 6 7 8 91011>>