Searched refs:msg (Results 1 - 25 of 3582) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-04-14-FNoBuiltin.c7 void foo(const char *msg) { argument
9 printf("%s\n",msg);
/external/clang/test/CodeGenCXX/
H A D2007-04-14-FNoBuiltin.cpp5 void foo(const char *msg) { argument
7 printf("%s\n",msg);
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/chromeos_login_ext/
H A Dmain.js7 var msg = {
10 window.parent.postMessage(msg, PARENT_PAGE);
12 var msg = {
17 window.parent.postMessage(msg, PARENT_PAGE);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DAnalyzerException.java40 public AnalyzerException(final String msg) { argument
41 super(msg);
44 public AnalyzerException(final String msg, final Throwable exception) { argument
45 super(msg, exception);
49 final String msg,
53 super((msg == null ? "Expected " : msg + ": expected ") + expected
48 AnalyzerException( final String msg, final Object expected, final Value encountered) argument
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DMicroTest.java66 SimpleMessageMicro msg = new SimpleMessageMicro();
67 assertFalse(msg.hasD());
68 assertEquals(123, msg.getD());
69 assertFalse(msg.hasNestedMsg());
70 assertEquals(null, msg.getNestedMsg());
71 assertFalse(msg.hasDefaultNestedEnum());
72 assertEquals(SimpleMessageMicro.BAZ, msg.getDefaultNestedEnum());
74 msg.setD(456);
75 assertTrue(msg.hasD());
76 assertEquals(456, msg
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DANTLRErrorListener.java38 public void info(String msg); argument
39 public void error(Message msg); argument
40 public void warning(Message msg); argument
41 public void error(ToolMessage msg); argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DOperatorCreationException.java6 public OperatorCreationException(String msg, Throwable cause) argument
8 super(msg, cause);
11 public OperatorCreationException(String msg) argument
13 super(msg);
/external/chromium_org/build/android/buildbot/
H A Dbb_annotations.py17 def PrintMsg(msg):
18 """Appends |msg| to the current buildbot step text.
21 msg: String to be appended.
23 print '@@@STEP_TEXT@%s@@@' % msg
26 def PrintSummaryText(msg):
27 """Appends |msg| to main build summary. Visible from waterfall.
30 msg: String to be appended.
32 print '@@@STEP_SUMMARY_TEXT@%s@@@' % msg
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_send_externs.js11 * @param {string} msg
14 chrome.send = function(msg, opt_args) {};
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dcompile_assert.h36 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
43 #define COMPILE_ASSERT(expr, msg) \
44 typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
56 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
64 // COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is
/external/conscrypt/src/platform/java/org/conscrypt/
H A DPinManagerException.java24 PinManagerException(String msg) { argument
25 super(msg);
28 PinManagerException(String msg, Exception e) { argument
29 super(msg, e);
H A DPinEntryException.java25 PinEntryException(String msg) { argument
26 super(msg);
/external/javassist/src/main/javassist/
H A DNotFoundException.java22 public NotFoundException(String msg) { argument
23 super(msg);
26 public NotFoundException(String msg, Exception e) { argument
27 super(msg + " because of " + e.toString());
/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java26 public BadBytecode(String msg) { argument
27 super(msg);
30 public BadBytecode(String msg, Throwable cause) { argument
31 super(msg, cause);
H A DDuplicateMemberException.java27 public DuplicateMemberException(String msg) { argument
28 super(msg);
/external/smack/src/com/kenai/jbosh/
H A DBOSHException.java33 * @param msg description of the exceptional condition
35 public BOSHException(final String msg) { argument
36 super(msg);
43 * @param msg description of the exceptional condition
46 public BOSHException(final String msg, final Throwable cause) { argument
47 super(msg, cause);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSSignerDigestMismatchException.java7 String msg)
9 super(msg);
6 CMSSignerDigestMismatchException( String msg) argument
H A DCMSVerifierCertificateNotValidException.java7 String msg)
9 super(msg);
6 CMSVerifierCertificateNotValidException( String msg) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DOutputLengthException.java6 public OutputLengthException(String msg) argument
8 super(msg);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidatorException.java6 public PKIXNameConstraintValidatorException(String msg) argument
8 super(msg);
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython_protobuf.cc39 static const Message* GetCProtoInsidePyProtoStub(PyObject* msg) { argument
42 static Message* MutableCProtoInsidePyProtoStub(PyObject* msg) { argument
49 const Message* (*GetCProtoInsidePyProtoPtr)(PyObject* msg) =
51 Message* (*MutableCProtoInsidePyProtoPtr)(PyObject* msg) =
54 const Message* GetCProtoInsidePyProto(PyObject* msg) { argument
55 return GetCProtoInsidePyProtoPtr(msg);
57 Message* MutableCProtoInsidePyProto(PyObject* msg) { argument
58 return MutableCProtoInsidePyProtoPtr(msg);
/external/oprofile/libutil++/
H A Dop_exception.cpp18 op_exception::op_exception(string const & msg) argument
20 message(msg)
34 op_fatal_error::op_fatal_error(string const & msg) argument
36 op_exception(msg)
41 op_runtime_error::op_runtime_error(string const & msg) argument
43 runtime_error(msg)
47 op_runtime_error::op_runtime_error(string const & msg, int cerrno) argument
49 runtime_error(msg + "\ncause: " + strerror(cerrno))
/external/smali/util/src/main/java/ds/tree/
H A DDuplicateKeyException.java37 public DuplicateKeyException(String msg) argument
39 super(msg);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_wsc_common.c19 struct wpabuf *msg; local
21 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
22 if (msg == NULL) {
29 wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */
30 wpabuf_put_u8(msg, 0); /* Flags */
32 return msg;
/external/wpa_supplicant_8/src/eap_common/
H A Deap_wsc_common.c19 struct wpabuf *msg; local
21 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
22 if (msg == NULL) {
29 wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */
30 wpabuf_put_u8(msg, 0); /* Flags */
32 return msg;

Completed in 8254 milliseconds

1234567891011>>