Home
last modified time | relevance | path

Searched refs:setLoggingLevel (Results 1 – 8 of 8) sorted by relevance

/external/icing/java/src/com/google/android/icing/
DIcingSearchEngineImpl.java285 public static boolean setLoggingLevel(short severity) { in setLoggingLevel() method in IcingSearchEngineImpl
286 return setLoggingLevel(severity, (short) 0); in setLoggingLevel()
289 public static boolean setLoggingLevel(short severity, short verbosity) { in setLoggingLevel() method in IcingSearchEngineImpl
DIcingSearchEngine.java293 public static boolean setLoggingLevel(LogSeverity.Code severity) { in setLoggingLevel() method in IcingSearchEngine
294 return setLoggingLevel(severity, (short) 0); in setLoggingLevel()
297 public static boolean setLoggingLevel(LogSeverity.Code severity, short verbosity) { in setLoggingLevel() method in IcingSearchEngine
298 return IcingSearchEngineImpl.setLoggingLevel((short) severity.getNumber(), verbosity); in setLoggingLevel()
/external/apache-xml/test/java/src/org/apache/qetest/
DLoggingHandler.java232 public void setLoggingLevel(int l) in setLoggingLevel() method in LoggingHandler
DReporter.java189 setLoggingLevel(Integer.parseInt(logLvl)); in initialize()
864 public void setLoggingLevel(int setLL) in setLoggingLevel() method in Reporter
/external/apache-xml/test/java/src/org/apache/qetest/xsl/
DLoggingEntityResolver.java142 public void setLoggingLevel(int l) in setLoggingLevel() method in LoggingEntityResolver
DXSLTestAntTask.java199 public void setLoggingLevel(int ll) in setLoggingLevel() method in XSLTestAntTask
/external/apache-xml/test/java/src/org/apache/qetest/xalanj2/
DTraceListenerTest.java335 …ltl.setLoggingLevel(100); // HACK - happens to be above 99, which is what we usually set max level… in testCase3()
380 ltl.setLoggingLevel(Logger.INFOMSG + 1); in testCase4()
415 ltl.setLoggingLevel(Logger.INFOMSG + 1); in testCase4()
/external/icing/java/tests/instrumentation/src/com/google/android/icing/
DIcingSearchEngineTest.java1253 assertThat(IcingSearchEngine.setLoggingLevel(LogSeverity.Code.INFO)).isTrue(); in testLogging()
1258 assertThat(IcingSearchEngine.setLoggingLevel(LogSeverity.Code.WARNING)).isTrue(); in testLogging()
1263 assertThat(IcingSearchEngine.setLoggingLevel(LogSeverity.Code.DBG)).isTrue(); in testLogging()
1268 assertThat(IcingSearchEngine.setLoggingLevel(LogSeverity.Code.VERBOSE, (short) 1)).isTrue(); in testLogging()