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

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/util/asserts/
$assert.java 30 * @param condition
33 public static void ASSERT (final boolean condition, final String msg)
37 if (! condition) throw new RuntimeException (msg);
41 public static void ASSERT (final boolean condition)
45 if (! condition) throw new RuntimeException ("ASSERTION FAILURE");
  /external/webkit/Source/WebCore/inspector/
ScriptBreakpoint.h 42 ScriptBreakpoint(int lineNumber, int columnNumber, const String& condition)
45 , condition(condition)
51 String condition; member in struct:WebCore::ScriptBreakpoint
  /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/clang/test/SemaCXX/
warn-string-conversion.cpp 5 void assert(bool 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/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/valgrind/main/drd/tests/
pth_uninitialized_cond.stderr.exp 2 Statically initialized condition variable.
3 Uninitialized condition variable.
4 condition variable has not been initialized: cond 0x........
  /external/webkit/Source/WebCore/dom/
NodeFilter.h 68 static PassRefPtr<NodeFilter> create(PassRefPtr<NodeFilterCondition> condition)
70 return adoptRef(new NodeFilter(condition));
84 void setCondition(PassRefPtr<NodeFilterCondition> condition) { ASSERT(!m_condition); m_condition = condition; }
87 NodeFilter(PassRefPtr<NodeFilterCondition> condition) : m_condition(condition) { }
  /external/webkit/Tools/DumpRenderTree/chromium/
config.h 40 #define CHECK(condition) while (false && (condition)) std::cerr
41 #define DCHECK(condition) while (false && (condition)) std::cerr
  /bionic/libc/kernel/common/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /development/ndk/platforms/android-3/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  /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
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
kernel.h 27 /* Force a compilation error if condition is true */
28 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
30 /* Force a compilation error if condition is true, but also produce a
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
kernel.h 33 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))

Completed in 342 milliseconds

1 2 3 4 5 6 7 8 91011>>