| /external/chromium/net/base/ |
| winsock_init.cc | 36 // call getaddrinfo() after Winsock has shutdown, which can lead to crashes.
|
| /external/chromium_org/cc/base/ |
| completion_event.h | 15 // absolutely certain that doing-so will not lead to a deadlock.
|
| /external/chromium_org/chrome/browser/chromeos/base/ |
| locale_util.h | 38 // using new locale with unsupported input method may lead to undefined
|
| /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/ |
| table.css | 11 .table[hasElementFocus] > list > [lead] {
|
| /external/chromium_org/chrome/common/ |
| time_format_browsertest.cc | 9 // will lead to wrong behavior. To make sure that the locale is set before
|
| /external/chromium_org/media/base/ |
| stream_parser_buffer.cc | 49 // is both a common and valid value and could lead to bugs.
|
| /external/chromium_org/net/base/ |
| winsock_init.cc | 36 // call getaddrinfo() after Winsock has shutdown, which can lead to crashes.
|
| /external/chromium_org/remoting/host/linux/ |
| x11_util.h | 49 // conditions that would otherwise lead to X errors.
|
| /external/chromium_org/third_party/WebKit/Source/web/ |
| ExternalPopupMenu.cpp | 111 // Calling methods on the PopupMenuClient might lead to this object being 118 // The call to valueChanged above might have lead to a call to 133 // Calling methods on the PopupMenuClient might lead to this object being 145 // The call to valueChanged above might have lead to a call to
|
| /external/chromium_org/third_party/icu/source/common/ |
| unifilt.cpp | 53 // the lead surrogate).
|
| /external/chromium_org/third_party/icu/source/data/mappings/ |
| noop-cns-11643.ucm | 23 # (state 0) lead byte, selects the CNS plane (0x80 + plane number)
|
| /external/chromium_org/tools/traceline/traceline/ |
| README | 4 timings as little as possible. This lead to a design in which the log buffer
|
| /external/icu4c/common/ |
| unifilt.cpp | 54 // the lead surrogate).
|
| /external/icu4c/data/mappings/ |
| noop-cns-11643.ucm | 23 # (state 0) lead byte, selects the CNS plane (0x80 + plane number)
|
| /external/stlport/test/unit/ |
| stldbg_include.cpp | 22 * This lead to compile-time error.
|
| /ndk/tests/device/test-gnustl-full/unit/ |
| stldbg_include.cpp | 22 * This lead to compile-time error.
|
| /ndk/tests/device/test-stlport/unit/ |
| stldbg_include.cpp | 22 * This lead to compile-time error.
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| NameLookupBuilder.java | 173 * Inserts Korean lead consonants records of name for the given structured name. 195 // Decompose and take a only lead-consonant for composed Korean characters. 197 // Lead consonant = "Lead consonant base" + 199 // ("Lead consonant count" * "middle Vowel count") 205 // This is not lead-consonant 210 // This is not lead-consonant
|
| /external/chromium_org/third_party/icu/source/test/cintltst/ |
| sprpdata.c | 209 UChar lead = UTF16_LEAD(mapping[i]); local 211 if(mappingData[index+i] != lead || 213 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[index+i], mappingData[index+i+1]); 240 // get data for lead surrogate 244 // get the real data from the folded lead/trail units
|
| /external/icu4c/test/cintltst/ |
| sprpdata.c | 210 UChar lead = U16_LEAD(mapping[i]); local 212 if(mappingData[idx+i] != lead || 214 log_err( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X\n", lead, trail, mappingData[idx+i], mappingData[idx+i+1]); 241 // get data for lead surrogate 245 // get the real data from the folded lead/trail units
|
| /external/chromium_org/third_party/icu/source/tools/tzcode/ |
| zdump.c | 828 register int lead; local 854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + 857 if (trail < 0 && lead > 0) { 859 --lead; 860 } else if (lead < 0 && trail > 0) { 862 ++lead; 864 if (lead == 0) 866 else (void) printf("%d%d", lead, ((trail < 0) ? -trail : trail)); 931 register int lead; local 939 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR [all...] |
| /external/icu4c/tools/tzcode/ |
| zdump.c | 828 register int lead; local 854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + 857 if (trail < 0 && lead > 0) { 859 --lead; 860 } else if (lead < 0 && trail > 0) { 862 ++lead; 864 if (lead == 0) 866 else (void) printf("%d%d", lead, ((trail < 0) ? -trail : trail)); 931 register int lead; local 939 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR [all...] |
| /sdk/ |
| changes.txt | 60 elements. This can lead to accidentally leaving debug information 70 * Find "import android.R" statements in Java code, which can lead to 72 * Find Java code which creates world-writeable files (which can lead 74 * Find references to private resources (which can lead to runtime 89 this can lead to subtle bugs (and lint was fixed to properly use 95 * Find style references which lead to cycles, such as extending
|
| /external/icu4c/common/unicode/ |
| utf8.h | 45 * lead byte position. 63 * Counts the trail bytes for a UTF-8 lead byte. 86 * Counts the trail bytes for a UTF-8 lead byte of a valid UTF-8 sequence. 87 * The maximum supported lead byte is 0xf4 corresponding to U+10FFFF. 100 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 167 * Is this code unit (byte) a UTF-8 lead byte? 210 * The offset may point to either the lead byte or one of the trail bytes 232 * The offset may point to either the lead byte or one of the trail bytes 260 * The offset may point to either the lead byte or one of the trail bytes 297 * The offset may point to the lead byte of a multi-byte sequence [all...] |
| /external/chromium/chrome/browser/resources/options/ |
| options_page.css | 469 list:not([hasElementFocus]) > [lead][selected] { 475 list[hasElementFocus] > [lead][selected], 477 list:not([hasElementFocus]) > [selected][lead]:hover { 482 list[hasElementFocus] > [lead], 483 list[hasElementFocus] > [lead][selected] { 488 list[hasElementFocus] > [lead]:nth-child(2), 489 list[hasElementFocus] > [lead][selected]:nth-child(2) { 493 list[hasElementFocus] > [lead]:nth-last-child(2), 494 list[hasElementFocus] > [lead][selected]:nth-last-child(2) { 498 list[disabled] > [lead][selected] [all...] |