/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/ |
kernel.h | 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
|
/tools/test/connectivity/acts/tests/google/bt/setup/ |
bt_stack.conf | 17 # BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages ) 18 # BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages )
|
/external/clang/test/Analysis/ |
casts.cpp | 14 switch ((bool)c) { // expected-warning {{switch condition has boolean value}}
|
/external/clang/test/FixIt/ |
no-macro-fixit.c | 12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
|
/external/llvm/test/Analysis/ScalarEvolution/ |
nowrap-preinc-limits.ll | 3 define void @f(i1* %condition) { 18 %c = load volatile i1, i1* %condition 25 define void @g(i1* %condition) { 39 %c = load volatile i1, i1* %condition
|
/external/llvm/test/CodeGen/X86/ |
isnan2.ll | 3 ; This should not need to materialize 0.0 to evaluate the condition.
|
/external/llvm/test/MC/ARM/ |
udf-arm-diagnostics.s | 10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
|
/external/llvm/test/Transforms/LoopUnswitch/ |
cold-loop.ll | 3 ;; trivial condition should be unswithed regardless of coldness. 9 br i1 %cond2, label %continue, label %loop_exit ; trivial condition 19 ;; cold non-trivial condition should not be unswitched. 26 br i1 %cond2, label %continue1, label %continue2 ; non-trivial condition
|
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/ |
opencv.props | 5 <Runtime Condition="'$(ApplicationType)'=='Windows Phone'">WP</Runtime> 6 <Runtime Condition="'$(ApplicationType)'=='Windows Store'">WS</Runtime> 11 <DebugSuffix Condition="'$(Configuration)'=='Debug'">d</DebugSuffix> 12 <DebugSuffix Condition="'$(Configuration)'!='Debug'"></DebugSuffix>
|
/frameworks/base/core/java/android/service/notification/ |
ConditionProviderService.java | 109 * Called by the system when there is a new {@link Condition} to be managed by this provider. 110 * @param conditionId the Uri describing the criteria of the condition. 115 * Called by the system when a {@link Condition} has been deleted. 116 * @param conditionId the Uri describing the criteria of the deleted condition. 129 * Informs the notification manager that the state of a Condition has changed. Use this method 133 * {@link Condition#id}. 134 * @param condition the condition that has changed. 136 public final void notifyCondition(Condition condition) { [all...] |
/hardware/ti/omap4-aah/libtiutils/ |
DebugUtils.h | 174 #define _DBGUTILS_PLAIN_ASSERT(condition) \ 177 if ( !(condition) ) \ 180 "Condition failed: " #condition); \ 187 #define _DBGUTILS_PLAIN_ASSERT_X(condition, ...) \ 190 if ( !(condition) ) \ 193 "Condition failed: " #condition ": " __VA_ARGS__); \ 200 #define DBGUTILS_ASSERT(condition) \ 203 if ( !(condition) ) \ [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-bend1.d | 9 # This test depend on that the non-at-end condition is tested before
|
/external/autotest/frontend/client/src/autotest/tko/ |
TkoSpreadsheetUtils.java | 13 public static TestSet getTestSet(CellInfo cellInfo, JSONObject condition, 17 return new SingleTestSet(cellInfo.testIndex, condition); 20 ConditionTestSet testSet = new ConditionTestSet(condition);
|
/external/icu/icu4c/source/test/intltest/ |
intltest.vcxproj | 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 36 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 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" /> 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|x64'" Label="PropertySheets"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" / [all...] |
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
CondVar.h | 21 * Encapsulate a condition variable for thread synchronization. 61 ** Description: Block the caller and wait for a condition. 73 ** Description: Block the caller and wait for a condition.
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
Assert.java | 56 * Verify that condition is true. Throw an AssertFailedException if it is false.
57 * @param condition - the condition that should be true
58 * @throws AssertFailedException - if condition is false
60 public static void isTrue(boolean condition, String message) {
61 if (!condition) {
67 * Verify that condition is false. Throw an AssertFailedException if it is true.
68 * @param condition - the condition that should be false
69 * @throws AssertFailedException - if condition is true [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/util/ |
Assert.java | 56 * Verify that condition is true. Throw an AssertFailedException if it is false.
57 * @param condition - the condition that should be true
58 * @throws AssertFailedException - if condition is false
60 public static void isTrue(boolean condition, String message) {
61 if (!condition) {
67 * Verify that condition is false. Throw an AssertFailedException if it is true.
68 * @param condition - the condition that should be false
69 * @throws AssertFailedException - if condition is true [all...] |
/external/webrtc/webrtc/system_wrappers/source/ |
condition_variable.cc | 26 // Try to create native condition variable implementation. 29 // Native condition variable implementation does not exist. Create generic 30 // condition variable based on events.
|
/packages/apps/Nfc/nci/jni/ |
CondVar.h | 18 * Encapsulate a condition variable for thread synchronization. 57 ** Description: Block the caller and wait for a condition. 69 ** Description: Block the caller and wait for a condition.
|
/packages/apps/Settings/src/com/android/settings/dashboard/conditional/ |
ConditionAdapterUtils.java | 54 if (item instanceof Condition) { 55 ((Condition) item).silence(); 63 public static void bindViews(final Condition condition, 67 card.setTag(condition); 69 view.icon.setImageIcon(condition.getIcon()); 70 view.title.setText(condition.getTitle()); 72 expand.setTag(condition); 79 CharSequence[] actions = condition.getActions(); 85 view.summary.setText(condition.getSummary()) [all...] |
/packages/services/Telephony/src/com/android/phone/ |
Assert.java | 29 public static void isTrue(boolean condition) { 30 if (!condition) { 31 throw new AssertionError("Expected condition to be true");
|
/sdk/find_java2/WinLauncher2/ |
WinLauncher2.vcxproj | 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
37 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
38 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
41 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
44 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
50 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> [all...] |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
Condition.java | 13 * {@code Condition} factors out the {@code Object} monitor 19 * and statements, a {@code Condition} replaces the use of the Object 22 * <p>Conditions (also known as <em>condition queues</em> or 23 * <em>condition variables</em>) provide a means for one thread to 25 * thread that some state condition may now be true. Because access 28 * condition. The key property that waiting for a condition provides 32 * <p>A {@code Condition} instance is intrinsically bound to a lock. 33 * To obtain a {@code Condition} instance for a particular {@link Lock} 45 * {@link Condition} instances [all...] |