Searched defs:ASSERT (Results 1 - 25 of 31) sorted by relevance

12

/external/srec/portable/include/
H A Dptstutils.h27 #ifdef ASSERT
28 #undef ASSERT macro
35 #define ASSERT(x) \ macro
/external/webkit/Source/WebKit/mac/Misc/
H A DWebAssertions.h32 #define ASSERT(...) ((void)0) macro
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Ddebug.h36 #define ASSERT(expression) do { \ macro
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromiumIncludes.h54 // have to redefine ASSERT() to a no-op, as this is enabled in debug builds.
55 // Unfortunately, ASSERT() is defined from config.h, so we can't get in first.
58 #undef ASSERT macro
59 #define ASSERT(assertion) (void(0)) macro
H A DWebCookieJar.cpp37 #undef ASSERT macro
38 #define ASSERT(assertion, ...) do \ macro
227 ASSERT(lastCount != m_count, "Wait finished without incrementing m_count %d %d", m_count, lastCount);
H A DWebRequest.cpp52 #undef ASSERT macro
53 #define ASSERT(assertion, ...) do \ macro
126 ASSERT(m_loadState == Finished, "dtor called on a WebRequest in a different state than finished (%d)", m_loadState);
155 ASSERT(m_loadState < Finished, "(%p) called finish on an already finished WebRequest (%d) (%s)", this, m_loadState, m_url.c_str());
196 ASSERT(m_loadState == Created, "appendFileToUpload called on a WebRequest not in CREATED state: (%s)", m_url.c_str());
204 ASSERT(m_loadState == Created, "appendBytesToUpload called on a WebRequest not in CREATED state: (%s)", m_url.c_str());
233 ASSERT(m_loadState == Created, "Start called on a WebRequest not in CREATED state: (%s)", m_url.c_str());
261 ASSERT(m_loadState >= Started, "Cancel called on a not started WebRequest: (%s)", m_url.c_str());
262 ASSERT(m_loadState != Cancelled, "Cancel called on an already cancelled WebRequest: (%s)", m_url.c_str());
270 ASSERT(m_reques
[all...]
/external/emma/core/java12/com/vladium/util/asserts/
H A D$assert.java33 public static void ASSERT (final boolean condition, final String msg) method in class:$assert
41 public static void ASSERT (final boolean condition) method in class:$assert
/external/webkit/Source/ThirdParty/ANGLE/src/common/
H A Ddebug.h35 #define ASSERT(expression) do { \ macro
/external/srec/srec/include/
H A Dportable.h39 #define ASSERT passert macro
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcommon.h100 #ifndef ASSERT
101 #define ASSERT(x) (void)talk_base::Assert((x),__FUNCTION__,__FILE__,__LINE__,#x) macro
116 #ifndef ASSERT
117 #define ASSERT(x) (void)0
H A Dphysicalsocketserver.cc152 ASSERT(addrlen == sizeof(addr));
167 ASSERT(addrlen == sizeof(addr));
286 ASSERT(sent <= static_cast<int>(cb));
307 ASSERT(sent <= static_cast<int>(cb));
425 ASSERT(false);
444 ASSERT((0 <= value) && (value <= 65536));
503 ASSERT(false);
564 ASSERT(false);
598 ASSERT(signum < ARRAY_SIZE(received_signal_)); function
608 ASSERT(signu
[all...]
/external/qemu/
H A Dcbuffer.c22 # define ASSERT(cond,fmt,...) ({ if (!(cond)) { fprintf(stderr, fmt, __VA_ARGS__); assert(cond); } }) macro
24 # define ASSERT(cond,fmt,...) ((void)0) macro
91 ASSERT(avail >= 0, "avail is negative: %d", avail);
99 ASSERT( wpos >= 0 && wpos < cb->size, "wpos is out-of-bounds: %d (rpos=%d)", wpos, cb->rpos);
127 ASSERT(avail >= 0, "avail is negative: %d", avail);
132 ASSERT((rpos >= 0 && rpos < cb->size), "rpos is out-of-bounds: %d", rpos);
/external/v8/src/
H A Dchecks.h257 // The ASSERT macro is equivalent to CHECK except that it only
261 #define ASSERT(condition) CHECK(condition) macro
270 #define ASSERT(condition) ((void) 0) macro
H A Ddate.cc57 ASSERT(stamp_ != Smi::FromInt(kInvalidStamp));
98 ASSERT(DaysFromYearMonth(*year, 0) + days == save_days);
118 ASSERT(days >= -1);
119 ASSERT(is_leap || (days >= 0));
120 ASSERT((days < 365) || (is_leap && (days < 366)));
121 ASSERT(is_leap == ((*year % 4 == 0) && (*year % 100 || (*year % 400 == 0))));
122 ASSERT(is_leap || ((DaysFromYearMonth(*year, 0) + days) == save_days));
123 ASSERT(!is_leap || ((DaysFromYearMonth(*year, 0) + days + 1) == save_days));
149 ASSERT(DaysFromYearMonth(*year, *month) + *day - 1 == save_days);
171 ASSERT(mont
172 ASSERT(month < 12); function
[all...]
H A Dhashmap.h171 ASSERT(occupancy_ < capacity_); function
229 ASSERT(map_ - 1 <= p && p < end);
242 ASSERT(key != NULL);
244 ASSERT(IsPowerOf2(capacity_));
247 ASSERT(map_ <= p && p < end);
249 ASSERT(occupancy_ < capacity_); // Guarantees loop termination.
263 ASSERT(IsPowerOf2(capacity));
H A Dd8.cc63 #ifndef ASSERT
64 #define ASSERT(condition) assert(condition) macro
167 ASSERT(try_catch.HasCaught());
173 ASSERT(!try_catch.HasCaught());
294 ASSERT(number->IsNumber());
308 ASSERT(kMaxLength == i::ExternalArray::kMaxLength);
331 ASSERT(element_size == 1 || element_size == 2 || element_size == 4 ||
693 ASSERT(counter->is_histogram() == is_histogram);
907 ASSERT(!context.IsEmpty());
H A Dspaces.cc72 ASSERT(owner == HEAP->old_pointer_space() ||
82 ASSERT(page->WasSweptPrecisely());
91 ASSERT(!space->was_swept_conservatively());
104 ASSERT(cur_addr_ == cur_end_);
111 ASSERT(cur_addr_ == cur_page->area_end());
117 ASSERT(cur_page->WasSweptPrecisely());
136 ASSERT(code_range_ == NULL);
147 ASSERT(code_range_->size() == requested);
213 ASSERT(current_allocation_block_index_ < allocation_list_.length()); function
228 ASSERT(*allocate
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DAssertions.h64 /* Disable ASSERT* macros in release mode. */
166 To test for unknown errors and verify assumptions, use ASSERT instead, to avoid impacting performance in release builds.
193 Print a backtrace to the same location as ASSERT messages.
208 /* ASSERT, ASSERT_NOT_REACHED, ASSERT_UNUSED
215 /* FIXME: We include this here only to avoid a conflict with the ASSERT macro. */
223 /* FIXME: Change to use something other than ASSERT to avoid this conflict with the underlying platform */
224 #undef ASSERT macro
237 #define ASSERT(assertion) ((void)0) macro
250 #define ASSERT(assertion) do \ macro
262 #define ASSERT_UNUSED(variable, assertion) ASSERT(assertio
[all...]
/external/clang/test/Sema/
H A Dbuiltins.c117 #define ASSERT(...) { int arr[(__VA_ARGS__) ? 1 : -1]; } macro
118 #define T(...) ASSERT(__builtin_constant_p(__VA_ARGS__))
119 #define F(...) ASSERT(!__builtin_constant_p(__VA_ARGS__))
150 ASSERT(OPT("abc"));
151 ASSERT(!OPT("abcd"));
154 ASSERT(!OPT(test17_c)); // expected-warning {{folded}}
155 ASSERT(!OPT(&test17_c[0])); // expected-warning {{folded}}
156 ASSERT(!OPT((char*)test17_c)); // expected-warning {{folded}}
157 ASSERT(!OPT(test17_d)); // expected-warning {{folded}}
158 ASSERT(!OP
[all...]
/external/mesa3d/src/mesa/main/
H A Dcompiler.h319 * ASSERT macro
323 # define ASSERT(X) _CHECK(X) macro
325 # define ASSERT(X) assert(X) macro
327 # define ASSERT(X) macro
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp143 ASSERT(m_numBufferedBytes < sizeof(m_bufferedBytes)); function
146 ASSERT(bytesToPutInBuffer != 0);
152 ASSERT(bytesRead <= m_numBufferedBytes + bytesToPutInBuffer);
186 ASSERT(static_cast<int>(bytesRead) <= inputBufferLength);
215 ASSERT(bytesRead <= sourceLength);
238 ASSERT(m_numBufferedBytes == 0);
254 ASSERT(!(bytesWritten % sizeof(UChar)));
263 ASSERT(!(bytesWritten % sizeof(UChar)));
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/
H A DSDL_gapivideo.c81 #ifndef ASSERT
82 #define ASSERT(x) macro
512 ASSERT(hPalette);
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c43 #define ASSERT(x) passert(x) macro
103 { // ASSERT( iBit<256);
110 ASSERT( iBit<256);
/external/doclava/src/com/google/doclava/parser/
H A DJavaLexer.java57 public static final int ASSERT=29; field in class:JavaLexer
1679 // $ANTLR start "ASSERT"
1682 int _type = ASSERT;
1698 // $ANTLR end "ASSERT"
10531 // src/com/google/doclava/parser/Java.g:1:8: ( LONGLITERAL | INTLITERAL | FLOATLITERAL | DOUBLELITERAL | CHARLITERAL | STRINGLITERAL | WS | COMMENT | LINE_COMMENT | ABSTRACT | ASSERT | BOOLEAN | BREAK | BYTE | CASE | CATCH | CHAR | CLASS | CONST | CONTINUE | DEFAULT | DO | DOUBLE | ELSE | ENUM | EXTENDS | FINAL | FINALLY | FLOAT | FOR | GOTO | IF | IMPLEMENTS | IMPORT | INSTANCEOF | INT | INTERFACE | LONG | NATIVE | NEW | PACKAGE | PRIVATE | PROTECTED | PUBLIC | RETURN | SHORT | STATIC | STRICTFP | SUPER | SWITCH | SYNCHRONIZED | THIS | THROW | THROWS | TRANSIENT | TRY | VOID | VOLATILE | WHILE | TRUE | FALSE | NULL | LPAREN | RPAREN | LBRACE | RBRACE | LBRACKET | RBRACKET | SEMI | COMMA | DOT | ELLIPSIS | EQ | BANG | TILDE | QUES | COLON | EQEQ | AMPAMP | BARBAR | PLUSPLUS | SUBSUB | PLUS | SUB | STAR | SLASH | AMP | BAR | CARET | PERCENT | PLUSEQ | SUBEQ | STAREQ | SLASHEQ | AMPEQ | BAREQ | CARETEQ | PERCENTEQ | MONKEYS_AT | BANGEQ | GT | LT | IDENTIFIER )
10606 // src/com/google/doclava/parser/Java.g:1:119: ASSERT
16736 return "1:1: Tokens : ( LONGLITERAL | INTLITERAL | FLOATLITERAL | DOUBLELITERAL | CHARLITERAL | STRINGLITERAL | WS | COMMENT | LINE_COMMENT | ABSTRACT | ASSERT | BOOLEAN | BREAK | BYTE | CASE | CATCH | CHAR | CLASS | CONST | CONTINUE | DEFAULT | DO | DOUBLE | ELSE | ENUM | EXTENDS | FINAL | FINALLY | FLOAT | FOR | GOTO | IF | IMPLEMENTS | IMPORT | INSTANCEOF | INT | INTERFACE | LONG | NATIVE | NEW | PACKAGE | PRIVATE | PROTECTED | PUBLIC | RETURN | SHORT | STATIC | STRICTFP | SUPER | SWITCH | SYNCHRONIZED | THIS | THROW | THROWS | TRANSIENT | TRY | VOID | VOLATILE | WHILE | TRUE | FALSE | NULL | LPAREN | RPAREN | LBRACE | RBRACE | LBRACKET | RBRACKET | SEMI | COMMA | DOT | ELLIPSIS | EQ | BANG | TILDE | QUES | COLON | EQEQ | AMPAMP | BARBAR | PLUSPLUS | SUBSUB | PLUS | SUB | STAR | SLASH | AMP | BAR | CARET | PERCENT | PLUSEQ | SUBEQ | STAREQ | SLASHEQ | AMPEQ | BAREQ | CARETEQ | PERCENTEQ | MONKEYS_AT | BANGEQ | GT | LT | IDENTIFIER );";
/external/guava/guava-tests/lib/
H A Dlibtruth.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/junit/ org/junit/contrib/ org/junit/contrib/truth/ ...

Completed in 5232 milliseconds

12