Home
last modified time | relevance | path

Searched full:fine (Results 1 – 25 of 1780) sorted by relevance

12345678910>>...72

/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
DJDK14LoggerAdapter.java160 * 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/
Dtest109715 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
Dtest53522 HTTP/1.1 200 Fine
28 fine content
32 fine content
Dtest25726 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
Dtest53623 HTTP/1.1 200 Fine
29 fine content
33 fine content
Dtest202325 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)
Dtest131617 HTTP/1.1 200 Mighty fine indeed
25 HTTP/1.1 200 Mighty fine indeed
28 HTTP/1.1 200 Mighty fine indeed
Dtest8931 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
Dtest202430 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)
Dtest9041 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/syslinux/gnu-efi/gnu-efi-3.0/apps/
Dtcc.c355 Print(L"0 args works just fine here.\r\n"); in efi_main()
363 Print(L"1 arg works just fine here.\r\n"); in efi_main()
371 Print(L"2 args works just fine here.\r\n"); in efi_main()
379 Print(L"3 args works just fine here.\r\n"); in efi_main()
387 Print(L"4 args works just fine here.\r\n"); in efi_main()
395 Print(L"5 args works just fine here.\r\n"); in efi_main()
403 Print(L"6 args works just fine here.\r\n"); in efi_main()
411 Print(L"7 args works just fine here.\r\n"); in efi_main()
419 Print(L"8 args works just fine here.\r\n"); in efi_main()
427 Print(L"9 args works just fine here.\r\n"); in efi_main()
[all …]
/external/sl4a/ScriptingLayerForAndroid/res/drawable/
Datari_small_notice.txt1 COMMENT Copyright (c) 1999, Thomas A. Fine
8 COMMENT http://hea-www.harvard.edu/~fine/
11 COMMENT written by Thomas A. Fine
/external/llvm/test/MC/Disassembler/AArch64/
Dldp-postind.predictable.txt8 # 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.
Dldp-preind.predictable.txt8 # 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/libexif/libexif/olympus/
Dmnote-olympus-entry.c108 {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/
DLevelTest.java116 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);
DStreamHandlerTest.java115 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/openssh/
Dplatform-pledge.c30 * Drop any fine-grained privileges that are not needed for post-startup
48 * Drop any fine-grained privileges that are not needed for post-startup
60 * Drop any fine-grained privileges that are not needed for the post-startup
/external/iptables/extensions/
Dlibxt_TCPMSS.man11 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/chromium-trace/catapult/devil/devil/android/
Dflag_changer_test.py86 "--key=this is 'fine' too", '''--key="this is 'fine' too"''')
115 'chrome --foo --bar="a b" --baz=true --fine="ok"',
116 ['--foo', '--bar=a b', '--baz=true', '--fine=ok'])
/external/libopus/celt/
Drate.c153 /* 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()
479 final fine energy pass */ in interp_bits2pulses()
482 /* Remove the allocated fine bits; the rest are assigned to PVQ */ in interp_bits2pulses()
486 /* For N=1, all bits go to fine energy except for a single sign bit */ in interp_bits2pulses()
[all …]
/external/curl/docs/libcurl/opts/
DCURLOPT_SEEKFUNCTION.331 #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
DCURLOPT_SOCKOPTFUNCTION.336 #define CURL_SOCKOPT_OK 0
37 #define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return
39 #define CURL_SOCKOPT_ALREADY_CONNECTED 2
/external/apache-http/src/org/apache/commons/logging/impl/
DJdk14Logger.java52 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/ltp/testcases/kernel/syscalls/getcwd/
Dgetcwd02.c21 * 1) getcwd(2) works fine if buf and size are valid.
22 * 2) getcwd(2) works fine if buf points to NULL and size is set to 0.
23 * 3) getcwd(2) works fine if buf points to NULL and size is greater than strlen(path).

12345678910>>...72