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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
multiple_decls.h 6 struct narrow { char narrow; }; member in struct:narrow
7 char narrow(int);
multiple_decls.c 13 struct narrow n;
16 narrow(i);
  /external/llvm/test/BugPoint/
crash-narrowfunctiontest.ll 1 ; Test that bugpoint can narrow down the testcase to the important function
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
selected_keyword_decoration_unittest.mm 18 // A narrow width for tests which test things that don't fit.
54 // Narrow width chooses the partial string.
60 // Narrow doesn't choose partial string if there is not one.
ev_bubble_decoration_unittest.mm 28 const CGFloat kNarrow = 10.0; // Too narrow for anything.
  /external/icu4c/test/intltest/
tsdtfmsy.cpp 65 DateFormatSymbols::DtWidthType width[] = {DateFormatSymbols::WIDE, DateFormatSymbols::ABBREVIATED, DateFormatSymbols::NARROW};
90 DateFormatSymbols::DtWidthType width[] = {DateFormatSymbols::WIDE, DateFormatSymbols::ABBREVIATED, DateFormatSymbols::NARROW};
216 const UnicodeString *narrowMonths = en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW);
217 fr.setMonths(narrowMonths, count, DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW);
218 if( *en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW) !=
219 *fr.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::NARROW )) {
220 errln("ERROR: setMonths(FORMAT,NARROW) failed");
237 const UnicodeString *standaloneNarrowMonths = en.getMonths(count,DateFormatSymbols::STANDALONE,DateFormatSymbols::NARROW);
238 fr.setMonths(standaloneNarrowMonths, count, DateFormatSymbols::STANDALONE,DateFormatSymbols::NARROW);
239 if( *en.getMonths(count,DateFormatSymbols::STANDALONE,DateFormatSymbols::NARROW) !=
    [all...]
  /external/llvm/test/CodeGen/X86/
2008-06-13-VolatileLoadStore.ll 15 %l = volatile load i32* @ioport ; must not narrow
17 %l2 = volatile load i32* @ioport ; must not narrow
  /external/webkit/Source/WebCore/manual-tests/
select-narrow-width.html 3 Select narrow width manual test.
15 (more than 20) items that had narrow widths.
select-webkit-appearance-off-narrow-select.html 14 #narrow-with-border {
39 <select id="narrow-with-border">
  /external/icu4c/i18n/unicode/
dtfmtsym.h 217 * Gets narrow era strings. For example: "A" and "B".
220 * @return the narrow era strings.
226 * Sets narrow era strings. For example: "A" and "B".
227 * @param narrowEras Array of narrow era strings (DateFormatSymbols retains ownership.)
284 NARROW,
292 * @param width The width of returned strings, either WIDE, ABBREVIATED, or NARROW.
304 * @param width The width of returned strings, either WIDE, ABBREVIATED, or NARROW.
346 * @param width The width of returned strings, either WIDE, ABBREVIATED, or NARROW
357 * @param width The width of returned strings, either WIDE, ABBREVIATED, or NARROW
367 * are no NARROW quarters
    [all...]
  /external/stlport/stlport/stl/
_ios.h 106 inline char narrow(_CharT, char) const ;
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const function in class:basic_ios
146 { return _M_ctype_facet()->narrow(__c, __default); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const function in class:basic_ios
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios.h 106 inline char narrow(_CharT, char) const ;
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const function in class:basic_ios
146 { return _M_ctype_facet()->narrow(__c, __default); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const function in class:basic_ios
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ios.h 106 inline char narrow(_CharT, char) const ;
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const function in class:basic_ios
146 { return _M_ctype_facet()->narrow(__c, __default); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const function in class:basic_ios
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ios.h 106 inline char narrow(_CharT, char) const ;
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const function in class:basic_ios
146 { return _M_ctype_facet()->narrow(__c, __default); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const function in class:basic_ios
  /external/stlport/src/
complex_io.cpp 26 // Specializations for narrow characters; lets us avoid the nuisance of
45 // Specialization for narrow characters; lets us avoid widen.
  /external/stlport/test/unit/
ctype_facets_test.cpp 156 //narrow
158 CPPUNIT_ASSERT( ct.narrow('a', 'b') == 'a' );
161 //narrow range
165 ct.narrow(range, range + sizeof(range), 'b', res);
301 //narrow
303 CPPUNIT_CHECK( wct.narrow(L'a', 'b') == L'a' );
306 //narrow range
311 wct.narrow(range, range + sizeof(range) / sizeof(wchar_t), 'b', res);
  /ndk/sources/cxx-stl/stlport/src/
complex_io.cpp 26 // Specializations for narrow characters; lets us avoid the nuisance of
45 // Specialization for narrow characters; lets us avoid widen.
  /ndk/tests/device/test-gnustl-full/unit/
ctype_facets_test.cpp 156 //narrow
158 CPPUNIT_ASSERT( ct.narrow('a', 'b') == 'a' );
161 //narrow range
165 ct.narrow(range, range + sizeof(range), 'b', res);
301 //narrow
303 CPPUNIT_CHECK( wct.narrow(L'a', 'b') == L'a' );
306 //narrow range
311 wct.narrow(range, range + sizeof(range) / sizeof(wchar_t), 'b', res);
  /ndk/tests/device/test-stlport/unit/
ctype_facets_test.cpp 156 //narrow
158 CPPUNIT_ASSERT( ct.narrow('a', 'b') == 'a' );
161 //narrow range
165 ct.narrow(range, range + sizeof(range), 'b', res);
301 //narrow
303 CPPUNIT_CHECK( wct.narrow(L'a', 'b') == L'a' );
306 //narrow range
311 wct.narrow(range, range + sizeof(range) / sizeof(wchar_t), 'b', res);
  /bionic/libc/tzcode/
difftime.c 53 ** Punt if unsigned long is too narrow.
  /external/chromium/base/
format_macros.h 40 // GCC will concatenate wide and narrow strings correctly, so nothing needs to
  /external/chromium/chrome/browser/resources/ntp4/
tile_page.js 70 // The amount of space we need to display a narrow grid (all narrow grids
80 // Tile-related pixel values for the narrow display.
83 // Tile-related pixel values for the minimum narrow display.
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-message.h 83 // narrow streams.
144 // Since the basic IO manipulators are overloaded for both narrow
170 // Converts the given wide string to a narrow string using the UTF-8
176 // Converts the given wide string to a narrow string using the UTF-8
  /external/chromium/testing/gtest/include/gtest/
gtest-message.h 85 // narrow streams.
149 // Since the basic IO manipulators are overloaded for both narrow
175 // Converts the given wide string to a narrow string using the UTF-8
181 // Converts the given wide string to a narrow string using the UTF-8
  /external/gtest/include/gtest/
gtest-message.h 83 // narrow streams.
144 // Since the basic IO manipulators are overloaded for both narrow
170 // Converts the given wide string to a narrow string using the UTF-8
176 // Converts the given wide string to a narrow string using the UTF-8

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>