HomeSort by relevance Sort by last modified time
    Searched full:lead (Results 1 - 25 of 1610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/markupsafe/
AUTHORS 4 Development Lead
  /external/chromium/chrome/browser/resources/shared/css/
list.css 35 list > [lead],
36 grid > [lead] {
40 list:focus > [lead],
41 grid:focus > [lead] {
73 list:focus > [lead][selected],
75 grid:focus > [lead][selected],
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
list.css 35 list > [lead],
36 grid > [lead] {
40 list:focus > [lead],
41 grid:focus > [lead] {
73 list:focus > [lead][selected],
75 grid:focus > [lead][selected],
  /dalvik/tests/091-deep-interface-hierarchy/
info.txt 3 In cases like this can quickly lead to excessive LinearAlloc consumption due to more than linear
  /external/chromium_org/third_party/WebKit/ManualTests/
go-back-after-alert.html 3 This tests a bug where going back just before putting up an alert can lead to a crash.
  /external/clang/test/CXX/conv/conv.qual/
pr6089.cpp 9 // Note: the const here does not lead to a qualification conversion
  /external/chromium_org/third_party/icu/source/i18n/
bocsu.h 45 * - Similar to a UTF, encoding the length of the byte sequence in the lead bytes.
47 * (trail byte values may overlap with lead/single byte values).
53 * Instead, we split the lead byte range in the middle and encode non-negative values
60 * is added to a lead byte avoiding the single-byte range.
64 * for lead/single bytes so that the middle range of single bytes is as large
66 * Note that the lead byte ranges overlap some, but that the sequences as a whole
67 * are well ordered. I.e., even if the lead byte is the same for sequences of different
88 * Number of lead bytes:
106 * Symmetrical lead byte counts are for convenience.
108 * no advantage to asymmetrical lead byte counts
    [all...]
  /external/icu4c/i18n/
bocsu.h 51 * - Similar to a UTF, encoding the length of the byte sequence in the lead bytes.
53 * (trail byte values may overlap with lead/single byte values).
59 * Instead, we split the lead byte range in the middle and encode non-negative values
66 * is added to a lead byte avoiding the single-byte range.
70 * for lead/single bytes so that the middle range of single bytes is as large
72 * Note that the lead byte ranges overlap some, but that the sequences as a whole
73 * are well ordered. I.e., even if the lead byte is the same for sequences of different
94 * Number of lead bytes:
112 * Symmetrical lead byte counts are for convenience.
114 * no advantage to asymmetrical lead byte counts
    [all...]
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
list_selection_model_test.html 88 assertEquals('lead', 98, sm.leadIndex);
102 assertEquals('lead', 100, sm.leadIndex);
114 assertEquals('lead', 10, sm.leadIndex);
127 assertEquals('lead', 10, sm.leadIndex);
141 assertEquals('lead', -1, sm.leadIndex);
154 assertEquals('lead', 0, sm.leadIndex);
167 assertEquals('lead', 5, sm.leadIndex);
list_item.js 59 * Whether the item is the lead in a selection. Setting this does not update
63 cr.defineProperty(ListItem, 'lead', cr.PropertyKind.BOOL_ATTR);
  /external/icu4c/common/
bmpset.cpp 70 int32_t lead=start>>6; // Named for UTF-8 2-byte lead byte with upper 5 bits.
74 uint32_t bits=(uint32_t)1<<lead;
83 if(lead==limitLead) {
96 ++lead;
98 if(lead<limitLead) {
99 bits=~((1<<lead)-1);
218 bits=3; // Lead bytes 0xC0 and 0xC1.
223 bits=1; // Lead byte 0xE0.
228 mask=~(0x10001<<0xd); // Lead byte 0xED
    [all...]
utrie.h 39 * even for lead surrogate code _points_, while the _FROM_LEAD() macros
40 * get special "folded" values for lead surrogate code _units_ if
46 * to get that offset from the folded value for a lead surrogate unit.
63 * Lead surrogate code points' index displacement in the index array.
84 * Number of index (stage 1) entries per lead surrogate.
110 * possible duplicate entries for 1024 lead surrogates.)
122 * BMP index + 1 index block for lead surrogate code points +
123 * Latin-1-linear array + 1 data block for lead surrogate code points
133 * Extract from a lead surrogate's data the
134 * index array offset of the indexes for that lead surrogate
    [all...]
  /external/chromium_org/third_party/icu/source/common/
bmpset.cpp 64 int32_t lead=start>>6; local
68 uint32_t bits=(uint32_t)1<<lead;
77 if(lead==limitLead) {
90 ++lead;
92 if(lead<limitLead) {
93 bits=~((1<<lead)-1);
209 bits=3; // Lead bytes 0xC0 and 0xC1.
214 bits=1; // Lead byte 0xE0.
219 mask=~(0x10001<<0xd); // Lead byte 0xED.
226 mask=~(0x10001<<0xd); // Lead byte 0xED
274 int lead=c>>12; local
315 int lead=c>>12; local
355 int lead=c>>12; local
404 int lead=c>>12; local
447 int lead=c>>12; local
700 int lead=c>>12; local
    [all...]
utrie.h 38 * even for lead surrogate code _points_, while the _FROM_LEAD() macros
39 * get special "folded" values for lead surrogate code _units_ if
45 * to get that offset from the folded value for a lead surrogate unit.
62 * Lead surrogate code points' index displacement in the index array.
83 * Number of index (stage 1) entries per lead surrogate.
109 * possible duplicate entries for 1024 lead surrogates.)
121 * BMP index + 1 index block for lead surrogate code points +
122 * Latin-1-linear array + 1 data block for lead surrogate code points
132 * Extract from a lead surrogate's data the
133 * index array offset of the indexes for that lead surrogate
    [all...]
  /external/icu4c/layout/
HangulLayoutEngine.cpp 111 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable)
113 le_int32 lIndex = lead - LJMO_FIRST;
132 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
140 lead = LJMO_FIRST + (sIndex / HSYL_LVCNT);
151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail)
153 lead = LJMO_FILL;
158 lead = ch;
172 le_int32 c = decompose(ch, lead, vowel, trail);
248 LEUnicode lead = 0; local
251 int32_t chClass = getCharClass(chars[i], lead, vowel, trail)
308 LEUnicode lead = outChars[outStart]; local
    [all...]
  /external/chromium_org/ui/webui/resources/css/
list.css 38 list > [lead],
39 grid > [lead] {
43 list:focus > [lead],
44 grid:focus > [lead] {
76 list:focus > [lead][selected],
78 grid:focus > [lead][selected],
  /external/chromium_org/third_party/jinja2/
AUTHORS 4 Lead Developer:
  /external/eigen/
README.android 13 lead to an error. See ./Eigen/src/Core/util/NonMPL2.h for details.
  /external/clang/test/SemaObjC/
warn-retain-cycle.m 12 ^{ [x actNow]; }]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}}
14 ^{ [x actNow]; }; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}}
17 ^{ [x actNow]; }]; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}}
31 x.block = ^{ (void)x.actNow; }; // expected-warning {{capturing 'x' strongly in this block is likely to lead to a retain cycle}} \
74 (void) owner; }; // expected-warning {{capturing 'self' strongly in this block is likely to lead to a retain cycle}}
94 test2_helper(x); // expected-warning {{capturing 'self' strongly in this block is likely to lead to a retain cycle}}
125 if (count > 20) { // expected-warning {{capturing 'self' strongly in this block is likely to lead to a retain cycle}}
149 b1(); // expected-warning{{capturing 'b1' strongly in this block is likely to lead to a retain cycle}}
154 b2(); // expected-warning{{capturing 'b2' strongly in this block is likely to lead to a retain cycle}}
170 [obj actNow]; // expected-warning{{capturing 'obj' strongly in this block is likely to lead to a retain cycle}
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
list.css 32 list:focus > [lead],
33 grid:focus > [lead] {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/
list_item.js 60 * Whether the item is the lead in a selection. Setting this does not update
64 cr.defineProperty(ListItem, 'lead', cr.PropertyKind.BOOL_ATTR);
  /external/chromium_org/chrome_frame/test/
test_scrubber.h 10 // Tests that lead to Chrome using a user data directory other than that used by
12 // |OverrideDataDirectoryForThisTest()|. Failure to do so will lead to the
  /external/chromium_org/ui/webui/resources/js/cr/ui/
list_item.js 60 * Whether the item is the lead in a selection. Setting this does not update
64 cr.defineProperty(ListItem, 'lead', cr.PropertyKind.BOOL_ATTR);
  /external/chromium/base/third_party/icu/
icu_utf.h 94 * is it a lead surrogate?
108 * Count the trail bytes for a UTF-8 lead byte.
114 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value.
128 * Is this code unit (byte) a UTF-8 lead byte?
180 * The offset may point to the lead byte of a multi-byte sequence,
247 * Is this code unit a lead surrogate (U+d800..U+dbff)?
272 * is it a lead surrogate?
287 * from its lead and trail surrogates.
289 * lead and trail surrogates.
291 * @param lead lead surrogate (U+d800..U+dbff
    [all...]
  /external/chromium_org/base/third_party/icu/
icu_utf.h 95 * is it a lead surrogate?
109 * Count the trail bytes for a UTF-8 lead byte.
115 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value.
129 * Is this code unit (byte) a UTF-8 lead byte?
181 * The offset may point to the lead byte of a multi-byte sequence,
248 * Is this code unit a lead surrogate (U+d800..U+dbff)?
273 * is it a lead surrogate?
288 * from its lead and trail surrogates.
290 * lead and trail surrogates.
292 * @param lead lead surrogate (U+d800..U+dbff
    [all...]

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>