HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 651 - 675 of 1669) sorted by null

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
makeunicodedata.py 115 category = CATEGORY_NAMES.index(record[2])
122 category, combining, bidirectional, mirrored, eastasianwidth,
370 category = record[2]
375 if category in ["Lm", "Lt", "Lu", "Ll", "Lo"]:
377 if category == "Ll":
382 if category == "Zs" or bidirectional in ("WS", "B", "S"):
385 if category == "Lt":
387 if category == "Lu":
501 print >>fp, " * type 'WS', 'B' or 'S' or the category 'Zs', 0 otherwise."
747 # category 0 is "unassigned"
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
OptionsUsage.java 283 * options of the same category, then sorts by name within the category.
288 int r = left.getAnnotation(Option.class).category().compareTo(
289 right.getAnnotation(Option.class).category());
  /external/python/cpython2/Tools/unicode/
makeunicodedata.py 115 category = CATEGORY_NAMES.index(record[2])
122 category, combining, bidirectional, mirrored, eastasianwidth,
370 category = record[2]
375 if category in ["Lm", "Lt", "Lu", "Ll", "Lo"]:
377 if category == "Ll":
382 if category == "Zs" or bidirectional in ("WS", "B", "S"):
385 if category == "Lt":
387 if category == "Lu":
501 print >>fp, " * type 'WS', 'B' or 'S' or the category 'Zs', 0 otherwise."
747 # category 0 is "unassigned
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wnm_sta.c 123 mgmt->u.action.category = WLAN_ACTION_WNM;
139 &mgmt->u.action.category, len, 0);
809 mgmt->u.action.category = WLAN_ACTION_WNM;
839 len = pos - (u8 *) &mgmt->u.action.category;
843 &mgmt->u.action.category, len, 0);
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 89 * the <strong>action</strong> and <strong>category</strong> must match, and
182 * The part of a match constant that describes the category of match
193 * basic category of match. The value {@link #MATCH_ADJUSTMENT_NORMAL}
200 * Quality adjustment applied to the category of match that signifies
520 * {@link android.content.Intent#ACTION_VIEW} and the Intent category is
564 * - either the Intent category is {@link android.content.Intent#CATEGORY_APP_BROWSER}
566 * the Intent category is {@link android.content.Intent#CATEGORY_BROWSABLE} and the Intent
584 * the Intent category is {@link android.content.Intent#CATEGORY_BROWSABLE} and the Intent
635 * the Intent category is {@link android.content.Intent#CATEGORY_BROWSABLE} and the Intent
1477 final String category = it.next(); local
    [all...]
  /frameworks/base/core/java/android/widget/
TableRow.java 400 @ViewDebug.ExportedProperty(category = "layout")
406 @ViewDebug.ExportedProperty(category = "layout")
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 263 @ViewDebug.ExportedProperty(category = "layout")
266 @ViewDebug.ExportedProperty(category = "layout")
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 74 @ViewDebug.ExportedProperty(category="recents")
76 @ViewDebug.ExportedProperty(category="recents")
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetHostView.java 63 @ViewDebug.ExportedProperty(category = "launcher")
68 @ViewDebug.ExportedProperty(category = "launcher")
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
run.py 30 def idle_formatwarning_subproc(message, category, filename, lineno,
40 s += "%s: %s\n" % (category.__name__, message)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
run.py 30 def idle_formatwarning_subproc(message, category, filename, lineno,
40 s += "%s: %s\n" % (category.__name__, message)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 30 def idle_formatwarning_subproc(message, category, filename, lineno,
40 s += "%s: %s\n" % (category.__name__, message)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
run.py 30 def idle_formatwarning_subproc(message, category, filename, lineno,
40 s += "%s: %s\n" % (category.__name__, message)
  /system/bt/stack/include/
avdt_api.h 126 /* Application service category. This indicates the application
127 * service category.
161 /* Bad service category */
187 /* Invalid service category */
637 uint8_t error_code, uint8_t category);
721 uint8_t error_code, uint8_t category);
    [all...]
  /system/extras/tests/workloads/
defs.sh 362 vout $AM_START_NOWAIT -p "$(getPackageName $1)" -c android.intent.category.LAUNCHER -a android.intent.action.MAIN
363 $AM_START_NOWAIT -p "$(getPackageName $1)" -c android.intent.category.LAUNCHER -a android.intent.action.MAIN 2>&1
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APFloat.h 181 /// Category of internally-represented number.
367 bool isZero() const { return category == fcZero; }
374 bool isInfinity() const { return category == fcInfinity; }
377 bool isNaN() const { return category == fcNaN; }
387 fltCategory getCategory() const { return category; }
389 bool isNonZero() const { return category != fcZero; }
585 fltCategory category : 3;
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APFloat.h 194 /// Category of internally-represented number.
334 bool isZero() const { return category == fcZero; }
341 bool isInfinity() const { return category == fcInfinity; }
344 bool isNaN() const { return category == fcNaN; }
354 fltCategory getCategory() const { return category; }
356 bool isNonZero() const { return category != fcZero; }
553 fltCategory category : 3;
    [all...]

Completed in 1589 milliseconds

<<21222324252627282930>>