/cts/tests/autofillservice/src/android/autofillservice/cts/augmented/ |
AugmentedNotImportantForAutofillWrappedActivityContextTest.java | 23 @AppModeFull(reason = "AugmentedLoginActivityTest is enough")
|
AugmentedNotImportantForAutofillWrappedApplicationContextTest.java | 23 @AppModeFull(reason = "AugmentedLoginActivityTest is enough")
|
/external/deqp/framework/qphelper/ |
qpWatchDog.h | 38 typedef void (*qpWatchDogFunc) (qpWatchDog* dog, void* userPtr, qpTimeoutReason reason);
|
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/ |
DebugWebSocketServer.java | 79 protected void onClose(CloseCode code, String reason, boolean initiatedByRemote) { 82 + (reason != null && !reason.isEmpty() ? ": " + reason : ""));
|
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/ |
WebSocket.java | 63 void close(int code, String reason) throws IOException;
|
WebSocketListener.java | 70 * @param reason Reason for close or an empty string. 72 void onClose(int code, String reason);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
ActionListenerTest.java | 37 public void onFailure(int reason) { 38 Log.d(TAG, "onFailure() reason="+reason); 39 Argument arg = new Argument(reason);
|
/external/autotest/server/site_tests/platform_RebootAfterUpdate/ |
platform_RebootAfterUpdate.py | 29 '%(reason)s. This failure indicates that the system after ' 41 def reboot_with_timeout(cls, host, reason): 45 @param reason: string representing why we are rebooting e.g. autoupdate. 56 reason=reason, actual=reboot_duration,
|
/external/autotest/tko/ |
reason_qualifier.py | 29 # each reason in the list may be a combination 35 for reason in reasons: 36 reason_reduced = reason.strip() 44 # reduce numbers included into reason descriptor 49 reason_htable[reason_reduced] = reason_counter(reason) 52 ## reason if it occured once 53 ## if reason occured more then once, reason_counter
|
display.py | 222 for reason in aggregated_reasons_list: 226 reason = reason.replace('<br>','\n') 227 reason = reason.replace('<','[').replace('>',']') 228 reason = reason.replace('|','\n').replace('&',' AND ') 229 reason = reason.replace('\n','<br>') 230 html += '<br>' + reason [all...] |
/external/libchrome/mojo/public/cpp/bindings/lib/ |
pipe_control_message_handler.cc | 76 base::Optional<DisconnectReason> reason; local 78 reason.emplace(event->disconnect_reason->custom_reason, 81 return delegate_->OnPeerAssociatedEndpointClosed(event->id, reason);
|
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/ |
WebSocketRecorder.java | 70 @Override public void onClose(int code, String reason) { 71 events.add(new Close(code, reason)); 126 public void assertClose(int code, String reason) throws IOException { 131 assertEquals(new Close(code, reason), actual); 222 public final String reason; field in class:WebSocketRecorder.Close 224 private Close(int code, String reason) { 226 this.reason = reason; 230 return "Close[" + code + " " + reason + "]"; 234 return code * 37 + reason.hashCode() [all...] |
/external/v8/src/ |
runtime-profiler.cc | 53 char const* OptimizationReasonToString(OptimizationReason reason) { 59 size_t const index = static_cast<size_t>(reason); 64 std::ostream& operator<<(std::ostream& os, OptimizationReason reason) { 65 return os << OptimizationReasonToString(reason); 90 static void TraceRecompile(JSFunction* function, const char* reason, 95 PrintF(" for %s recompilation, reason: %s", type, reason); 109 OptimizationReason reason) { 110 DCHECK_NE(reason, OptimizationReason::kDoNotOptimize); 111 TraceRecompile(function, OptimizationReasonToString(reason), "optimized") [all...] |
/external/cldr/tools/java/org/unicode/cldr/util/ |
AttributeValueValidity.java | 360 public abstract boolean matches(String value, Output<String> reason); 482 public boolean matches(String value, Output<String> reason) { 485 if (!result && reason != null) { 486 reason.value = RegexUtilities.showMismatch(matcher, value.toString()); 521 public boolean matches(String value, Output<String> reason) { 523 if (!result && reason != null) { 524 reason.value = "? " + getPattern(); 545 public boolean matches(String value, Output<String> reason) { 547 if (!result && reason != null) { 548 reason.value = "? " + getPattern() [all...] |
/external/apache-http/src/org/apache/http/impl/ |
EnglishReasonPhraseCatalog.java | 41 * English reason phrases for HTTP status codes. 59 // static array with english reason phrases defined below 80 * Obtains the reason phrase for a status code. 85 * @return the reason phrase, or <code>null</code> 96 String reason = null; local 98 reason = REASON_PHRASES[category][subcode]; 100 return reason; 104 /** Reason phrases lookup table. */ 117 * Stores the given reason phrase, by status code. 121 * @param reason the reason phrase for this status cod [all...] |
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ |
AppSecurityTests.java | 95 @AppModeFull(reason = "'full' portion of the hostside test") 100 @AppModeInstant(reason = "'instant' portion of the hostside test") 123 @AppModeFull(reason = "'full' portion of the hostside test") 128 @AppModeInstant(reason = "'instant' portion of the hostside test") 154 @AppModeFull(reason = "'full' portion of the hostside test") 159 @AppModeInstant(reason = "'instant' portion of the hostside test") 186 @AppModeFull(reason = "'full' portion of the hostside test") 191 @AppModeInstant(reason = "'instant' portion of the hostside test") 226 @AppModeFull(reason = "Only the platform can define permissions obtainable by instant applications") 279 @AppModeFull(reason = "'full' portion of the hostside test" [all...] |
/external/antlr/runtime/ObjC/Framework/ |
RuntimeException.h | 41 + (RuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason; 42 + (RuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 47 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason; 48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 147 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo; 156 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason; 157 - (id) initWithName:(NSString *)aMsg reason:(NSString *)aCause userInfo:(NSDictionary *)userInfo;
|
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/ |
RealWebSocket.java | 80 @Override public void onClose(final int code, final String reason) { 84 peerClose(code, reason); 163 @Override public void close(int code, String reason) throws IOException { 168 writer.writeClose(code, reason); 182 private void peerClose(int code, String reason) { 185 writer.writeClose(code, reason); 197 listener.onClose(code, reason);
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
bye_unittest.cc | 57 EXPECT_TRUE(parsed_bye.reason().empty()); 64 EXPECT_TRUE(bye.reason().empty()); 67 EXPECT_EQ(16u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 0. 73 EXPECT_TRUE(parsed_bye.reason().empty()); 77 const std::string kReason = "Some Reason"; 85 EXPECT_EQ(28u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 12. 91 EXPECT_EQ(kReason, parsed_bye.reason()); 104 const std::string kReason = "Some Random Reason"; 114 EXPECT_EQ(kReason, parsed_bye.reason()); 128 EXPECT_EQ(kReason, parsed_bye.reason()); [all...] |
/external/autotest/tko/parsers/ |
version_1.py | 26 # If for some reason we can't read the status code, assume disaster. 192 def __init__(self, indent, status, subdir, testname, reason, 198 self.status = self.subdir = self.testname = self.reason = None 203 testname, reason, 260 def make_dummy_abort(indent, subdir, testname, timestamp, reason): 268 @param reason: The reason string. 285 return msg % (subdir, testname, timestamp_field, reason) 290 line_buffer, line, indent, subdir, testname, timestamp, reason): 300 @param reason: The reason string [all...] |
/external/syzkaller/pkg/host/ |
host.go | 11 // For unsupported syscalls it also returns reason as to why it is unsupported. 24 ok, reason := isSupported(c, sandbox) 28 if reason == "" { 29 reason = "unknown" 31 unsupported[c] = reason 54 Reason string 67 // otherwise the string contains the reason why the feature is not supported. 71 FeatureCoverage: {Name: "code coverage", Reason: unsupported}, 72 FeatureComparisons: {Name: "comparison tracing", Reason: unsupported}, 73 FeatureSandboxSetuid: {Name: "setuid sandbox", Reason: unsupported} [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
mailerdaemon.py | 38 # (?P<reason>...) which should refer to the reason (error message).
39 # If no reason is present, the emparse_list_reason list is used to
40 # find a reason.
47 'error: (?P<reason>unresolvable): (?P<email>.+)',
53 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)',
54 '^<(?P<email>.*)>:\n(?P<reason>.*)',
55 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)',
56 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)',
58 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)', [all...] |
/external/python/cpython2/Tools/scripts/ |
mailerdaemon.py | 39 # (?P<reason>...) which should refer to the reason (error message). 40 # If no reason is present, the emparse_list_reason list is used to 41 # find a reason. 48 'error: (?P<reason>unresolvable): (?P<email>.+)', 54 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)', 55 '^<(?P<email>.*)>:\n(?P<reason>.*)', 56 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)', 57 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)', 59 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)' [all...] |
/external/python/cpython3/Tools/scripts/ |
mailerdaemon.py | 44 # (?P<reason>...) which should refer to the reason (error message). 45 # If no reason is present, the emparse_list_reason list is used to 46 # find a reason. 53 'error: (?P<reason>unresolvable): (?P<email>.+)', 59 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)', 60 '^<(?P<email>.*)>:\n(?P<reason>.*)', 61 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)', 62 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)', 64 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)' [all...] |
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
jniutil.cc | 216 int throwForAsn1Error(JNIEnv* env, int reason, const char* message, 218 switch (reason) { 242 int throwForCipherError(JNIEnv* env, int reason, const char* message, 244 switch (reason) { 264 int throwForEvpError(JNIEnv* env, int reason, const char* message, 266 switch (reason) { 292 int throwForRsaError(JNIEnv* env, int reason, const char* message, 294 switch (reason) { 323 int throwForX509Error(JNIEnv* env, int reason, const char* message, 325 switch (reason) { 355 int reason = ERR_GET_REASON(error); local [all...] |