Home
last modified time | relevance | path

Searched refs:config (Results 1 – 21 of 21) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DDOMConfigurationImpl.java61 public Object get(DOMConfigurationImpl config) {
62 return config.cdataSections;
64 public void set(DOMConfigurationImpl config, Object value) {
65 config.cdataSections = (Boolean) value;
78 public Object get(DOMConfigurationImpl config) {
79 return config.comments;
81 public void set(DOMConfigurationImpl config, Object value) {
82 config.comments = (Boolean) value;
91 public Object get(DOMConfigurationImpl config) {
92 return config.datatypeNormalization;
[all …]
/libcore/luni/src/test/java/libcore/android/compat/
DCompatibilityTest.java88 ChangeConfig config = new ChangeConfig(Collections.emptySet(), Collections.emptySet()); in testGetDisabledChangesArray() local
89 assertArrayEquals(new long[]{}, config.getDisabledChangesArray()); in testGetDisabledChangesArray()
90 config = new ChangeConfig(Collections.emptySet(), Collections.singleton(5L)); in testGetDisabledChangesArray()
91 assertArrayEquals(new long[]{5L}, config.getDisabledChangesArray()); in testGetDisabledChangesArray()
92 config = new ChangeConfig(Collections.emptySet(), in testGetDisabledChangesArray()
94 assertArrayEquals(new long[]{2L, 3L, 5L}, config.getDisabledChangesArray()); in testGetDisabledChangesArray()
99 ChangeConfig config = new ChangeConfig(Collections.emptySet(), Collections.emptySet()); in testGetEnabledChangesArray() local
100 assertArrayEquals(new long[]{}, config.getEnabledChangesArray()); in testGetEnabledChangesArray()
101 config = new ChangeConfig(Collections.singleton(5L), Collections.emptySet()); in testGetEnabledChangesArray()
102 assertArrayEquals(new long[]{5L}, config.getEnabledChangesArray()); in testGetEnabledChangesArray()
[all …]
/libcore/test-rules/src/platform_compat/java/libcore/junit/util/
DCoreCompatChangeRule.java79 ChangeConfig config = new ChangeConfig(enabled, disabled); in apply() local
80 if (config.isEmpty()) { in apply()
83 return createStatementForConfig(statement, config); in apply()
87 protected Statement createStatementForConfig(final Statement statement, ChangeConfig config) { in createStatementForConfig() argument
88 return new CompatChangeStatement(statement, config); in createStatementForConfig()
93 private final ChangeConfig config; field in CoreCompatChangeRule.CompatChangeStatement
95 private CompatChangeStatement(Statement testStatement, ChangeConfig config) { in CompatChangeStatement() argument
97 this.config = config; in CompatChangeStatement()
102 Compatibility.setOverrides(config); in evaluate()
/libcore/support/src/test/java/tests/resources/x509/
Dcreate.sh25 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch > /tmp/cert-rsa-r…
40 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
42 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
44 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
46 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
48 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
50 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
52 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
54 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
56 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch | openssl x509 -e…
[all …]
Ddefault.cnf75 # Or use config file substitution like this:
/libcore/ojluni/src/main/java/sun/security/jca/
DProviderList.java118 for (ProviderConfig config : providerList.configs) {
119 if (config.getProvider().getName().equals(name) == false) {
120 configs[j++] = config;
177 ProviderConfig config;
179 config = new ProviderConfig(entry);
183 config = new ProviderConfig(className, argument);
187 if (configList.contains(config) == false) {
188 configList.add(config);
207 for (ProviderConfig config : configs) {
213 if (config.equals(newConfig)) {
[all …]
/libcore/tools/upstream/
Dpkg-status150 def __init__(self, config, name) -> None: argument
152 self.baseline_dir = config.baseline_dir(name)
153 self.release_dir = config.release_dir(name)
154 self.current_dir = config.current_dir(name)
155 self.upstream_dir = config.upstream_dir(name)
416 config = MergeConfig(args.baseline, args.release, args.current,
421 package = JavaPackage(config, pkg_name)
/libcore/luni/src/test/java/libcore/libcore/util/
DNativeAllocationRegistryTest.java47 private void testNativeAllocation(TestConfig config) { in testNativeAllocation() argument
78 if (!config.shareRegistry || registry == null) { in testNativeAllocation()
79 if (config.treatAsMalloced) { in testNativeAllocation()
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DSequentialOpTest.java73 UnaryOperator<Stream<Integer>> config = configs[j]; in testLazy() local
75 Stream<Integer> stream = config.apply(supp.get()); in testLazy()
86 stream = config.apply(supp.get()); in testLazy()
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinPool.java885 int config; // index, mode, ORed with SRC after init
929 this.config = (isInnocuous) ? INNOCUOUS : 0;
936 WorkQueue(int config) {
938 this.config = config;
947 return (config & 0xffff) >>> 1; // ignore odd/even tag bit
1162 return nextLocalTask(config);
1172 a[(cap - 1) & ((config & FIFO) != 0 ? base : top - 1)] : null;
1183 int cfg = config, nstolen = 1;
1499 int modebits = (mode & FIFO) | w.config;
1513 w.phase = w.config = id | modebits; // now publishable
[all …]
/libcore/luni/src/main/java/java/util/logging/
Dlogging.properties20 # specify another file instead with java.util.logging.config.file system
51 # config=
/libcore/ojluni/src/main/java/sun/util/logging/
DPlatformLogger.java350 public void config(String msg) { in config() method in PlatformLogger
354 public void config(String msg, Throwable t) { in config() method in PlatformLogger
358 public void config(String msg, Object... params) { in config() method in PlatformLogger
/libcore/ojluni/src/main/resources/
Dcalendars.properties61 calendar.hijrah.Hijrah-umalqura: hijrah-config-umalqura.properties
/libcore/ojluni/annotations/hiddenapi/java/util/logging/
DLogger.java318 public void config(java.lang.String msg) { in config() method in Logger
346 public void config(java.util.function.Supplier<java.lang.String> msgSupplier) { in config() method in Logger
/libcore/ojluni/annotations/sdk/nullability/java/util/logging/
DLogger.annotated.java118 public void config(@libcore.util.Nullable java.lang.String msg) { throw new RuntimeException("Stub!… in config() method in Logger
132 public void config(@libcore.util.NonNull java.util.function.Supplier<java.lang.@libcore.util.Nullab… in config() method in Logger
/libcore/ojluni/src/main/java/java/util/logging/
DLogger.java1502 public void config(String msg) { in config() method in Logger
1614 public void config(Supplier<String> msgSupplier) { in config() method in Logger
/libcore/ojluni/src/test/java/util/Scanner/
Dinput.txt88 # for commentry and a ; for parts of the config file that you
/libcore/
DJavaLibrary.bp245 name: "libcore-platform-compat-config",
DEXPECTED_UPSTREAM1896 …ono/hijrah-config-Hijrah-umalqura_islamic-umalqura.properties,jdk17u/jdk-17.0.6-ga,src/java.base/s…
/libcore/expectations/
Dknownfailures.txt1340 …description: "java.util.logging: Android introduced config fallback behavior in LogManager.readCon…
/libcore/api/
Dcurrent.txt17713 method public void config(@Nullable String);
17714 method public void config(@NonNull java.util.function.Supplier<java.lang.String>);