Searched refs:reason (Results 1 - 25 of 930) sorted by relevance

1234567891011>>

/external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.5-3.js54 testcases[0].reason += " Object == null" ;
57 testcases[0].reason += " Function == null";
60 testcases[0].reason += " String == null";
63 testcases[0].reason += " Array == null";
66 testcases[0].reason += " Function == null";
69 testcases[0].reason += " Math == null";
72 testcases[0].reason += " Boolean == null";
75 testcases[0].reason += " Date == null";
79 testcases[0].reason += " NaN == null";
82 testcases[0].reason
[all...]
H A D10.1.5-1.js52 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
[all...]
H A D10.1.5-4.js51 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
[all...]
H A D10.1.5-2.js51 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
[all...]
/external/proguard/src/proguard/shrink/
H A DShortestUsageMark.java39 private final String reason; field in class:ShortestUsageMark
47 * @param reason the reason for this mark.
49 public ShortestUsageMark(String reason) argument
52 this.reason = reason;
60 * @param reason the reason for this mark.
64 String reason,
68 this(previousUsageMark, reason, cos
63 ShortestUsageMark(ShortestUsageMark previousUsageMark, String reason, int cost, Clazz clazz) argument
80 ShortestUsageMark(ShortestUsageMark previousUsageMark, String reason, int cost, Clazz clazz, Member member) argument
[all...]
/external/webkit/WebCore/platform/mac/
H A DBlockExceptions.mm34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
/external/webkit/WebKit/chromium/public/
H A DWebURLError.h44 // A namespace for "reason" to support various layers generating
49 // A numeric error code detailing the reason for this error. A value
53 int reason; member in struct:WebKit::WebURLError
58 WebURLError() : reason(0) { }
/external/webkit/WebCore/bindings/objc/
H A DExceptionHandlers.mm63 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/webkit/WebKit/chromium/src/
H A DWebURLError.cpp53 reason = error.errorCode();
61 if (!reason)
64 return ResourceError(domain, reason,
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
H A D15.8.2.14.js58 testcases[caseno].reason = Math.random();
61 if ( ! ( testcases[caseno].reason >= 0) ) {
65 if ( ! (testcases[caseno].reason < 1) ) {
79 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/external/apache-http/src/org/apache/http/
H A DHttpResponse.java68 * 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); argument
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
120 setReasonPhrase(String reason) argument
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpResponse.java67 * @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) {
106 BasicHttpResponse(final ProtocolVersion ver, final int code, final String reason) argument
148 setStatusLine(final ProtocolVersion ver, final int code, final String reason) argument
162 setReasonPhrase(String reason) argument
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DRefCountedLeakCounter.cpp47 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/wpa_supplicant/tests/
H A Dtest_x509v3.c29 int i, reason; local
62 if (x509_certificate_chain_validate(last, certs, &reason) < 0) {
63 printf("\nCertificate chain validation failed: %d\n", reason);
/external/wpa_supplicant_6/wpa_supplicant/tests/
H A Dtest_x509v3.c29 int i, reason; local
62 if (x509_certificate_chain_validate(last, certs, &reason) < 0) {
63 printf("\nCertificate chain validation failed: %d\n", reason);
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/Array/
H A Dslice.js74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/external/webkit/JavaScriptCore/tests/mozilla/js1_2/String/
H A Dslice.js74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/external/icu4c/common/unicode/
H A Ducnv_err.h171 UCNV_RESET = 3, /**< The callback is called with this reason when a
230 * @param reason Defines the reason the callback was invoked
240 UConverterCallbackReason reason,
254 * @param reason Defines the reason the callback was invoked
263 UConverterCallbackReason reason,
280 * @param reason Defines the reason the callback was invoked
291 UConverterCallbackReason reason,
[all...]
/external/icu4c/samples/ucnv/
H A Dflagcb.h37 UConverterCallbackReason reason,
55 UConverterCallbackReason reason,
/external/openssl/crypto/buffer/
H A Dbuf_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
/external/openssl/crypto/comp/
H A Dcomp_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
/external/openssl/crypto/
H A Dcpt_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_CRYPTO,0,reason)
/external/openssl/crypto/ecdh/
H A Dech_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDH,0,reason)
/external/openssl/crypto/objects/
H A Dobj_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_OBJ,0,reason)
/external/webkit/JavaScriptCore/icu/unicode/
H A Ducnv_err.h164 UCNV_RESET = 3, /**< The callback is called with this reason when a
223 * @param reason Defines the reason the callback was invoked
233 UConverterCallbackReason reason,
247 * @param reason Defines the reason the callback was invoked
256 UConverterCallbackReason reason,
273 * @param reason Defines the reason the callback was invoked
284 UConverterCallbackReason reason,
[all...]

Completed in 217 milliseconds

1234567891011>>