HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 1 - 25 of 3683) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 28 * error condition as well as as an optional text explanation. Typical errors are:<p>
53 * <tr><td>500</td><td>undefined-condition</td><td>WAIT</td></tr>
54 * <tr><td>400</td><td>unexpected-condition</td><td>WAIT</td></tr>
64 private String condition; field in class:XMPPError
70 * Creates a new error with the specified condition infering the type and code.
71 * If the Condition is predefined, client code should be like:
72 * new XMPPError(XMPPError.Condition.remote_server_timeout);
73 * If the Condition is not predefined, invocations should be like
74 * new XMPPError(new XMPPError.Condition("my_own_error"));
76 * @param condition the error condition
359 private Condition condition; field in class:XMPPError.ErrorSpecification
    [all...]
  /external/linux-tools-perf/util/include/asm/
bug.h 6 #define WARN(condition, format...) ({ \
7 int __ret_warn_on = !!(condition); \
13 #define WARN_ONCE(condition, format...) ({ \
15 int __ret_warn_once = !!(condition); \
  /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...]
  /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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/4/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; })
  /prebuilts/ndk/5/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; })
  /prebuilts/ndk/6/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; })
  /prebuilts/ndk/6/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; })
  /prebuilts/ndk/7/platforms/android-14/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; })
  /prebuilts/ndk/7/platforms/android-14/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/platforms/android-4/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/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; })
  /prebuilts/ndk/7/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; })

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 91011>>