/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
D | DOMConfigurationImpl.java | 61 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/ |
D | CompatibilityTest.java | 88 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/ |
D | CoreCompatChangeRule.java | 79 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/ |
D | create.sh | 25 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 …]
|
D | default.cnf | 75 # Or use config file substitution like this:
|
/libcore/ojluni/src/main/java/sun/security/jca/ |
D | ProviderList.java | 118 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/ |
D | pkg-status | 150 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/ |
D | NativeAllocationRegistryTest.java | 47 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/ |
D | SequentialOpTest.java | 73 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/ |
D | ForkJoinPool.java | 885 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/ |
D | logging.properties | 20 # specify another file instead with java.util.logging.config.file system 51 # config=
|
/libcore/ojluni/src/main/java/sun/util/logging/ |
D | PlatformLogger.java | 350 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/ |
D | calendars.properties | 61 calendar.hijrah.Hijrah-umalqura: hijrah-config-umalqura.properties
|
/libcore/ojluni/annotations/hiddenapi/java/util/logging/ |
D | Logger.java | 318 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/ |
D | Logger.annotated.java | 118 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/ |
D | Logger.java | 1502 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/ |
D | input.txt | 88 # for commentry and a ; for parts of the config file that you
|
/libcore/ |
D | JavaLibrary.bp | 245 name: "libcore-platform-compat-config",
|
D | EXPECTED_UPSTREAM | 1896 …ono/hijrah-config-Hijrah-umalqura_islamic-umalqura.properties,jdk17u/jdk-17.0.6-ga,src/java.base/s…
|
/libcore/expectations/ |
D | knownfailures.txt | 1340 …description: "java.util.logging: Android introduced config fallback behavior in LogManager.readCon…
|
/libcore/api/ |
D | current.txt | 17713 method public void config(@Nullable String); 17714 method public void config(@NonNull java.util.function.Supplier<java.lang.String>);
|