/external/icu4c/test/cintltst/ |
cintltst.c | 669 /* if 'condition' is a UBool, the compiler complains bitterly about 671 U_CFUNC UBool assertTrue(const char* msg, int /*not UBool*/ condition) { 672 if (!condition) { 680 return (UBool)condition;
|
/external/smack/src/org/jivesoftware/smack/util/ |
PacketParserUtils.java.orig | 359 iqPacket.setError(new XMPPError(XMPPError.Condition.feature_not_implemented)); 672 String condition = null; 679 condition = parser.getName(); 688 return new Failure(condition); 729 String condition = null; 742 // Parse the text and condition tags 750 // Condition tag, it can be xmpp error or an application defined error. 754 condition = elementName; 778 return new XMPPError(Integer.parseInt(errorCode), errorType, condition, message, extensions); [all...] |
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/ |
Os.java | 19 package org.apache.tools.ant.taskdefs.condition; 26 * Condition that tests the OS type. 30 public class Os implements Condition {
|
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-port.h | 251 // TODO(vladl@google.com): Remove this condition when Native Client SDK adds 578 // ASSERT_*(condition) << "Some message"; 749 // A helper for suppressing warnings on constant condition. It just 750 // returns 'condition'. 751 GTEST_API_ bool IsTrue(bool condition); [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
opt_constant_variable.cpp | 111 if (ir->condition)
|
/external/chromium_org/v8/src/arm/ |
regexp-macro-assembler-arm.h | 196 void BranchOrBacktrack(Condition condition, Label* to); 200 inline void SafeCall(Label* to, Condition cond = al);
|
/external/chromium_org/v8/src/ |
debug-debugger.js | 176 BreakPoint.prototype.condition = function() { 177 if (this.script_break_point() && this.script_break_point().condition()) { 178 return this.script_break_point().condition(); 204 BreakPoint.prototype.setCondition = function(condition) { 205 this.condition_ = condition; 219 if (this.condition()) { 220 // If break point has condition try to evaluate it in the top frame. 222 var mirror = exec_state.frame(0).evaluate(this.condition()); 228 // Exception evaluating condition counts as not triggered. 366 ScriptBreakPoint.prototype.condition = function() [all...] |
/external/chromium_org/v8/src/ia32/ |
regexp-macro-assembler-ia32.h | 176 void BranchOrBacktrack(Condition condition, Label* to);
|
/external/chromium_org/v8/src/mips/ |
regexp-macro-assembler-mips.h | 199 Condition condition, 206 Condition cond,
|
/external/chromium_org/v8/test/mjsunit/ |
debug-conditional-breakpoints.js | 89 // Changing condition. 147 // Multiple conditional breakpoint which the same condition.
|
/external/clang/test/CodeGenCXX/ |
mangle-exprs.cpp | 35 template < bool condition, typename T = void >
|
/external/eigen/Eigen/src/Core/util/ |
StaticAssert.h | 16 * - in EIGEN_STATIC_ASSERT(CONDITION,MSG) the parameter CONDITION must be a compile time boolean 21 * eigen_assert(CONDITION && "MSG") 40 template<bool condition> 105 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \ 106 {Eigen::internal::static_assertion<bool(CONDITION)>::MSG;} 110 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) \ 111 if (Eigen::internal::static_assertion<bool(CONDITION)>::MSG) {} 119 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG) [all...] |
/external/expat/tests/ |
minicheck.c | 159 _fail_unless(int condition, const char *file, int line, char *msg)
|
/external/mesa3d/src/glsl/ |
opt_constant_variable.cpp | 111 if (ir->condition)
|
/external/smack/src/org/jivesoftware/smack/ |
SASLAuthentication.java.orig | 84 * The SASL related error condition if there was one provided by the server.
539 * @param condition the error condition provided by the server.
541 void authenticationFailed(String condition) {
544 errorCondition = condition;
|
/external/smack/src/org/jivesoftware/smackx/commands/ |
AdHocCommandManager.java | 398 respondError(response, XMPPError.Condition.item_not_found);
417 respondError(response, XMPPError.Condition.forbidden);
425 respondError(response, XMPPError.Condition.bad_request,
432 respondError(response, XMPPError.Condition.bad_request,
524 respondError(response, XMPPError.Condition.bad_request,
536 respondError(response, XMPPError.Condition.not_allowed,
551 respondError(response, XMPPError.Condition.bad_request,
565 respondError(response, XMPPError.Condition.bad_request,
637 * Responds an error with an specific condition.
640 * @param condition the condition of the error. [all...] |
/external/v8/src/arm/ |
regexp-macro-assembler-arm.h | 200 void BranchOrBacktrack(Condition condition, Label* to); 204 inline void SafeCall(Label* to, Condition cond = al);
|
/external/v8/src/ |
full-codegen.h | 302 void DoTest(Expression* condition, 311 void Split(Condition cc, 318 void Split(Condition cc, 724 Expression* condition, 729 condition_(condition), 739 Expression* condition() const { return condition_; } function in class:v8::internal::FullCodeGenerator::TestContext
|
/external/v8/src/ia32/ |
regexp-macro-assembler-ia32.h | 174 void BranchOrBacktrack(Condition condition, Label* to);
|
/external/v8/src/mips/ |
regexp-macro-assembler-mips.h | 200 Condition condition, 207 Condition cond,
|
/external/v8/test/mjsunit/ |
debug-conditional-breakpoints.js | 89 // Changing condition. 147 // Multiple conditional breakpoint which the same condition.
|
/art/runtime/base/ |
logging.h | 81 #define DCHECK(condition) \ 83 CHECK(condition)
|
/development/ndk/platforms/android-9/include/EGL/ |
eglext.h | 203 EGLSyncNV eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); 210 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
|
/external/chromium_org/chromeos/network/onc/ |
onc_normalizer.cc | 74 bool condition) { 75 if (!condition)
|
/external/chromium_org/ppapi/lib/gl/include/EGL/ |
eglext.h | 211 EGLSyncNV eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); 218 typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list);
|