HomeSort by relevance Sort by last modified time
    Searched defs:DEFAULT (Results 1 - 25 of 1042) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/
FixMethodOrder.java 13 * <p>The default order of execution of JUnit tests within a class is deterministic but not predictable.
40 MethodSorters value() default MethodSorters.DEFAULT;
  /frameworks/base/graphics/java/android/graphics/
Xfermode.java 32 static final int DEFAULT = PorterDuff.Mode.SRC_OVER.nativeInt;
33 int porterDuffMode = DEFAULT;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
win_add2path.py 18 DEFAULT = u"%PATH%"
34 envpath = DEFAULT
  /external/autotest/site_utils/
stable_version_utils.py 16 # Name of the default board. For boards that don't have stable version
17 # explicitly set, version for the default board will be used.
18 DEFAULT = 'DEFAULT'
30 # Set default to the global config value of CROS.stable_cros_version if
33 versions = {DEFAULT: global_config.global_config.get_config_value(
38 def get(board=DEFAULT, android=False):
41 @param board: Name of the board, default to value `DEFAULT`.
43 board. There is no default version that works for al
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
perf_result_data_type.py 5 DEFAULT = 'default'
11 ALL_TYPES = [DEFAULT, UNIMPORTANT, HISTOGRAM, UNIMPORTANT_HISTOGRAM,
  /external/glide/library/src/main/java/com/bumptech/glide/load/
DecodeFormat.java 32 /** The default value for DecodeFormat. */
33 public static final DecodeFormat DEFAULT = Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
ProvidesIntoOptional.java 34 * {@literal @}ProvidesIntoOptional(DEFAULT)
43 * will set the default value of {@code @Named("url") Optional<String>} to foo's URL,
61 DEFAULT
64 /** Specifies if the binding is for the actual or default value. */
  /external/junit/src/main/java/org/junit/runners/
MethodSorters.java 30 DEFAULT(MethodSorter.DEFAULT);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
BeanAccess.java 23 DEFAULT,
  /external/vogar/src/vogar/
RunnerType.java 26 DEFAULT(false, true, true),
  /external/vogar/test/vogar/target/
TestRunnerProperties.java 31 int monitorPort() default 9999;
33 boolean profile() default false;
35 int profileDepth() default 4;
37 String profileFile() default "default-profile-file";
39 int profileInterval() default 10;
41 boolean profileThreadGroup() default false;
43 Class testClass() default Default.class;
45 String testClassOrPackage() default "";
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/spec/
PSource.java 84 public static final PSpecified DEFAULT = new PSpecified(new byte[0]);
  /packages/services/Car/car-lib/src_feature_current/com/android/car/internal/
FeatureConfiguration.java 24 /** Disable future feature by default. */
25 public static final boolean DEFAULT = false;
27 public static final boolean ENABLE_PRODUCT_CONFIGURATION_INFO = DEFAULT;
28 public static final boolean ENABLE_VEHICLE_MAP_SERVICE = DEFAULT;
29 public static final boolean ENABLE_DIAGNOSTIC = DEFAULT;
30 public static final boolean ENABLE_VEHICLE_HAL_V2_1 = DEFAULT;
  /packages/services/Car/car-lib/src_feature_future/com/android/car/internal/
FeatureConfiguration.java 24 /** Enable future feature by default. */
25 public static final boolean DEFAULT = true;
27 public static final boolean ENABLE_PRODUCT_CONFIGURATION_INFO = DEFAULT;
28 public static final boolean ENABLE_VEHICLE_MAP_SERVICE = DEFAULT;
29 public static final boolean ENABLE_DIAGNOSTIC = DEFAULT;
30 public static final boolean ENABLE_VEHICLE_HAL_V2_1 = DEFAULT;
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 26 public static final PriorityPreset DEFAULT = new SimplePriorityPreset(
32 DEFAULT,
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 26 public static final PriorityPreset DEFAULT = new SimplePriorityPreset(
32 DEFAULT,
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
PriorityPresets.java 26 public static final PriorityPreset DEFAULT = new SimplePriorityPreset(
32 DEFAULT,
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDraftHeaderParser.java 53 public final static NetscapeDraftHeaderParser DEFAULT = new NetscapeDraftHeaderParser();
61 this.nvpParser = BasicHeaderValueParser.DEFAULT;
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Run.java 35 static final Run DEFAULT = new Run();
Value.java 33 static final Value DEFAULT = new Value();
  /external/clang/test/CodeGenCXX/
visibility-ms-compat.cpp 1 // RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-apple-darwin10 -fvisibility hidden -ftype-visibility default -emit-llvm -o %t
12 #define DEFAULT __attribute__((visibility("default")))
51 struct DEFAULT A {
84 template <class T> struct DEFAULT B {
  /external/desugar/java/com/google/devtools/common/options/
OptionPriority.java 21 * implicitly at the priority {@code DEFAULT}.
34 DEFAULT,
37 * Overrides default options at runtime, while still allowing the values to be
  /external/droiddriver/src/io/appium/droiddriver/scroll/
StaticSentinelStrategy.java 42 public static final StaticSentinelStrategy DEFAULT = new StaticSentinelStrategy(
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
FileDescriptorBitmapDecoder.java 25 this(Glide.get(context).getBitmapPool(), DecodeFormat.DEFAULT);
  /external/junit/src/main/java/org/junit/internal/
MethodSorter.java 11 * DEFAULT sort order
13 public static final Comparator<Method> DEFAULT = new Comparator<Method>() {
44 * certain platforms. By default, uses an unspecified but deterministic order.
67 return DEFAULT;

Completed in 2018 milliseconds

1 2 3 4 5 6 7 8 91011>>