HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 201 - 225 of 609) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
intl.h 27 # define setlocale(category, locale) (locale)
  /external/chromium_org/chrome/common/extensions/docs/server2/
object_store_creator_test.py 29 store = self._creator.Create(_FooClass, category='hi')
31 'class=_FooClass&category=hi&app_version=%s' % GetAppVersion(),
51 self._creator.Create, _FooClass, category='a=&b')
caching_rietveld_patcher.py 70 def create_object_store(category):
73 category='%s/%s' % (rietveld_patcher.GetIdentity(), category))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations_unittest.py 47 def __call__(self, lineno, category, confidence, message):
48 self._errors.append('%s [%s] [%d]' % (message, category, confidence))
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaSmsCbProgramData.java 23 * CDMA Service Category Program Data from SCPT teleservice SMS.
33 /** Delete the specified service category from the list of enabled categories. */
36 /** Add the specified service category to the list of enabled categories. */
78 /** Service category operation (add/delete/clear). */
81 /** Service category to modify. */
84 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */
87 /** Maximum number of messages to store for this service category. */
90 /** Service category alert option. */
93 /** Name of service category. */
97 public CdmaSmsCbProgramData(int operation, int category, int language, int maxMessages
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceVersionDetector.java 91 for (String category : categories) {
92 Matcher m = p.matcher(category);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
sunspider 113 my $category = $_;
114 $category =~ s/-.*//;
115 if (!$uniqueCategories{$category}) {
116 push @categories, $category;
117 $uniqueCategories{$category} = $category;
  /external/e2fsprogs/intl/
dcigettext.c 227 /* The category. */
228 int category; member in struct:known_translation_t
271 /* We compare the category last (though this is the cheapest
274 result = s1->category - s2->category;
313 static const char *guess_category_value (int category,
318 # define category_to_name(category) _nl_category_names[category]
320 static const char *category_to_name (int category) internal_function;
425 CATEGORY locale and, if PLURAL is nonzero, search over strin
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 175 /// Category of internally-represented number.
376 bool isZero() const { return category == fcZero; }
383 bool isInfinity() const { return category == fcInfinity; }
386 bool isNaN() const { return category == fcNaN; }
396 fltCategory getCategory() const { return category; }
398 bool isNonZero() const { return category != fcZero; }
567 fltCategory category : 3;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 17 package com.android.gallery3d.filtershow.category;
75 public void initializeSelection(int category) {
76 mCategory = category;
78 if (category == MainPanel.LOOKS) {
82 if (category == MainPanel.BORDERS) {
85 if (category == MainPanel.VERSIONS) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
MethodAnalyzer.java 161 RegisterType.getRegisterType(RegisterType.Category.UninitThis,
165 RegisterType.getRegisterType(RegisterType.Category.Reference,
180 RegisterType uninit = RegisterType.getRegisterType(RegisterType.Category.Uninit, null);
456 if (registerType.category == RegisterType.Category.LongLo) {
459 RegisterType.getRegisterType(RegisterType.Category.LongHi, null));
460 } else if (registerType.category == RegisterType.Category.DoubleLo) {
463 RegisterType.getRegisterType(RegisterType.Category.DoubleHi, null));
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
locale.py 83 def setlocale(category, value=None):
514 def getlocale(category=LC_CTYPE):
516 """ Returns the current setting for the given locale category as
519 category may be one of the LC_* value except LC_ALL. It
527 localename = _setlocale(category)
528 if category == LC_ALL and ';' in localename:
529 raise TypeError, 'category LC_ALL is not supported'
532 def setlocale(category, locale=None):
534 """ Set the locale for the given category. The locale can be
541 category may be given as one of the LC_* values
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
locale.py 83 def setlocale(category, value=None):
514 def getlocale(category=LC_CTYPE):
516 """ Returns the current setting for the given locale category as
519 category may be one of the LC_* value except LC_ALL. It
527 localename = _setlocale(category)
528 if category == LC_ALL and ';' in localename:
529 raise TypeError, 'category LC_ALL is not supported'
532 def setlocale(category, locale=None):
534 """ Set the locale for the given category. The locale can be
541 category may be given as one of the LC_* values
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_warnings.py 73 self.module.filterwarnings("error", category=UserWarning)
81 self.module.filterwarnings("ignore", category=UserWarning)
89 self.module.filterwarnings("always", category=UserWarning)
100 self.module.filterwarnings("default", category=UserWarning)
116 self.module.filterwarnings("module", category=UserWarning)
128 self.module.filterwarnings("once", category=UserWarning)
144 self.module.filterwarnings("error", category=Warning)
152 self.module.filterwarnings("ignore", category=UserWarning)
153 self.module.filterwarnings("error", category=UserWarning,
174 self.assertTrue(w[-1].category is UserWarning
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_warnings.py 73 self.module.filterwarnings("error", category=UserWarning)
81 self.module.filterwarnings("ignore", category=UserWarning)
89 self.module.filterwarnings("always", category=UserWarning)
100 self.module.filterwarnings("default", category=UserWarning)
116 self.module.filterwarnings("module", category=UserWarning)
128 self.module.filterwarnings("once", category=UserWarning)
144 self.module.filterwarnings("error", category=Warning)
152 self.module.filterwarnings("ignore", category=UserWarning)
153 self.module.filterwarnings("error", category=UserWarning,
174 self.assertTrue(w[-1].category is UserWarning
    [all...]
  /external/stlport/src/
locale.cpp 76 what += " facet category, unable to create facet for ";
194 locale::category c) {
207 // Give L a name where all facets except those in category c
208 // are taken from name1, and those in category c are taken from name2.
211 locale::category c) {
225 locale::category c) {
246 // in category c are instead constructed by name.
247 locale::locale(const locale& L, const char* name, locale::category c)
294 // Contruct a new locale where all facets that aren't in category c
295 // come from L1, and all those that are in category c come from L2
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
locale.cpp 76 what += " facet category, unable to create facet for ";
194 locale::category c) {
207 // Give L a name where all facets except those in category c
208 // are taken from name1, and those in category c are taken from name2.
211 locale::category c) {
225 locale::category c) {
246 // in category c are instead constructed by name.
247 locale::locale(const locale& L, const char* name, locale::category c)
294 // Contruct a new locale where all facets that aren't in category c
295 // come from L1, and all those that are in category c come from L2
    [all...]
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_site_list.cc 60 // Category 0 is "not listed"; actual category IDs start at 1.
61 int GetCategoryId(const std::string& category) {
63 if (g_categories[i].identifier == category)
173 // TODO(bauerb): We need to distinguish between "no category assigned" and
180 std::string category; local
181 if (!(*it)->GetAsString(&category)) {
182 LOG(ERROR) << "Invalid category";
185 category_id = GetCategoryId(category);
  /external/harfbuzz/src/
harfbuzz-hebrew.c 151 HB_CharCategory category; local
154 HB_GetUnicodeCharProperties(uc[i], &category, &cmb);
155 if (category != HB_Mark_NonSpacing) {
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-hebrew.c 151 HB_CharCategory category; local
154 HB_GetUnicodeCharProperties(uc[i], &category, &cmb);
155 if (category != HB_Mark_NonSpacing) {
  /frameworks/base/core/java/android/hardware/display/
DisplayManager.java 69 * Display category: Presentation displays.
71 * This category can be used to identify secondary displays that are suitable for
82 "android.hardware.display.category.PRESENTATION";
127 * display in the {@link #DISPLAY_CATEGORY_PRESENTATION presentation display category}.
205 * Gets all currently valid logical displays of the specified category.
207 * When there are multiple displays in a category the returned displays are sorted
208 * of preference. For example, if the requested category is
215 * @param category The requested display category or null to return all displays.
220 public Display[] getDisplays(String category) {
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 161 mCategory = savedInstanceState.getInt("category");
193 outState.putInt("category", mCategory);
239 // Attempt to parse clip data with expected format: category||entry_id.
251 int category = -1; local
254 category = Integer.parseInt(tokenizer.nextToken());
259 updateContentAndRecycleBitmap(category, entryId);
273 * @param category Index position of the image category
276 void updateContentAndRecycleBitmap(int category, int position) {
277 mCategory = category;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AuditsPanel.js 81 * @param {!WebInspector.AuditCategory} category
83 addCategory: function(category)
85 this.categoriesById[category.id] = category;
86 this._launcherView.addCategory(category);
324 * @param {!WebInspector.AuditCategory} category
326 WebInspector.AuditCategoryResult = function(category)
328 this.title = category.displayName;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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...]
  /prebuilts/gcc/linux-x86/host/i686-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...]

Completed in 422 milliseconds

1 2 3 4 5 6 7 891011>>