/external/clang/test/CodeGen/ |
2007-04-14-FNoBuiltin.c | 5 void foo(const char *msg) { 6 printf("%s\n",msg);
|
/external/clang/test/CodeGenCXX/ |
2007-04-14-FNoBuiltin.cpp | 5 void foo(const char *msg) { 7 printf("%s\n",msg);
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
strerror.c | 43 char const *msg = NULL; local 49 msg = "Text file busy"; 56 msg = "Operation now in progress"; 59 msg = "Operation already in progress"; 62 msg = "Socket operation on non-socket"; 65 msg = "Destination address required"; 68 msg = "Message too long"; 71 msg = "Protocol wrong type for socket"; 74 msg = "Protocol not available"; 77 msg = "Protocol not supported" [all...] |
/art/test/088-monitor-verification/src/ |
MyException.java | 21 public MyException(String msg) { 22 super(msg);
|
/dalvik/tests/088-monitor-verification/src/ |
MyException.java | 21 public MyException(String msg) { 22 super(msg);
|
/frameworks/base/core/java/android/util/ |
SuperNotCalledException.java | 24 public SuperNotCalledException(String msg) { 25 super(msg);
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
MicroTest.java | 66 SimpleMessageMicro msg = new SimpleMessageMicro(); local 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.getD()) 109 RecursiveMessageMicro msg = new RecursiveMessageMicro(); local 151 TestAllTypesMicro msg = new TestAllTypesMicro(); local 182 TestAllTypesMicro msg = new TestAllTypesMicro(); local 208 TestAllTypesMicro msg = new TestAllTypesMicro(); local 234 TestAllTypesMicro msg = new TestAllTypesMicro(); local 260 TestAllTypesMicro msg = new TestAllTypesMicro(); local 286 TestAllTypesMicro msg = new TestAllTypesMicro(); local 312 TestAllTypesMicro msg = new TestAllTypesMicro(); local 338 TestAllTypesMicro msg = new TestAllTypesMicro(); local 364 TestAllTypesMicro msg = new TestAllTypesMicro(); local 389 TestAllTypesMicro msg = new TestAllTypesMicro(); local 415 TestAllTypesMicro msg = new TestAllTypesMicro(); local 441 TestAllTypesMicro msg = new TestAllTypesMicro(); local 467 TestAllTypesMicro msg = new TestAllTypesMicro(); local 493 TestAllTypesMicro msg = new TestAllTypesMicro(); local 519 TestAllTypesMicro msg = new TestAllTypesMicro(); local 545 TestAllTypesMicro msg = new TestAllTypesMicro(); local 571 TestAllTypesMicro msg = new TestAllTypesMicro(); local 599 TestAllTypesMicro msg = new TestAllTypesMicro(); local 627 TestAllTypesMicro msg = new TestAllTypesMicro(); local 658 TestAllTypesMicro msg = new TestAllTypesMicro(); local 689 TestAllTypesMicro msg = new TestAllTypesMicro(); local 714 TestAllTypesMicro msg = new TestAllTypesMicro(); local 741 TestAllTypesMicro msg = new TestAllTypesMicro(); local 768 TestAllTypesMicro msg = new TestAllTypesMicro(); local 794 TestAllTypesMicro msg = new TestAllTypesMicro(); local 820 TestAllTypesMicro msg = new TestAllTypesMicro(); local 873 TestAllTypesMicro msg = new TestAllTypesMicro(); local 926 TestAllTypesMicro msg = new TestAllTypesMicro(); local 979 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1032 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1085 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1138 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1191 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1244 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1297 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1350 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1403 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1456 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1509 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1562 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1616 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1676 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1735 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1794 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1853 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1904 TestAllTypesMicro msg = new TestAllTypesMicro(); local 1955 TestAllTypesMicro msg = new TestAllTypesMicro(); local 2006 TestAllTypesMicro msg = new TestAllTypesMicro(); local 2059 TestAllTypesMicro msg = new TestAllTypesMicro(); local 2118 SingleMessageMicro msg = new SingleMessageMicro(); local 2130 MultipleNameClashMicro msg = new MultipleNameClashMicro(); local 2162 TestAllTypesMicro msg = new TestAllTypesMicro(); local [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
ANTLRErrorListener.java | 38 public void info(String msg); 39 public void error(Message msg); 40 public void warning(Message msg); 41 public void error(ToolMessage msg);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
OperatorCreationException.java | 6 public OperatorCreationException(String msg, Throwable cause) 8 super(msg, cause); 11 public OperatorCreationException(String msg) 13 super(msg);
|
/external/javassist/src/main/javassist/ |
NotFoundException.java | 22 public NotFoundException(String msg) { 23 super(msg); 26 public NotFoundException(String msg, Exception e) { 27 super(msg + " because of " + e.toString());
|
/external/javassist/src/main/javassist/bytecode/ |
BadBytecode.java | 26 public BadBytecode(String msg) { 27 super(msg); 30 public BadBytecode(String msg, Throwable cause) { 31 super(msg, cause);
|
DuplicateMemberException.java | 27 public DuplicateMemberException(String msg) { 28 super(msg);
|
/external/smack/src/com/kenai/jbosh/ |
BOSHException.java | 33 * @param msg description of the exceptional condition 35 public BOSHException(final String msg) { 36 super(msg); 43 * @param msg description of the exceptional condition 46 public BOSHException(final String msg, final Throwable cause) { 47 super(msg, cause);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
PinManagerException.java | 24 PinManagerException(String msg) { 25 super(msg); 28 PinManagerException(String msg, Exception e) { 29 super(msg, e);
|
PinEntryException.java | 25 PinEntryException(String msg) { 26 super(msg);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSSignerDigestMismatchException.java | 7 String msg) 9 super(msg);
|
CMSVerifierCertificateNotValidException.java | 7 String msg) 9 super(msg);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
OutputLengthException.java | 6 public OutputLengthException(String msg) 8 super(msg);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXNameConstraintValidatorException.java | 6 public PKIXNameConstraintValidatorException(String msg) 8 super(msg);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
recvmsg.c | 8 ssize_t recvmsg(int fd, struct msghdr* msg, int flags) { 9 return ki_recvmsg(fd, msg, flags);
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/ |
python_protobuf.cc | 39 static const Message* GetCProtoInsidePyProtoStub(PyObject* msg) { 42 static Message* MutableCProtoInsidePyProtoStub(PyObject* msg) { 49 const Message* (*GetCProtoInsidePyProtoPtr)(PyObject* msg) = 51 Message* (*MutableCProtoInsidePyProtoPtr)(PyObject* msg) = 54 const Message* GetCProtoInsidePyProto(PyObject* msg) { 55 return GetCProtoInsidePyProtoPtr(msg); 57 Message* MutableCProtoInsidePyProto(PyObject* msg) { 58 return MutableCProtoInsidePyProtoPtr(msg);
|
/external/oprofile/libutil++/ |
op_exception.cpp | 18 op_exception::op_exception(string const & msg) 20 message(msg) 34 op_fatal_error::op_fatal_error(string const & msg) 36 op_exception(msg) 41 op_runtime_error::op_runtime_error(string const & msg) 43 runtime_error(msg) 47 op_runtime_error::op_runtime_error(string const & msg, int cerrno) 49 runtime_error(msg + "\ncause: " + strerror(cerrno))
|
/external/smali/util/src/main/java/ds/tree/ |
DuplicateKeyException.java | 37 public DuplicateKeyException(String msg) 39 super(msg);
|
/libcore/include/ |
StaticAssert.h | 25 #define STATIC_ASSERT(exp, msg) typedef StaticAssert<(bool(exp))> msg[bool(exp) ? 1 : -1]
|
/libcore/luni/src/main/java/javax/xml/parsers/ |
ParserConfigurationException.java | 44 * @param msg The error message for the exception. 47 public ParserConfigurationException(String msg) { 48 super(msg);
|