/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/ |
D | JDK14LoggerAdapter.java | 160 * Is this logger instance enabled for the FINE level? 162 * @return True if this Logger is enabled for level FINE, false otherwise. 165 return logger.isLoggable(Level.FINE); in isDebugEnabled() 169 * Log a message object at level FINE. 175 if (logger.isLoggable(Level.FINE)) { in debug() 176 log(SELF, Level.FINE, msg, null); in debug() 181 * Log a message at level FINE according to the specified format and argument. 185 * for level FINE. 194 if (logger.isLoggable(Level.FINE)) { in debug() 196 log(SELF, Level.FINE, ft.getMessage(), ft.getThrowable()); in debug() [all …]
|
/external/curl/tests/data/ |
D | test1097 | 15 HTTP/1.1 200 We are fine and cool 19 This is all fine and dandy 23 HTTP/1.1 200 We are fine and cool 27 This is all fine and dandy 31 HTTP/1.1 200 We are fine and cool 35 HTTP/1.1 200 We are fine and cool 39 This is all fine and dandy
|
D | test257 | 26 HTTP/1.1 302 Followed here fine swsclose 35 HTTP/1.1 200 Followed here fine swsclose 50 HTTP/1.1 302 Followed here fine swsclose 55 HTTP/1.1 200 Followed here fine swsclose
|
D | test2023 | 25 HTTP/1.1 200 Things are fine in server land 57 HTTP/1.1 200 Things are fine in server land (2) 73 HTTP/1.1 200 Things are fine in server land 93 HTTP/1.1 200 Things are fine in server land (2)
|
D | test535 | 22 HTTP/1.1 200 Fine 28 fine content 32 fine content
|
D | test536 | 23 HTTP/1.1 200 Fine 29 fine content 33 fine content
|
D | test89 | 31 HTTP/1.1 301 Things are fine in server land swsclose 52 HTTP/1.1 200 Things are fine in server land swsclose 67 HTTP/1.1 301 Things are fine in server land swsclose 78 HTTP/1.1 200 Things are fine in server land swsclose
|
D | test1316 | 17 HTTP/1.1 200 Mighty fine indeed 25 HTTP/1.1 200 Mighty fine indeed 28 HTTP/1.1 200 Mighty fine indeed
|
D | test2024 | 30 HTTP/1.1 200 Things are fine in server land 64 HTTP/1.1 200 Things are fine in server land (2) 81 HTTP/1.1 200 Things are fine in server land 103 HTTP/1.1 200 Things are fine in server land (2)
|
D | test90 | 41 HTTP/1.1 301 Things are fine in server land swsclose 74 HTTP/1.1 200 Things are fine in server land swsclose 97 HTTP/1.1 301 Things are fine in server land swsclose 116 HTTP/1.1 200 Things are fine in server land swsclose
|
/external/opencv3/3rdparty/tbb/ |
D | CMakeLists.txt | 16 # 4.1 update 2 - works fine 31 # 4.1 update 2 - works fine 38 # 4.1 update 1 - works fine 44 # 4.1 - works fine 50 # 4.0 update 5 - works fine 56 # 4.0 update 4 - works fine 68 # 4.0 update 2 - works fine 75 # 4.0 update 1 - works fine
|
/external/v8/test/mjsunit/regress/ |
D | regress-crbug-469768.js | 11 // Throwing is fine, just don't crash. 18 // Throwing is fine, just don't crash. 25 // Throwing is fine, just don't crash. 32 // Throwing is fine, just don't crash.
|
/external/libexif/libexif/olympus/ |
D | mnote-olympus-entry.c | 108 {3, N_("VGA fine")}, 111 {6, N_("SXGA fine")}, 114 {12, N_("2 Mpixel fine")}, 155 {0x101, N_("Fine, SQ")}, 156 {0x102, N_("Fine, HQ")}, 157 {0x103, N_("Fine, SHQ")}, 158 {0x104, N_("Fine, RAW")}, 159 {0x105, N_("Fine, SQ1")}, 160 {0x106, N_("Fine, SQ2")}, 161 {0x107, N_("Fine, super high")}, [all …]
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | LevelTest.java | 116 assertSame(Level.FINE, Level.parse("FINE")); in testParse_PredefinedConstStrings() 155 assertSame(Level.FINE, Level.parse("FINE")); in testParse_PredefinedNumber() 164 assertSame(Level.FINE, Level.parse("500")); in testParse_PredefinedNumber() 366 assertEquals("FINE", MyLevel.parse("499").getName()); in testSubclassNewLevel() 367 assertEquals("FINE", MyLevel.parse("500").getName()); in testSubclassNewLevel() 368 assertEquals(500, MyLevel.parse("FINE").intValue()); in testSubclassNewLevel() 391 public static final Level DUPLICATENAME = new MyLevel("FINE", 499);
|
D | StreamHandlerTest.java | 115 p.put("java.util.logging.StreamHandler.level", "FINE"); in testConstructor_NoParameter_ValidProperties() 124 assertEquals("FINE", LogManager.getLogManager().getProperty( in testConstructor_NoParameter_ValidProperties() 129 assertSame(h.getLevel(), Level.parse("FINE")); in testConstructor_NoParameter_ValidProperties() 192 p.put("java.util.logging.StreamHandler.level", "FINE"); in testConstructor_HasParameters_ValidProperties() 201 assertEquals("FINE", LogManager.getLogManager().getProperty( in testConstructor_HasParameters_ValidProperties() 207 assertSame(h.getLevel(), Level.parse("FINE")); in testConstructor_HasParameters_ValidProperties() 246 p.put("java.util.logging.StreamHandler.level", "FINE"); in testConstructor_HasParameters_ValidPropertiesNullStream() 255 assertEquals("FINE", LogManager.getLogManager().getProperty( in testConstructor_HasParameters_ValidPropertiesNullStream() 274 p.put("java.util.logging.StreamHandler.level", "FINE"); in testConstructor_HasParameters_ValidPropertiesNullFormatter() 283 assertEquals("FINE", LogManager.getLogManager().getProperty( in testConstructor_HasParameters_ValidPropertiesNullFormatter() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
D | JavaUtilLog.java | 48 _logger.setLevel(Level.FINE); in JavaUtilLog() 90 return _logger.isLoggable(Level.FINE); in isDebugEnabled() 98 _logger.setLevel(Level.FINE); in setDebugEnabled() 108 _logger.log(Level.FINE, format(msg, args)); in debug() 118 _logger.log(Level.FINE, msg, thrown); in debug()
|
/external/sl4a/ScriptingLayerForAndroid/res/drawable/ |
D | atari_small_notice.txt | 1 COMMENT Copyright (c) 1999, Thomas A. Fine 8 COMMENT http://hea-www.harvard.edu/~fine/ 11 COMMENT written by Thomas A. Fine
|
/external/libopus/celt/ |
D | rate.c | 153 /* N=1 bands only have a sign bit and fine bits. */ in compute_pulse_cache() 218 /* Add the fine bits we'll use. */ in compute_pulse_cache() 221 /* Offset the number of fine bits by log2(N)/2 + FINE_OFFSET in compute_pulse_cache() 227 /* The number of fine bits we'll allocate if the remainder is in compute_pulse_cache() 377 /*If we have enough for a fine energy bit per channel, use it.*/ in interp_bits2pulses() 452 /* Offset for the number of fine bits by log2(N)/2 + FINE_OFFSET in interp_bits2pulses() 461 fine energy bit */ in interp_bits2pulses() 478 final fine energy pass */ in interp_bits2pulses() 481 /* Remove the allocated fine bits; the rest are assigned to PVQ */ in interp_bits2pulses() 485 /* For N=1, all bits go to fine energy except for a single sign bit */ in interp_bits2pulses() [all …]
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | ldp-postind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5], #24" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp], #8" is fine.
|
D | ldp-preind.predictable.txt | 8 # Stores from duplicated registers should be fine. 12 # d5 != x5 so "ldp d5, d6, [x5, #24]!" is fine. 16 # xzr != sp so "stp xzr, xzr, [sp, #8]!" is fine.
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
D | Jdk14Logger.java | 52 protected static final Level dummyLevel = Level.FINE; 112 * Logs a message with <code>java.util.logging.Level.FINE</code>. 118 log(Level.FINE, String.valueOf(message), null); in debug() 123 * Logs a message with <code>java.util.logging.Level.FINE</code>. 130 log(Level.FINE, String.valueOf(message), exception); in debug() 218 return (getLogger().isLoggable(Level.FINE)); in isDebugEnabled()
|
/external/iptables/extensions/ |
D | libxt_TCPMSS.man | 11 problem are that everything works fine from your Linux 17 Small mail works fine, but large emails hang. 19 ssh works fine, but scp hangs after initial handshaking.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
D | Http2.java | 31 import static java.util.logging.Level.FINE; 105 if (logger.isLoggable(FINE)) logger.fine(format("<< CONNECTION %s", connectionPreface.hex())); in readConnectionPreface() 137 if (logger.isLoggable(FINE)) logger.fine(formatHeader(true, streamId, length, type, flags)); in nextFrame() 398 if (logger.isLoggable(FINE)) { in connectionPreface() 399 logger.fine(format(">> CONNECTION %s", CONNECTION_PREFACE.hex())); in connectionPreface() 567 if (logger.isLoggable(FINE)) logger.fine(formatHeader(false, streamId, length, type, flags)); in frameHeader() 634 if (logger.isLoggable(FINE)) logger.fine(formatHeader(true, streamId, length, type, flags)); in readContinuationHeader()
|
/external/curl/docs/libcurl/opts/ |
D | CURLOPT_SEEKFUNCTION.3 | 31 #define CURL_SEEKFUNC_OK 0 32 #define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */ 33 #define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so
|
/external/gmock/test/ |
D | gmock-internal-utils_test.cc | 189 // Unsigned => larger signed is fine. in TEST() 192 // Unsigned => larger unsigned is fine. in TEST() 196 // Signed => unsigned is not fine. in TEST() 201 // Same size and same signedness: fine too. in TEST() 209 // Same size, different signedness: not fine. in TEST() 215 // Larger size => smaller size is not fine. in TEST() 242 // Smaller size => larger size is fine. in TEST() 247 // Same size: fine. in TEST() 251 // Larger size => smaller size is not fine. in TEST()
|