HomeSort by relevance Sort by last modified time
    Searched defs:DEFAULT (Results 76 - 100 of 453) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
Collator.java 108 * Collator for the default locale.
110 * // Compare two strings in the default locale
208 * will not be decomposed for collation. This is the default
246 * A special reordering code that is used to specify the default reordering codes for a locale.
249 public final static int DEFAULT = -1; // == UScript.INVALID_CODE
380 * default decomposition mode.</p>
408 * <p>By default, reordering codes specified for the start of the order are placed in the
419 * <p>The special reorder code {@link Collator.ReorderCodes#DEFAULT DEFAULT}
421 * to the default for this collator. The default reordering may be the DUCET/CLDR order or may be a reordering tha
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 252 public static final byte DEFAULT = 0;
256 public static final String[] names = { "DEFAULT",
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java 296 * Default normalization.
299 public static final Mode DEFAULT = NFC;
529 * If you want the default behavior corresponding to one of the
552 * If you want the default behavior corresponding to one of the
784 * If you want the default behavior corresponding to one of the standard
    [all...]
DateFormat.java 42 * methods for obtaining default date/time formatters based on the default for a given locale and a number of formatting
653 * <p> By default, parsing is lenient: If the input is not in the form used
701 * <p> By default, parsing is lenient: If the input is not in the form used
736 * <p> By default, parsing is lenient: If the input is not in the form used
    [all...]
PluralRules.java 64 * keyword "other" by the default rule.
222 * The final fallback always returns the default rules.
270 * Returns the default factory.
320 * Common name for the default plural form. This name is returned
352 * The default constraint that is always satisfied.
386 return description.length() == 0 ? DEFAULT : new PluralRules(parseRuleChain(description));
405 * The default rules that accept any number and return
409 public static final PluralRules DEFAULT = new PluralRules(new RuleList().addRule(DEFAULT_RULE));
728 default: return source;
1021 default: throw new IllegalArgumentException("Ill-formed number range: " + range)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestIDNA.java 30 doTestToUnicode(TestData.asciiIn[i],new String(TestData.unicodeIn[i]),IDNA.DEFAULT, null);
41 doTestToASCII(new String(TestData.unicodeIn[i]),TestData.asciiIn[i],IDNA.DEFAULT, null);
51 doTestIDNToASCII(TestData.domainNames[i],TestData.domainNames[i],IDNA.DEFAULT, null);
58 doTestIDNToASCII(TestData.domainNames1Uni[i],TestData.domainNamesToASCIIOut[i],IDNA.DEFAULT, null);
64 doTestIDNToUnicode(TestData.domainNames[i],TestData.domainNames[i],IDNA.DEFAULT, null);
70 doTestIDNToUnicode(TestData.domainNamesToASCIIOut[i],TestData.domainNamesToUnicodeOut[i],IDNA.DEFAULT, null);
281 doTestToASCII(testCase.input,testCase.output,IDNA.DEFAULT,testCase.expected);
285 //doTestToUnicode(testCase.input,testCase.output,IDNA.DEFAULT,testCase.expected);
294 StringBuffer output = namePrep.prepare(iter,StringPrep.DEFAULT);
331 doTestToASCII(new String(errCase.unicode),errCase.ascii,IDNA.DEFAULT,errCase.expected)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
RenderState.java 50 * The <code>DEFAULT</code> render state is the one used by default
61 public static final RenderState DEFAULT = new RenderState();
64 * The <code>NULL</code> render state is identical to the {@link RenderState#DEFAULT}
71 * {@link RenderState#DEFAULT} render state except that all apply
348 // Only "additional render state" has them set to false by default
    [all...]
Material.java 107 // Load default values from definition (if any)
530 default:
699 default:
795 default:
817 * If <code>name</code> is "Default", then one of the
818 * {@link MaterialDef#getDefaultTechniques() default techniques}
822 * Any candidate technique for selection (either default or named)
826 * @param name The name of the technique to select, pass "Default" to
827 * select one of the default techniques.
831 * @throws IllegalArgumentException If "Default" is passed and no defaul
    [all...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay_i.h 189 enum { DEFAULT, DISABLED, ON_OPER_UP, ALWAYS } activate;
  /frameworks/base/media/java/android/media/
MediaRecorder.java 64 * Looper running (the main UI thread by default already has a Looper running).
98 * Default constructor.
187 * An audio source defines both a default physical source of audio signal, and a recording
203 /** Default audio source **/
204 public static final int DEFAULT = 0;
223 * {@link #DEFAULT} otherwise. */
228 * if available. It otherwise behaves like {@link #DEFAULT} if no voice processing
285 public static final int DEFAULT = 0;
314 public static final int DEFAULT = 0;
359 public static final int DEFAULT = 0
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LockSettingsStorage.java 65 private static final Object DEFAULT = new Object();
137 Object result = DEFAULT;
149 return result == DEFAULT ? defaultValue : (String) result;
511 return cached == DEFAULT ? defaultValue : (String) cached;
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 115 public static int DEFAULT = ALL;
118 private int mCurrentTab = TabState.DEFAULT;
210 // Invalid tab index was saved (b/12938207). Restore the default.
211 mCurrentTab = TabState.DEFAULT;
573 return mPrefs.getInt(PERSISTENT_LAST_TAB, TabState.DEFAULT);
576 return TabState.DEFAULT;
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java 60 * keyword "other" by the default rule.
209 * The final fallback always returns the default rules.
257 * Returns the default factory.
307 * Common name for the default plural form. This name is returned
339 * The default constraint that is always satisfied.
373 return description.length() == 0 ? DEFAULT : new PluralRules(parseRuleChain(description));
392 * The default rules that accept any number and return
396 public static final PluralRules DEFAULT = new PluralRules(new RuleList().addRule(DEFAULT_RULE));
712 default: return source;
1005 default: throw new IllegalArgumentException("Ill-formed number range: " + range)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 158 default: break;
268 "all-scroll", "col-resize", "crosshair", "default", "e-resize",
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
MaterialProgressDrawable.java 58 @IntDef({LARGE, DEFAULT})
62 // Maps to ProgressBar default style
63 static final int DEFAULT = 1;
65 // Maps to ProgressBar default style
126 updateSizes(DEFAULT);
150 * {@link MaterialProgressDrawable.DEFAULT}
777 * Reset the progress spinner to default rotation, start and end angles.
SwipeRefreshLayout.java 68 // Maps to ProgressBar default style
69 public static final int DEFAULT = MaterialProgressDrawable.DEFAULT;
95 // Default background for the progress spinner
97 // Default offset in dips from the top of the view to where the progress spinner should stop
248 * One of DEFAULT, or LARGE.
251 if (size != MaterialProgressDrawable.LARGE && size != MaterialProgressDrawable.DEFAULT) {
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 73 DEFAULT =-1,
  /external/opencv/ml/include/
ml.h     [all...]
  /external/v8/src/
globals.h 77 // Slightly less than 1MB, since Windows' default stack size for
461 // Type-vector-based ICs have a default state, with the full calculation
464 DEFAULT
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 67 public static final int DEFAULT=39;
231 default:
276 default :
309 default :
346 default :
499 default :
529 default :
580 default :
634 default :
671 default
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 132 DEFAULT(null,
155 return DEFAULT;
191 * a default title resource
422 * <p>This mode is set to true by default if the activity is initialized through
424 * methods, it is set to false by default. You must set it before calling one of the
435 if (title == ActionTitle.DEFAULT && defaultTitleRes != 0) {
562 resolveInfo.activityInfo.packageName, 0 /* default flags */);
715 // Set default Browser if needed
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.9.0/
jack-api-0.9.0.jar 
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 223 * @see #DEFAULT
228 /** the default mode */
229 DEFAULT,
500 // create the base config, which is the default config minus the qualifiers
606 if ((mMode == SelectorMode.DEFAULT || resEnum.isValidValueForDevice()) &&
630 // default easy case
770 // remove the qualifier from the configuration, we create a new default one.
836 // remove the qualifier from the configuration, we create a new default one.
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/json-lib/json-lib/2.3/
json-lib-2.3-jdk15.jar 

Completed in 432 milliseconds

1 2 34 5 6 7 8 91011>>