Searched refs:middle (Results 1 - 25 of 88) sorted by relevance

1234

/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp8 struct middle { struct in struct:PR10127::outer
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer::middle
[all...]
/external/chromium/chrome/browser/autofill/
H A Dcontact_info_unittest.cc18 EXPECT_EQ(name.middle(), ASCIIToUTF16(""));
24 EXPECT_EQ(name.middle(), ASCIIToUTF16(""));
30 EXPECT_EQ(name.middle(), ASCIIToUTF16("Yevgrafovich"));
37 EXPECT_EQ(name.middle(), ASCIIToUTF16("Ignatius Conan"));
H A Dcontact_info.cc76 if (!middle().empty())
94 return middle();
142 string16 middle_name(middle());
156 // If each of the 'words' contained in the text are also present in the middle
174 // of any of the given middle names then we consider it to be a middle
189 // middle, or last name.
285 void NameInfo::SetMiddle(const string16& middle) { argument
286 middle_ = middle;
288 Tokenize(middle, kNameSplitChar
[all...]
H A Dcontact_info.h35 // Returns the full name, which can include up to the first, middle, and last
39 // Returns the middle initial if |middle_| is non-empty. Returns an empty
44 const string16& middle() const { return middle_; } function in class:NameInfo
50 // Returns true if |text| is the middle name.
56 // Returns true if |text| is the middle initial.
75 // Sets |middle_| to |middle| and |middle_tokens_| to the set of tokens in
76 // |middle|, made lowercase.
77 void SetMiddle(const string16& middle);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DDrawErrorUnderline.h72 double middle = x + (i + 1) * unitWidth; local
75 cairo_line_to(cr, middle, bottom); // B
86 double middle = x + (i + 1) * unitWidth; local
90 cairo_line_to(cr, middle + halfSquare, bottom - halfSquare); // G
95 cairo_line_to(cr, middle, bottom - halfSquare); // F
/external/icu4c/samples/uciter8/
H A Duciter8.c47 int32_t i, pos1, pos2, middle, length; local
58 /* set into the middle */
59 middle=length/2;
61 pos1=iter1->move(iter1, middle, UITER_ZERO);
62 if(pos1!=middle) {
63 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n1, middle, pos1);
67 pos2=iter2->move(iter2, middle, UITER_ZERO);
68 if(pos2!=middle) {
216 testIteratorState(UCharIterator *iter1, UCharIterator *iter2, const char *n, int32_t middle) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-159334.js98 var middle = beginLine + (count >>> 1);
99 return buildEval_r(beginLine, middle) + buildEval_r(middle, endLine);
/external/chromium/chrome/browser/resources/options/
H A Dclear_browser_data_overlay.css22 vertical-align: middle;
H A Dcontent_settings.css20 vertical-align: middle;
/external/llvm/test/MC/AsmParser/
H A Dmacro-args.s24 middle _$0, $1
26 .macro middle
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtime.cc76 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later) { argument
78 return ((earlier <= middle) && (middle <= later));
80 return !((later < middle) && (middle < earlier));
H A Dtime.h51 bool TimeIsBetween(uint32 earlier, uint32 middle, uint32 later); // Inclusive
/external/guava/guava/src/com/google/common/collect/
H A DSortedLists.java73 int middle = (lower + upper + 1) >>> 1;
74 int c = comparator.compare(list.get(middle), key);
76 upper = middle - 1;
78 lower = middle;
98 int middle = (lower + upper) >>> 1;
99 int c = comparator.compare(list.get(middle), key);
101 lower = middle + 1;
103 upper = middle;
271 int middle = (lower + upper) >>> 1;
272 int c = comparator.compare(key, list.get(middle));
[all...]
/external/elfutils/tests/
H A Ddwfl-bug-addr-overflow.c63 Dwfl_Module *middle = dwfl_report_module (dwfl, "middle", local
66 assert (middle);
76 assert (mod == middle);
/external/srec/srec/clib/
H A Dvoc_read.c168 const char* middle; local
180 /* pick a point in the middle and align to next entry */
181 middle = low + ((high - low) >> 1) - 1;
182 while (*middle++ != '\n') ;
184 /* compare 'label' to 'middle' */
185 int diff = kompare(label, middle);
191 /* 'middle' aligned to 'high', so move 'high' down */
192 if (middle == high) {
199 if (diff > 0) low = middle;
200 else high = middle;
[all...]
/external/v8/test/mjsunit/harmony/
H A Dblock-let-semantics.js178 function middle() {
187 return middle();
/external/harfbuzz/src/
H A Dharfbuzz-open.c816 HB_UShort min, max, new_min, new_max, middle; local
837 middle = max - ( ( max - min ) >> 1 );
839 if ( glyphID == array[middle] )
841 *index = middle;
844 else if ( glyphID < array[middle] )
846 if ( middle == min )
848 new_max = middle - 1;
852 if ( middle == max )
854 new_min = middle + 1;
866 HB_UShort min, max, new_min, new_max, middle; local
1197 HB_UShort min, max, new_min, new_max, middle; local
[all...]
/external/v8/test/mjsunit/
H A Dcyrillic.js38 middle: "\u0447", // che
53 middle: sigma, // sigma
70 var middle = lc ? chars.middle : chars.MIDDLE;
73 var middle_other_case = lc ? chars.MIDDLE : chars.middle;
77 assertTrue(Range(first, last).test(middle), 2);
85 assertTrue(Range(first, last, "i").test(middle), 8);
115 assertTrue(Range(greek.first, cyrillic.LAST, flag).test(greek.middle), 20);
129 assertEquals(ignore_case, Range(greek.first, cyrillic.LAST, flag).test(cyrillic.middle), 29);
196 assertEquals(ignore_case || full, re.test(cyrillic.middle), 6
[all...]
/external/grub/lib/
H A Dgetopt.c315 int middle = last_nonopt;
346 while (top > middle && middle > bottom)
348 if (top - middle > middle - bottom)
351 int len = middle - bottom;
358 argv[bottom + i] = argv[top - (middle - bottom) + i];
359 argv[top - (middle - bottom) + i] = tem;
360 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
368 int len = top - middle;
312 int middle = last_nonopt; local
[all...]
/external/icu4c/i18n/
H A Ducol_wgt.cpp159 WeightRange lower[5], middle, upper[5]; /* [0] and [1] are not used - this simplifies indexing */ local
194 uprv_memset(&middle, 0, sizeof(middle));
203 * middle 1
222 middle.start=incWeightTrail(weight, 1);
235 middle.end=decWeightTrail(weight, 1);
237 /* set the middle range */
238 middle.length=1;
239 if(middle.end>=middle
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSortUtil.java204 // the middle element in the array is our partitioning element
261 // the middle element in the array is our partitioning element
327 int low, int middle, int high, Comparator comp) {
328 int leftEnd = middle - 1;
332 while (low <= leftEnd && middle <= high) {
333 if (comp.compare(src[low], src[middle]) <= 0) {
336 dest[pos++] = src[middle++];
344 while (middle <= high) {
345 dest[pos++] = src[middle++];
326 merge(Object[] src, Object[] dest, int low, int middle, int high, Comparator comp) argument
/external/icu4c/test/cintltst/
H A Dnfsprep.c153 int left, middle, right,rc; local
159 middle = (left+right)/2;
160 rc=strncmp(sortedArr[middle],target, targetLen);
163 left = middle+1;
165 right = middle -1;
167 return middle;
H A Dcustrtst.c1194 int32_t i, pos1, pos2, middle, length; local
1205 /* set into the middle */
1206 middle=length/2;
1208 pos1=iter1->move(iter1, middle, UITER_ZERO);
1209 if(pos1!=middle) {
1210 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n1, middle, pos1);
1214 pos2=iter2->move(iter2, middle, UITER_ZERO);
1215 if(pos2!=middle) {
1363 testIteratorState(UCharIterator *iter1, UCharIterator *iter2, const char *n, int32_t middle) argument
1544 compareIterNoIndexes(UCharIterator *iter1, const char *n1, UCharIterator *iter2, const char *n2, int32_t middle) argument
1700 testUNormIteratorWithText(const UChar *text, int32_t textLength, int32_t middle, const char *name1, const char *n2) argument
1763 int32_t i, middle, length; local
[all...]
/external/bison/src/
H A Dlalr.c148 goto_number middle; local
157 middle = (low + high) / 2;
158 s = from_state[middle];
160 return middle;
162 low = middle + 1;
164 high = middle - 1;
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dinternet_options_page.css90 vertical-align: middle;
159 vertical-align: middle;
169 vertical-align: middle;
174 vertical-align: middle;

Completed in 1009 milliseconds

1234