Searched defs:warning (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/awt/javax/imageio/event/
H A DIIOReadWarningListener.java34 * warning messages generated by image and thumbnail reading methods.
41 * Notifies this listener about a warning (non-fatal error) during decoding.
45 * @param warning
46 * the string describing the warning.
48 public void warningOccurred(ImageReader source, String warning); argument
H A DIIOWriteWarningListener.java36 * Notifies this listener about a warning (non-fatal error) during encoding.
41 * the index of the image generating the warning.
42 * @param warning
43 * the string describing the warning.
45 void warningOccurred(ImageWriter source, int imageIndex, String warning); argument
/frameworks/base/tools/aapt/
H A DSourcePos.cpp89 const char* type = fatal ? "error:" : "warning:";
138 SourcePos::warning(const char* fmt, ...) const function in class:SourcePos
/frameworks/base/awt/javax/imageio/
H A DImageWriter.java80 * The warning listeners.
85 * The warning locales.
162 * Processes a warning message by calling warningOccurred method of
167 * @param warning
168 * the warning.
170 protected void processWarningOccurred(int imageIndex, String warning) { argument
171 if (null == warning) {
172 throw new NullPointerException("warning message should not be NULL");
176 listener.warningOccurred(this, imageIndex, warning);
182 * Processes a warning messag
[all...]
H A DImageReader.java88 * The list of warning listeners.
93 * The list of warning locales.
1043 * Processes a warning message by calling warningOccurred method of
1046 * @param warning
1047 * the warning.
1049 protected void processWarningOccurred(String warning) { argument
1054 * Processes a warning by calling the warningOccurred method of on all
1060 * the keyword to index the warning among ResourceBundles.

Completed in 975 milliseconds