HomeSort by relevance Sort by last modified time
    Searched defs:warning (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /bionic/libc/arch-arm/bionic/
atexit_legacy.c 53 static char const warning[] = "WARNING: generic atexit() called from legacy shared library\n"; local
55 __libc_format_log(ANDROID_LOG_WARN, "libc", warning);
56 fprintf(stderr, warning);
  /external/valgrind/main/coregrind/m_gdbserver/
utils.c 69 void warning (const char *string,...) function
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ANTLRErrorListener.java 40 public void warning(Message msg); method in interface:ANTLRErrorListener
  /libcore/luni/src/main/java/javax/xml/transform/
ErrorListener.java 50 * Receive notification of a warning.
60 * @param exception The warning information encapsulated in a
68 public abstract void warning(TransformerException exception) method in interface:ErrorListener
  /libcore/luni/src/main/java/org/xml/sax/
ErrorHandler.java 26 * <p><strong>WARNING:</strong> If an application does <em>not</em>
53 * Receive notification of a warning.
67 * @param exception The warning information encapsulated in a
73 public abstract void warning (SAXParseException exception) method in interface:ErrorHandler
HandlerBase.java 308 * Receive notification of a parser warning.
312 * for each warning, such as inserting the message in a log file or
315 * @param e The warning information encoded as an exception.
318 * @see org.xml.sax.ErrorHandler#warning
321 public void warning (SAXParseException e)
336 * @param e The warning information encoded as an exception.
339 * @see org.xml.sax.ErrorHandler#warning
317 public void warning (SAXParseException e) method in class:HandlerBase
  /external/junit/src/junit/framework/
TestSuite.java 56 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
68 return(warning("Cannot instantiate test case: "+name+" ("+exceptionToString(e)+")"));
70 return(warning("Exception in constructor: "+name+" ("+exceptionToString(e.getTargetException())+")"));
72 return(warning("Cannot access test case: "+name+" ("+exceptionToString(e)+")"));
91 * Returns a test which will fail and log a warning message.
93 public static Test warning(final String message) { method in class:TestSuite
94 return new TestCase("warning") {
137 addTest(warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()"));
142 addTest(warning("Class "+theClass.getName()+" is not public"));
154 addTest(warning("No tests found in "+theClass.getName()))
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
util.py 9 warning = lambda message: _write_message('warning', message) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 34 MsgHandler warning(unsigned int pID);
59 inline mcld::MsgHandler mcld::warning(unsigned int pID) function in class:mcld
61 return getDiagnosticEngine().report(pID, DiagnosticEngine::Warning);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
alisp.h 24 warning: 1, member in struct:alisp_cfg
30 snd_output_t *wout; /* warning output */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
alisp.h 24 warning: 1, member in struct:alisp_cfg
30 snd_output_t *wout; /* warning output */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
alisp.h 24 warning: 1, member in struct:alisp_cfg
30 snd_output_t *wout; /* warning output */
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 43 TextView warning = (TextView) activity.findViewById(R.id.warning); local
49 assertNotNull(warning);
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3ErrorLog.java 75 * Sends a warning message to the Maven log sink.
79 public void warning(Message message) { method in class:Antlr3ErrorLog
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
ErrorQueue.java 50 public void warning(Message msg) { method in class:ErrorQueue
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
MsgMgr.java 32 * This class will manage error messages, warning messages, and other types of
69 errHandler.warning(new TransformerException(msg, srcLctr));
151 errHandler.warning(new TransformerException(formattedMsg, srcLctr));
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.h 44 enum ErrorType { warning, nonFatal, fatal }; enumerator in enum:WebCore::XMLErrors::ErrorType
  /external/chromium_org/third_party/icu/source/tools/genrb/
errmsg.c 59 void warning(uint32_t linenumber, const char *msg, ...) function
66 fprintf(stderr, "%s:%u: warning: ", gCurrentFileName, (int)linenumber);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/log/
Logger.java 52 return delegate.isLoggable(Level.WARNING);
55 public void warning(String message) method in class:Logger
57 delegate.warning(message);
  /external/icu4c/tools/genrb/
errmsg.c 59 U_CFUNC void warning(uint32_t linenumber, const char *msg, ...) function
66 fprintf(stderr, "%s:%u: warning: ", gCurrentFileName, (int)linenumber);
  /external/linux-tools-perf/util/
usage.c 34 report(" Warning: ", warn, params);
73 void warning(const char *warn, ...) function
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
TestLogger.java 50 public void warning(String warningFormat, Object... args) { method in class:TestLogger
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 102 * Receive notification of a warning.
112 * @param exception The warning information encapsulated in a
117 public void warning(SAXParseException exception) throws SAXException method in class:DefaultErrorHandler
122 pw.println("Parser warning: " + exception.getMessage());
182 * Receive notification of a warning.
192 * @param exception The warning information encapsulated in a
198 public void warning(TransformerException exception) throws TransformerException method in class:DefaultErrorHandler
  /external/chromium_org/chrome/common/extensions/api/commands/
commands_manifest_unittest.cc 107 std::string warning = "'commands' requires Google Chrome dev channel or " local
114 LoadAndExpectWarning("command_app.json", warning);
115 LoadAndExpectWarning("command_app_global.json", warning);
  /external/chromium_org/tools/grit/grit/
xtb_reader.py 104 def warning(self, exception): member in class:XtbErrorHandler

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 910