/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
langinfo.h | 26 #include <bits/locale.h> /* Define the __LC_* category names. */ 31 /* Construct an `nl_item' value for `nl_langinfo' from a locale category 32 (LC_*) and an item index within the category. Some code may depend on 33 the item values within a category increasing monotonically with the 35 #define _NL_ITEM(category, index) (((category) << 16) | (index)) 37 /* Extract the category and item index from a constructed `nl_item' value. */ 44 /* LC_TIME category: date and time formatting. */ 235 _NL_NUM_LC_TIME, /* Number of indices in LC_TIME category. */ 237 /* LC_COLLATE category: text sorting [all...] |
/external/chromium-trace/trace-viewer/src/tracing/ |
timeline_view.css | 40 .timeline-view > .control > .controls.category-filter { 209 .category-filter-dialog { 216 .category-filter-dialog-form { 221 .category-filter-dialog-form input {
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_list_data_source.py | 80 for category in ['chrome', 'experimental', 'private']: 81 names.extend(self.get(platform).get(category))
|
/external/harfbuzz/contrib/ |
harfbuzz-unicode-glib.c | 160 HB_CharCategory *category, 162 *category = hb_category_for_char(ch);
|
harfbuzz-unicode-icu.c | 193 HB_CharCategory *category, 195 *category = hb_category_for_char(ch);
|
/frameworks/base/core/java/android/widget/ |
FrameLayout.java | 60 @ViewDebug.ExportedProperty(category = "measurement") 63 @ViewDebug.ExportedProperty(category = "drawing") 66 @ViewDebug.ExportedProperty(category = "padding") 69 @ViewDebug.ExportedProperty(category = "padding") 72 @ViewDebug.ExportedProperty(category = "padding") 75 @ViewDebug.ExportedProperty(category = "padding") 81 @ViewDebug.ExportedProperty(category = "drawing") 85 @ViewDebug.ExportedProperty(category = "drawing")
|
/frameworks/opt/telephony/src/java/android/telephony/ |
SmsCbCmasInfo.java | 31 // CMAS message class (in GSM/UMTS message identifier or CDMA service category). 51 /** CMAS category for operator defined use. */ 54 /** CMAS category for warning types that are reserved for future extension. */ 57 // CMAS alert category (in CDMA type 1 elements record). 59 /** CMAS alert category: Geophysical including landslide. */ 62 /** CMAS alert category: Meteorological including flood. */ 65 /** CMAS alert category: General emergency and public safety. */ 68 /** CMAS alert category: Law enforcement, military, homeland/local/private security. */ 71 /** CMAS alert category: Rescue and recovery. */ 74 /** CMAS alert category: Fire suppression and rescue. * [all...] |
/ndk/sources/android/support/include/ |
langinfo.h | 33 #define _NL_ITEM(category,index) (((category) << 10) | (index))
|
/external/chromium_org/base/debug/ |
trace_event_impl.cc | 65 // convert internally to determine the category name from the char enabled 139 const unsigned char* category, 145 if (category == event.category_group_enabled() && 203 const unsigned char* category, 208 if (category == event.category_group_enabled() && 247 const unsigned char* category, 483 // Category group checked at category creation time. 646 // Splits a combined "category\0name" into the two component parts. 648 const char** category, [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
TitlesFragment.java | 57 public void onItemSelected(int category, int position); 101 mCategory = savedInstanceState.getInt("category"); 118 // Set up clip data with the category||entry_id format. 147 public void populateTitles(int category) { 148 DirectoryCategory cat = Directory.getCategory(category); 155 mCategory = category; 181 outState.putInt("category", mCategory);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathParser.cpp | 63 CharCategory category = Unicode::category(aChar); 64 if (category & (Letter_Uppercase | Letter_Lowercase | Letter_Other | Letter_Titlecase | Number_Letter)) 66 if (category & (Mark_NonSpacing | Mark_SpacingCombining | Mark_Enclosing | Letter_Modifier | Number_DecimalDigit))
|
/external/chromium_org/third_party/re2/re2/testing/ |
unicode_test.py | 178 for category, codes in self.categories.items(): 181 # prefer category Nd over N 182 if len(category) > 1: 183 return category 185 short = category
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
thread.py | 76 def AddSample(self, category, name, timestamp, args=None): 81 category, name, timestamp, args=args) 87 def BeginSlice(self, category, name, timestamp, args=None): 92 * category: Category to which the slice belongs. 103 tracing_slice.Slice(self, category, name, timestamp, args=args))
|
/external/llvm/lib/Support/ |
system_error.cpp | 41 return *this == code.category() && code.value() == condition;
|
/external/regex-re2/re2/testing/ |
unicode_test.py | 178 for category, codes in self.categories.items(): 181 # prefer category Nd over N 182 if len(category) > 1: 183 return category 185 short = category
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.category/ |
category.pass.cpp | 17 // typedef int category; 29 static_assert((std::is_same<std::locale::category, int>::value), "");
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
CategoryTrack.java | 17 package com.android.gallery3d.filtershow.category;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_unicodedata.py | 95 self.db.category(char), 140 self.assertEqual(self.db.category(u'\uFFFE'), 'Cn') 141 self.assertEqual(self.db.category(u'a'), 'Ll') 142 self.assertEqual(self.db.category(u'A'), 'Lu') 143 self.assertEqual(self.db.category(u'\U00020000'), 'Lo') 145 self.assertRaises(TypeError, self.db.category) 146 self.assertRaises(TypeError, self.db.category, u'xx')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_unicodedata.py | 95 self.db.category(char), 140 self.assertEqual(self.db.category(u'\uFFFE'), 'Cn') 141 self.assertEqual(self.db.category(u'a'), 'Ll') 142 self.assertEqual(self.db.category(u'A'), 'Lu') 143 self.assertEqual(self.db.category(u'\U00020000'), 'Lo') 145 self.assertRaises(TypeError, self.db.category) 146 self.assertRaises(TypeError, self.db.category, u'xx')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
checker_unittest.py | 200 def assertCheck(path, category): 201 """Assert that the given category should be checked.""" 202 message = ('Should check category "%s" for path "%s".' 203 % (category, path)) 204 self.assertTrue(config.should_check(category, path)) 206 def assertNoCheck(path, category): 207 """Assert that the given category should not be checked.""" 208 message = ('Should not check category "%s" for path "%s".' 209 % (category, path)) 210 self.assertFalse(config.should_check(category, path), message [all...] |
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
HostEmulationManager.java | 183 String category = mAidCache.getCategoryForAid(resolveInfo.aid); local 186 launchTapAgain(resolveInfo.defaultService, category); 209 // Get corresponding category 210 String category = mAidCache.getCategoryForAid(resolveInfo.aid); local 213 launchResolver((ArrayList<ApduServiceInfo>)resolveInfo.services, null, category); 405 void launchTapAgain(ApduServiceInfo service, String category) { 407 dialogIntent.putExtra(TapAgainDialog.EXTRA_CATEGORY, category); 414 String category) { 418 intent.putExtra(AppChooserActivity.EXTRA_CATEGORY, category); 531 String category = mAidCache.getCategoryForAid(mLastSelectedAid) local [all...] |
RegisteredAidCache.java | 59 * AIDs per category 177 String category) { 178 if (!CardEmulation.CATEGORY_PAYMENT.equals(category)) { 179 Log.e(TAG, "Not allowing defaults for category " + category); 197 public boolean isDefaultServiceForCategory(int userId, String category, 213 getDefaultServiceForCategory(userId, category, true); 217 ComponentName getDefaultServiceForCategory(int userId, String category, 219 if (!CardEmulation.CATEGORY_PAYMENT.equals(category)) { 220 Log.e(TAG, "Not allowing defaults for category " + category) [all...] |
AppChooserActivity.java | 58 public static final String EXTRA_CATEGORY = "category"; 80 protected void onCreate(Bundle savedInstanceState, String category, 95 mCategory = category; 133 if (CardEmulation.CATEGORY_PAYMENT.equals(category)) { 162 String category = intent.getStringExtra(EXTRA_CATEGORY); local 164 onCreate(savedInstanceState, category, services, failedComponent);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TimelineModel.js | 135 var categoryName = WebInspector.TimelinePresentationModel.recordStyle(rawRecord).category.name; 146 for (var category in addend) 147 total[category] = (total[category] || 0) + addend[category];
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCalculationValue.cpp | 312 CalculationCategory leftCategory = leftSide.category(); 313 CalculationCategory rightCategory = rightSide.category(); 352 ASSERT(leftSide->category() != CalcOther && rightSide->category() != CalcOther); 363 CalculationCategory leftCategory = leftSide->category(); 364 CalculationCategory rightCategory = rightSide->category(); 377 if (leftCategory == rightSide->category()) { 492 ASSERT(m_leftSide->category() == CalcNumber && m_rightSide->category() == CalcNumber); 498 if (m_leftSide->category() == CalcNumber [all...] |