/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.5-1.js | 52 testcases[0].reason += " Object == null" ; 55 testcases[0].reason += " Function == null"; 58 testcases[0].reason += " String == null"; 61 testcases[0].reason += " Array == null"; 64 testcases[0].reason += " Function == null"; 67 testcases[0].reason += " Math == null"; 70 testcases[0].reason += " Boolean == null"; 73 testcases[0].reason += " Date == null"; 77 testcases[0].reason += " NaN == null"; 80 testcases[0].reason += " Infinity == null" [all...] |
10.1.5-4.js | 51 var EVAL_STRING = 'if ( Object == null ) { testcases[0].reason += " Object == null" ; }' + 52 'if ( Function == null ) { testcases[0].reason += " Function == null"; }' + 53 'if ( String == null ) { testcases[0].reason += " String == null"; }' + 54 'if ( Array == null ) { testcases[0].reason += " Array == null"; }' + 55 'if ( Number == null ) { testcases[0].reason += " Function == null";}' + 56 'if ( Math == null ) { testcases[0].reason += " Math == null"; }' + 57 'if ( Boolean == null ) { testcases[0].reason += " Boolean == null"; }' + 58 'if ( Date == null ) { testcases[0].reason += " Date == null"; }' + 59 'if ( eval == null ) { testcases[0].reason += " eval == null"; }' + 60 'if ( parseInt == null ) { testcases[0].reason += " parseInt == null"; }' [all...] |
/external/javassist/src/main/javassist/compiler/ |
CompileError.java | 23 private String reason; field in class:CompileError 26 reason = s; 31 reason = s; 46 return reason; 50 return "compile error: " + reason;
|
/external/proguard/src/proguard/shrink/ |
ShortestUsageMark.java | 39 private final String reason; field in class:ShortestUsageMark 47 * @param reason the reason for this mark. 49 public ShortestUsageMark(String reason) 52 this.reason = reason; 60 * @param reason the reason for this mark. 64 String reason, 68 this(previousUsageMark, reason, cost, clazz, null) [all...] |
/libcore/luni/src/main/java/java/sql/ |
BatchUpdateException.java | 49 * <i>reason</i>, <i>SQLState</i>, and <i>update counts</i> set to {@code 56 * Creates an BatchUpdateException object. The reason is set to 60 * @param cause the Throwable object for the underlying reason this SQLException 69 * Creates an BatchUpdateException object. The Reason string is set to the 74 * @param cause the Throwable object for the underlying reason this SQLException 88 * @param cause the Throwable object for the underlying reason this SQLException 92 public BatchUpdateException(String reason, int[] updateCounts, 94 super(reason, cause); 104 * @param cause the Throwable object for the underlying reason this SQLException 108 public BatchUpdateException(String reason, String SQLState [all...] |
SQLException.java | 51 * Creates an {@code SQLException} object. The reason string is set to 59 * Creates an {@code SQLException} object. The reason string is set to the given 60 * reason string, the {@code SQLState} string is set to {@code null} and the error code is 64 * the string to use as the Reason string 71 * Creates an {@code SQLException} object. The reason string is set to the 72 * given reason string, the {@code SQLState} string is set to the given 76 * the string to use as the reason string. 85 * Creates an {@code SQLException} object. The reason string is set to the 86 * given reason string, the {@code SQLState} string is set to the given 91 * the string to use as the reason string [all...] |
/external/dhcpcd/dhcpcd-hooks/ |
95-configured | 6 setprop dhcp.${interface}.reason "${reason}" 8 case "${reason}" in
|
/external/chromium/chrome/browser/ui/ |
crypto_module_password_dialog.h | 27 // An enum to describe the reason for the password request. 40 // |module|. |reason| describes the purpose of the authentication and 45 CryptoModulePasswordReason reason, 53 CryptoModulePasswordReason reason, 60 browser::CryptoModulePasswordReason reason, 68 browser::CryptoModulePasswordReason reason,
|
crypto_module_password_dialog_openssl.cc | 12 browser::CryptoModulePasswordReason reason, 20 browser::CryptoModulePasswordReason reason,
|
/external/clang/test/CodeGenCXX/ |
member-call-parens.cpp | 10 // FIXME: Sema doesn't like this for some reason...
|
/external/icu4c/samples/ucnv/ |
flagcb.c | 35 UConverterCallbackReason reason, 38 /* First step - based on the reason code, take action */ 40 if(reason == UCNV_UNASSIGNED) { /* whatever set should be trapped here */ 44 if(reason == UCNV_CLONE) { 94 length, codePoint, reason, err); 113 reason != UCNV_CLONE) { 119 reason, 124 if(reason == UCNV_CLOSE) { 177 UConverterCallbackReason reason, 184 printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, reason, fromUArgs->converter, u_errorName(*err)) [all...] |
flagcb.h | 37 UConverterCallbackReason reason, 55 UConverterCallbackReason reason,
|
/external/llvm/test/Assembler/ |
2003-05-21-EmptyStructTest.ll | 4 ; can. For some reason we never handled them in the parser. Weird.
|
/external/nist-sip/java/javax/sip/header/ |
ReasonHeader.java | 7 String NAME = "Reason";
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallForwardInfo.java | 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo 36 + " reason: " + reason
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLHandshakeException.java | 31 public SSLHandshakeException(String reason) { 32 super(reason); 47 public SSLHandshakeException(String reason, Throwable cause) { 48 super(reason, cause);
|
SSLException.java | 29 * Creates a new {@code SSLException} with the specified reason. 31 * @param reason 32 * the reason for the exception. 34 public SSLException(String reason) { 35 super(reason);
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 67 * @param catalog the reason phrase catalog, or 69 * reason phrase lookup 70 * @param locale the locale for looking up reason phrases, or 87 * The response will not have a reason phrase catalog and 98 * The response will not have a reason phrase catalog and 103 * @param reason the reason phrase to the status code, or 108 final String reason) { 109 this(new BasicStatusLine(ver, code, reason), null, null); 149 final String reason) { [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaDataConnectionTracker.java | 200 String reason = ""; local 202 reason += " - psState= " + psState; 206 reason += " - radioState= " + mPhone.mCM.getNvState() + " - RUIM not loaded"; 210 reason += " - concurrentVoiceAndData not allowed and state= " + mPhone.getState(); 212 if (roaming) reason += " - Roaming"; 213 if (!internalDataEnabled) reason += " - mInternalDataEnabled= false"; 214 if (!desiredPowerState) reason += " - desiredPowerState= false"; 215 if (mPendingRestartRadio) reason += " - mPendingRestartRadio= true"; 216 if (mCdmaPhone.needsOtaServiceProvisioning()) reason += " - needs Provisioning"; 217 log("Data not allowed due to" + reason); 651 String reason = null; local 678 String reason = null; local [all...] |
/external/llvm/lib/Support/ |
ErrorHandling.cpp | 52 void llvm::report_fatal_error(const char *Reason) { 53 report_fatal_error(Twine(Reason)); 56 void llvm::report_fatal_error(const std::string &Reason) { 57 report_fatal_error(Twine(Reason)); 60 void llvm::report_fatal_error(StringRef Reason) { 61 report_fatal_error(Twine(Reason)); 64 void llvm::report_fatal_error(const Twine &Reason) { 66 ErrorHandler(ErrorHandlerUserData, Reason.str()); 73 OS << "LLVM ERROR: " << Reason << "\n";
|
/external/chromium/chrome/browser/chromeos/login/ |
login_status_consumer.h | 32 explicit LoginFailure(FailureReason reason) 33 : reason_(reason), 35 DCHECK(reason != NETWORK_AUTH_FAILED); 83 const FailureReason& reason() const { return reason_; } function in class:chromeos::LoginFailure 86 LoginFailure(FailureReason reason, GoogleServiceAuthError error) 87 : reason_(reason),
|
/external/webkit/Source/JavaScriptCore/wtf/ |
RefCountedLeakCounter.cpp | 47 void RefCountedLeakCounter::suppressMessages(const char* reason) 51 leakMessageSuppressionReasons->add(reason); 54 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason) 57 ASSERT(leakMessageSuppressionReasons->contains(reason)); 58 leakMessageSuppressionReasons->remove(reason); 73 // This logs only one reason. Later we could change it so we log all the reasons.
|
/external/webkit/Source/WebCore/bindings/objc/ |
ExceptionHandlers.mm | 63 NSString *reason; 65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code]; 67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code]; 71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo]; 73 [reason release];
|
/external/apache-http/src/org/apache/http/ |
HttpResponse.java | 68 * The reason phrase will be determined based on the current 77 * Sets the status line of this response with a reason phrase. 81 * @param reason the reason phrase, or <code>null</code> to omit 83 void setStatusLine(ProtocolVersion ver, int code, String reason); 90 * The reason phrase will be updated according to the new status code, 107 * Updates the status line of this response with a new reason phrase. 111 * @param reason the new reason phrase as a single-line string, or 112 * <code>null</code> to unset the reason phras [all...] |
/frameworks/base/core/java/android/os/ |
ParcelFormatException.java | 28 public ParcelFormatException(String reason) { 29 super(reason);
|