OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:condition
(Results
1 - 25
of
2873
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/kernel-headers/original/asm-generic/
bug.h
15
#define BUG_ON(
condition
) do { if (unlikely((
condition
)!=0)) BUG(); } while(0)
19
#define WARN_ON(
condition
) do { \
20
if (unlikely((
condition
)!=0)) { \
33
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
37
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
41
#define WARN_ON_ONCE(
condition
) \
46
if (unlikely((
condition
) && __warn_once)) {
[
all
...]
/external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp
34
const
Condition
MacroAssemblerSH4::Equal = SH4Assembler::EQ;
35
const
Condition
MacroAssemblerSH4::NotEqual = SH4Assembler::NE;
36
const
Condition
MacroAssemblerSH4::GreaterThan = SH4Assembler::GT;
37
const
Condition
MacroAssemblerSH4::GreaterThanOrEqual = SH4Assembler::GE;
38
const
Condition
MacroAssemblerSH4::LessThan = SH4Assembler::LT;
39
const
Condition
MacroAssemblerSH4::LessThanOrEqual = SH4Assembler::LE;
40
const
Condition
MacroAssemblerSH4::UGreaterThan = SH4Assembler::HI;
41
const
Condition
MacroAssemblerSH4::UGreaterThanOrEqual = SH4Assembler::HS;
42
const
Condition
MacroAssemblerSH4::ULessThan = SH4Assembler::LI;
43
const
Condition
MacroAssemblerSH4::ULessThanOrEqual = SH4Assembler::LS
[
all
...]
/external/icu4c/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
...]
/bionic/libc/kernel/common/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/development/ndk/platforms/android-3/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/asm-generic/
bug.h
22
#define BUG_ON(
condition
) do { if (
condition
) ; } while(0)
26
#define WARN_ON(
condition
) do { if (
condition
) ; } while(0)
29
#define WARN_ON_ONCE(
condition
) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((
condition
) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
/external/icu4c/i18n/
i18n.vcxproj
25
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
35
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
40
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
48
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
49
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
57
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
[
all
...]
/external/valgrind/main/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/chromium/chrome/browser/debugger/manual_tests/resources/
loop-statements.js
9
function
condition
()
function
/external/webkit/Source/WebCore/manual-tests/inspector/resources/
loop-statements.js
9
function
condition
()
function
/sdk/anttasks/src/com/android/ant/
IfElseTask.java
22
import org.apache.tools.ant.taskdefs.
condition
.And;
25
* If (
condition
) then: {@link Sequential} else: {@link Sequential}.
28
* <if
condition
="${prop with a boolean value}">
38
* <
condition
>
40
* </
condition
>
48
* <
condition
> behaves like an <and>
condition
.
51
* <if
condition
="${some.
condition
}">
67
* Sets the
condition
valu
[
all
...]
/external/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/icu4c/common/
common.vcxproj
25
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
35
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
40
<PropertyGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
48
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
49
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56
<ImportGroup
Condition
="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
57
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition
="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
[
all
...]
/external/iptables/extensions/
libxt_quota.man
2
packet. The
condition
matches until the byte counter reaches zero. Behavior
3
is reversed with negation (i.e. the
condition
does not match until the
/external/kernel-headers/original/linux/netfilter_ipv4/
ipt_iprange.h
6
#define IPRANGE_SRC_INV 0x10 /* Negate the
condition
*/
7
#define IPRANGE_DST_INV 0x20 /* Negate the
condition
*/
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/
ipt_iprange.h
8
#define IPRANGE_SRC_INV 0x10 /* Negate the
condition
*/
9
#define IPRANGE_DST_INV 0x20 /* Negate the
condition
*/
Completed in 2622 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>