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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/bionic/
atexit_legacy.c 54 static char const warning[] = "WARNING: generic atexit() called from legacy shared library\n"; local
56 __libc_format_log(ANDROID_LOG_WARN, "libc", warning);
57 fprintf(stderr, warning);
  /external/boringssl/src/crypto/rand/
windows.c 22 OPENSSL_MSVC_PRAGMA(warning(push, 3))
33 OPENSSL_MSVC_PRAGMA(warning(pop)) function
  /external/parameter-framework/upstream/parameter/
ParameterMgrLogger.h 38 /* Wrap a class to expose its logging [info, warning] capabilities
48 virtual void warning(const std::string &log) { _parameterMgrConnector.warning(log); } function in class:CParameterMgrLogger
SubsystemObject.h 95 core::log::details::Warning warning() const { return _logger.warning(); } function in class:CSubsystemObject
  /external/vboot_reference/tests/
common.sh 38 function warning { function
39 echo -e "${COL_YELLOW}WARNING: $*${COL_STOP}" 1>&2
  /external/valgrind/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
  /external/llvm/utils/llvm-build/llvmbuild/
util.py 9 warning = lambda message: _write_message('warning', message) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
  /external/parameter-framework/upstream/parameter/log/include/log/
Logger.h 44 * Streams can be used through Info and Warning objects returned by dedicated
65 * Retrieve wrapped warning logger
67 * @return Warning logger
69 details::Warning warning() { return details::Warning(mLogger, mProlog); } function in class:core::log::Logger
  /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
  /external/junit/src/main/java/junit/framework/
TestSuite.java 55 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"));
155 addTest(warning("No tests found in " + theClass.getName()))
    [all...]
  /external/parameter-framework/upstream/bindings/python/
sample.py 42 def warning(self, msg): member in class:MyLogger
43 logging.warning(msg)
50 # warning: don't pass MyLogger() directly as argument to setLogger() or it will
  /external/parameter-framework/upstream/test/test-platform/
TestPlatform.h 159 virtual void warning(const std::string &log) { std::cerr << log << std::endl; } function in class:CTestPlatform::__anon28176
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
LitConfig.py 84 self.warning("Unable to find 'bash', running Tcl tests internally.")
121 def warning(self, message): member in class:LitConfig
122 self._write_message('warning', message)
  /frameworks/base/legacy-test/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...]
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 31 MsgHandler warning(unsigned int pID);
53 inline mcld::MsgHandler mcld::warning(unsigned int pID) { function in class:mcld
54 return getDiagnosticEngine().report(pID, DiagnosticEngine::Warning);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/sysroot/usr/include/alsa/
alisp.h 24 warning: 1, member in struct:alisp_cfg
30 snd_output_t *wout; /* warning output */
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
Logger.h 54 // Logs a warning.
55 void warning(const std::string& w) { warnings.push_back(w); } function in class:spv::SpvBuildLogger
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
Logger.h 54 // Logs a warning.
55 void warning(const std::string& w) { warnings.push_back(w); } function in class:spv::SpvBuildLogger
  /tools/test/connectivity/acts/framework/acts/
tracelogger.py 27 # We want the stack frame above this and above the error/warning/info
53 def warning(self, msg, *args, **kwargs): member in class:TraceLogger
55 self._logger.warning("%s %s" % (msg, trace_info), *args, **kwargs)
  /bionic/libc/tools/
genversion-scripts.py 33 warning = "Generated by %s. Do not edit." % script_name variable
55 fout.write("# %s\n" % warning)
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 53 TextView warning = (TextView) activity.findViewById(R.id.warning); local
59 assertNotNull(warning);
  /development/scripts/
usb-reset-by-serial.py 72 warning("no env setting for LANG -- using default values")
77 def warning(msg): function
78 """Issue a warning to stderr."""
79 sys.stderr.write("warning: " + msg + "\n")
99 warning(decoded_err)

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>