/external/tensorflow/tensorflow/lite/tools/evaluation/proto/ |
evaluation_stages.proto | 31 message ProcessSpecification { 38 message ProcessMetrics {}
|
/external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/ |
HandshakeException.java | 21 public HandshakeException(String message) { 22 super(message); 29 public HandshakeException(String message, Exception e) { 30 super(message, e);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPException.java | 24 * Constructs an exception with a message and an error code. 25 * @param message the message 28 public XMPException(String message, int errorCode) 30 super(message); 36 * Constructs an exception with a message, an error code and a <code>Throwable</code> 37 * @param message the error message. 41 public XMPException(String message, int errorCode, Throwable t) 43 super(message, t) [all...] |
/external/proguard/src/proguard/gui/ |
MessageDialogRunnable.java | 28 * This <code>Runnable</code> can show a message dialog. 35 private final Object message; field in class:MessageDialogRunnable 45 Object message, 52 message, 68 Object message, 73 this.message = message; 85 message,
|
/development/samples/USB/AdbTest/src/com/android/adb/ |
AdbSocket.java | 39 AdbMessage message = new AdbMessage(); local 40 message.set(AdbMessage.A_OPEN, mId, 0, destination); 41 if (! message.write(mDevice)) { 55 public void handleMessage(AdbMessage message) { 56 switch (message.getCommand()) { 58 mPeerId = message.getArg0(); 64 mDevice.log(message.getDataString()); 71 AdbMessage message = new AdbMessage(); local 72 message.set(AdbMessage.A_OKAY, mId, mPeerId); 73 message.write(mDevice) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
JSilverAutoEscapingException.java | 26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { 27 super(createMessage(message, templateName, line, column)); 30 public JSilverAutoEscapingException(String message, String templateName) { 31 this(message, templateName, UNKNOWN_POSITION, UNKNOWN_POSITION); 37 private static String createMessage(String message, String resourceName, int line, int column) { 38 StringBuilder result = new StringBuilder(message); 51 public JSilverAutoEscapingException(String message) { 52 super(message); 55 public JSilverAutoEscapingException(String message, Throwable cause) { 56 super(message, cause) [all...] |
/external/tensorflow/tensorflow/core/protobuf/ |
master.proto | 39 message CreateSessionRequest { 50 message CreateSessionResponse { 80 message ExtendSessionRequest { 96 message ExtendSessionResponse { 113 message RunStepRequest { 150 message RunStepResponse { 176 message PartialRunSetupRequest { 200 message PartialRunSetupResponse { 213 message CloseSessionRequest { 219 message CloseSessionResponse { [all...] |
/external/deqp/execserver/ |
xsDefs.cpp | 31 static std::string formatError (const char* message, const char* expr, const char* file, int line) 34 msg << (message ? message : "Runtime check failed") << ": "; 41 Error::Error (const char* message, const char* expr, const char* file, int line) 42 : std::runtime_error(formatError(message, expr, file, line))
|
/external/deqp/executor/ |
xeDefs.cpp | 31 static std::string formatError (const char* message, const char* expr, const char* file, int line) 34 msg << (message ? message : "Runtime check failed") << ": "; 41 Error::Error (const char* message, const char* expr, const char* file, int line) 42 : std::runtime_error(formatError(message, expr, file, line))
|
/external/tensorflow/tensorflow/compiler/xla/ |
xla.proto | 24 message HloReducePrecisionOptions { 63 message DebugOptions { 278 message ExecutionOptions { 308 message GetDeviceHandlesRequest { 312 message GetDeviceHandlesResponse { 316 message TransferToClientRequest { 324 message TransferToClientResponse { 328 message TransferToServerRequest { 333 message TransferToServerResponse { 337 message TransferToInfeedRequest [all...] |
/external/libchrome/mojo/public/cpp/bindings/lib/ |
pipe_control_message_handler.cc | 29 bool PipeControlMessageHandler::IsPipeControlMessage(const Message* message) { 30 return !IsValidInterfaceId(message->interface_id()); 33 bool PipeControlMessageHandler::Accept(Message* message) { 34 if (!Validate(message)) 37 if (message->name() == pipe_control::kRunOrClosePipeMessageId) 38 return RunOrClosePipe(message); 44 bool PipeControlMessageHandler::Validate(Message* message) { [all...] |
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/ |
keymaster_types.proto | 23 message KeyParameter { 32 message KeyParameters { 36 message KeyBlob { 40 message OperationHandle { 44 message Certificate { 48 message CertificateChain { 52 message KeyCharacteristics { 57 message HmacSharingParameters { 62 message HardwareAuthToken { 73 message VerificationToken [all...] |
/external/protobuf/src/google/protobuf/ |
map_test_util.h | 43 // Set every field in the TestMap message to a unique value. 44 static void SetMapFields(unittest::TestMap* message); 46 // Set every field in the TestArenaMap message to a unique value. 47 static void SetArenaMapFields(unittest::TestArenaMap* message); 49 // Set every field in the message to a default value. 50 static void SetMapFieldsInitialized(unittest::TestMap* message); 52 // Modify all the map fields of the message (which should already have been 54 static void ModifyMapFields(unittest::TestMap* message); 58 static void ExpectMapFieldsSet(const unittest::TestMap& message); 62 static void ExpectArenaMapFieldsSet(const unittest::TestArenaMap& message); [all...] |
no_field_presence_test.cc | 63 // accessor for message fields returns default instance when not present 236 proto2_nofieldpresence_unittest::TestAllTypes message; local 240 CheckDefaultValues(message); 241 FillValues(&message); 242 CheckNonDefaultValues(message); 244 // Clear() should be equivalent to getting a freshly-constructed message. 245 message.Clear(); 246 CheckDefaultValues(message); 250 // check that presence still works properly for message fields. 251 proto2_nofieldpresence_unittest::TestAllTypes message; local 282 proto2_nofieldpresence_unittest::TestAllTypes message; local 345 proto2_nofieldpresence_unittest::TestAllTypes message; local 386 proto2_nofieldpresence_unittest::TestAllTypes message; local 422 proto2_nofieldpresence_unittest::TestAllTypes message; local 486 proto2_nofieldpresence_unittest::TestProto2Required message; local 500 proto2_nofieldpresence_unittest::TestAllTypes message; local 531 proto2_nofieldpresence_unittest::TestAllTypes message; local [all...] |
any_test.cc | 41 protobuf_unittest::TestAny message; local 42 message.mutable_any_value()->PackFrom(submessage); 44 string data = message.SerializeAsString(); 46 ASSERT_TRUE(message.ParseFromString(data)); 47 EXPECT_TRUE(message.has_any_value()); 48 ASSERT_TRUE(message.any_value().UnpackTo(&submessage)); 53 // We can pack a Any message inside another Any message. 58 protobuf_unittest::TestAny message; local 59 message.mutable_any_value()->PackFrom(any) 79 protobuf_unittest::TestAny message; local [all...] |
/cts/tests/tests/accounts/src/android/accounts/cts/ |
ExceptionTest.java | 12 private String message = "Message"; field in class:ExceptionTest 20 new AccountsException(message); 28 new AccountsException(message, cause); 36 new NetworkErrorException(message); 44 new NetworkErrorException(message, cause); 52 new AuthenticatorException(message); 60 new AuthenticatorException(message, cause); 68 new OperationCanceledException(message); 76 new OperationCanceledException(message, cause) [all...] |
/external/grpc-grpc-java/protobuf-nano/src/main/java/io/grpc/protobuf/nano/ |
NanoProtoInputStream.java | 32 // NanoProtoInputStream is first initialized with a *message*. *partial* is initially null. 33 // Once there has been a read operation on this stream, *message* is serialized to *partial* and 35 @Nullable private MessageNano message; field in class:NanoProtoInputStream 38 NanoProtoInputStream(MessageNano message) { 39 this.message = message; 43 if (message != null) { 44 partial = new ByteArrayInputStream(MessageNano.toByteArray(message)); 45 message = null; 60 if (message != null) [all...] |
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/ |
Logger.java | 11 public static void strict(String message, Throwable e) { 14 System.out.println(message); 19 public static void strict(String message, Object... args) { 22 System.out.println(String.format(message, args)); 27 * Log an info message. 29 * @param message Message text. 30 * @param args Message arguments. 32 public static void info(String message, Object... args) { 35 System.out.println(String.format(message, args)) [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
GnssNavigationMessageTest.java | 83 // Register Gps Navigation Message Listener. 108 private static void setTestValues(GnssNavigationMessage message) { 109 message.setData(new byte[] {1, 2, 3, 4}); 110 message.setMessageId(5); 111 message.setStatus(GnssNavigationMessage.STATUS_PARITY_REBUILT); 112 message.setSubmessageId(6); 113 message.setSvid(7); 114 message.setType(GnssNavigationMessage.TYPE_GPS_L2CNAV); 117 private static void verifyTestValues(GnssNavigationMessage message) { 118 byte[] data = message.getData() 132 GnssNavigationMessage message = new GnssNavigationMessage(); local 137 GnssNavigationMessage message = new GnssNavigationMessage(); local 149 GnssNavigationMessage message = new GnssNavigationMessage(); local 154 GnssNavigationMessage message = new GnssNavigationMessage(); local [all...] |
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/exc/ |
VerifierConstraintViolatedException.java | 36 /** The specified error message. */ 39 * Constructs a new VerifierConstraintViolatedException with null as its error message string. 45 * Constructs a new VerifierConstraintViolatedException with the specified error message. 47 VerifierConstraintViolatedException(final String message) { 48 super(message); // Not that important 49 detailMessage = message; 52 * Constructs a new VerifierConstraintViolationException with the specified error message and cause 54 VerifierConstraintViolatedException(final String message, final Throwable initCause) { 55 super(message, initCause); 56 detailMessage = message; [all...] |
/external/easymock/src/org/easymock/internal/ |
ErrorMessage.java | 22 private final String message;
field in class:ErrorMessage 26 public ErrorMessage(boolean matching, String message, int actualCount) {
28 this.message = message;
37 return message;
45 buffer.append("\n ").append(message).append(", actual: ");
|
/external/grpc-grpc/third_party/nanopb/examples/cmake_simple/ |
simple.c | 8 /* This is the buffer where we will store our message. */ 13 /* Encode our message */ 15 /* Allocate space on the stack to store the message data. 22 SimpleMessage message = SimpleMessage_init_zero; local 28 message.lucky_number = 13; 30 /* Now we are ready to encode the message! */ 31 status = pb_encode(&stream, SimpleMessage_fields, &message); 42 /* Now we could transmit the message over network, store it in a file or 49 /* Allocate space for the decoded message. */ 50 SimpleMessage message = SimpleMessage_init_zero local [all...] |