Searched defs:Assert (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium/testing/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition): function
59 Assert(p.exited)
61 Assert('InitGoogleTest' in p.output)
/external/chromium_org/testing/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition): function
59 Assert(p.exited)
61 Assert('InitGoogleTest' in p.output)
/external/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition): function
59 Assert(p.exited)
61 Assert('InitGoogleTest' in p.output)
/external/protobuf/gtest/test/
H A Dgtest_uninitialized_test.py42 def Assert(condition): function
59 Assert(p.exited)
61 Assert('InitGoogleTest' in p.output)
/external/compiler-rt/make/
H A Dutil.mk78 # Function: Assert value message
81 Assert = $(if $(1),,\ macro
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcommon.h84 inline bool Assert(bool result, const char * function, const char * file, function in namespace:talk_base
101 #define ASSERT(x) (void)talk_base::Assert((x),__FUNCTION__,__FILE__,__LINE__,#x)
105 #define VERIFY(x) talk_base::Assert((x),__FUNCTION__,__FILE__,__LINE__,#x)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java16 * <code>Assert</code> is useful for for embedding runtime sanity checks in code. The predicate
27 public final class Assert { class
33 private Assert() { method in class:Assert
/external/junit/src/junit/framework/
H A DAssert.java7 public class Assert { class
11 protected Assert() { method in class:Assert
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dcommon.h91 // Assert (and from the ASSERT macro in debug mode) before any other action
119 inline bool Assert(bool result, const char* function, const char* file, function in namespace:talk_base
137 (void)talk_base::Assert((x), __FUNCTION__, __FILE__, __LINE__, #x)
141 #define VERIFY(x) talk_base::Assert((x), __FUNCTION__, __FILE__, __LINE__, #x)
/external/junit/src/org/junit/
H A DAssert.java13 * <code>Assert.assertEquals(...)</code>, however, they read better if they
17 * import static org.junit.Assert.*;
24 public class Assert { class
28 protected Assert() { method in class:Assert
/external/zlib/src/
H A Dzutil.h223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
230 # define Assert(cond,msg) macro
/external/zlib/
H A Dzutil.h223 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
230 # define Assert(cond,msg) macro
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinttree.c19 static void Assert(int assertion, const char *error) function
154 Assert(!it->nil->red,"nil not red in ITLeftRotate");
155 Assert((it->nil->maxHigh=LONG_MIN),
218 Assert(!it->nil->red,"nil not red in ITRightRotate");
219 Assert((it->nil->maxHigh=LONG_MIN),
263 Assert(!it->nil->red,"nil not red in ITTreeInsertHelp");
264 Assert((it->nil->maxHigh=INT_MIN),
366 Assert(!it->nil->red,"nil not red in ITTreeInsert");
367 Assert(!it->root->red,"root not red in ITTreeInsert");
368 Assert((i
[all...]
/external/chromium_org/third_party/zlib/
H A Dzutil.h264 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
271 # define Assert(cond,msg) macro
/external/clang/test/Analysis/
H A Dcfref_rdar6080742.c37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE__, __LINE__); } macro
/external/llvm/include/llvm/Support/
H A DValueHandle.h48 Assert, enumerator in enum:llvm::ValueHandleBase::HandleBaseKind
213 AssertingVH() : ValueHandleBase(Assert) {}
214 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {}
215 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {}
/external/qemu/distrib/zlib-1.2.3/
H A Dzutil.h245 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} macro
252 # define Assert(cond,msg) macro
/external/llvm/lib/Analysis/
H A DLint.cpp161 // Assert - We know that cond should be true, if not print an error message.
162 #define Assert(C, M) \ macro
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDebuggerModel.js99 Assert: "assert",
H A DConsoleModel.js259 Assert: "assert",
/external/chromium_org/v8/src/
H A Dliveedit-debugger.js316 Assert(current_index == compile_info.length);
453 function Assert(condition, message) { function
456 throw "Assert " + message;
458 throw "Assert";
516 Assert(false, "Cannot translate position in changed area");
592 Assert(index == code_info_array.length);
671 Assert("Unreachable", false);
804 Assert(old_code_tree.status != FunctionStatus.DAMAGED,
/external/v8/src/
H A Dliveedit-debugger.js299 Assert(current_index == compile_info.length);
436 function Assert(condition, message) { function
439 throw "Assert " + message;
441 throw "Assert";
499 Assert(false, "Cannot translate position in changed area");
575 Assert(index == code_info_array.length);
654 Assert("Unreachable", false);
775 Assert(old_code_tree.status != FunctionStatus.DAMAGED,
/external/llvm/lib/IR/
H A DVerifier.cpp389 // Assert - We know that cond should be true, if not print an error message.
390 #define Assert(C, M) \ macro
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc600 Assert(equal, "Operand not a number");
607 Assert(equal, "Operand is not a smi");
613 Assert(not_equal, "Operand is not a string");
618 Assert(below, "Operand is not a string");
624 Assert(not_equal, "Operand is a smi");
1107 // Assert that result actually contains top on entry.
1853 Assert(above_equal, "Invalid HandleScope level");
2366 void MacroAssembler::Assert(Condition cc, const char* msg) { function in class:v8::MacroAssembler
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc257 Assert(
2947 // Assert that result actually contains top on entry. t9 is used
3017 // Assert that result actually contains top on entry. t9 is used
3293 Assert(eq, "Expecting alignment for CopyBytes",
4326 void MacroAssembler::Assert(Condition cc, const char* msg, function in class:v8::internal::MacroAssembler
4778 Assert(ne, "Operand is a smi", at, Operand(zero_reg));
4785 Assert(eq, "Operand is a smi", at, Operand(zero_reg));
4792 Assert(ne, "Operand is not a string", t0, Operand(zero_reg));
4796 Assert(lo, "Operand is not a string", object, Operand(FIRST_NONSTRING_TYPE));
4806 Assert(e
[all...]

Completed in 1186 milliseconds

12