Searched refs:data (Results 151 - 175 of 260) sorted by relevance

1234567891011

/libcore/ojluni/src/main/java/sun/security/x509/
H A DCertificateVersion.java66 // Private data members
77 derVal = derVal.data.getDerValue();
79 if (derVal.data.available() != 0) {
H A DEDIPartyName.java47 // Private data members
97 opt = opt.data.getDerValue();
105 opt = opt.data.getDerValue();
H A DPolicyMappingsExtension.java66 // Private data members
128 while (val.data.available() != 0) {
129 DerValue seq = val.data.getDerValue();
H A DSubjectInfoAccessExtension.java44 * data. When the subject is an end entity, the information describes
130 while (val.data.available() != 0) {
131 DerValue seq = val.data.getDerValue();
H A DAVA.java113 * hex data.
624 oid = X500Name.intern(derval.data.getOID());
625 value = derval.data.getDerValue();
627 if (derval.data.available() != 0) {
629 + derval.data.available());
755 byte[] data = null;
757 data = value.toByteArray();
762 for (int j = 0; j < data.length; j++) {
763 byte b = data[j];
910 byte[] data
[all...]
H A DDistributionPoint.java197 // in val.data being null.
198 while ((val.data != null) && (val.data.available() != 0)) {
199 DerValue opt = val.data.getDerValue();
206 DerValue distPnt = opt.data.getDerValue();
H A DCRLDistributionPointsExtension.java181 while (val.data.available() != 0) {
182 DerValue seq = val.data.getDerValue();
H A DIssuingDistributionPointExtension.java185 if ((val.data == null) || (val.data.available() == 0)) {
189 DerInputStream in = val.data;
196 new DistributionPointName(opt.data.getDerValue());
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileDescriptorHolderSocketImpl.java112 protected void sendUrgentData(int data) throws IOException { argument
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DMatchOpTest.java121 public void testStream(String name, TestData.OfRef<Integer> data) { argument
126 exerciseTerminalOps(data, this.<Integer>kinds().get(kind).apply(p));
127 exerciseTerminalOps(data, s -> s.filter(pFalse), this.<Integer>kinds().get(kind).apply(p));
128 exerciseTerminalOps(data, s -> s.filter(pEven), this.<Integer>kinds().get(kind).apply(p));
206 public void testIntStream(String name, TestData.OfInt data) { argument
211 exerciseTerminalOps(data, intKinds.get(kind).apply(p));
212 exerciseTerminalOps(data, s -> s.filter(ipFalse), intKinds.get(kind).apply(p));
213 exerciseTerminalOps(data, s -> s.filter(ipEven), intKinds.get(kind).apply(p));
291 public void testLongStream(String name, TestData.OfLong data) { argument
296 exerciseTerminalOps(data, longKind
376 testDoubleStream(String name, TestData.OfDouble data) argument
[all...]
/libcore/support/src/test/java/libcore/tlswire/handshake/
H A DEllipticCurvesHelloExtension.java36 new DataInputStream(new ByteArrayInputStream(data)), 0xffff);
/libcore/luni/src/test/java/libcore/java/util/
H A DLibcoreIoDerivedBase64Test.java51 int[] data = new int[61];
52 Arrays.fill(data, 0xff);
55 assertEncodeDecode(expected, data);
83 // Correct data, for reference.
273 private static String encode(byte[] data) { argument
274 return Base64.getEncoder().encodeToString(data);
/libcore/benchmarks/
H A DAndroid.mk35 LOCAL_MODULE_PATH := $(PRODUCT_OUT)/data/caliperperf
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DReaderTest.java172 public MockReader(char[] data) { argument
173 contents = data;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockHandler.java81 public void processingInstruction(String target, String data) throws SAXException { argument
82 logger.add("processingInstruction", target, data);
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DXMLReaderAdapter.java399 * @param data The remainder of the processing instruction
404 public void processingInstruction (String target, String data)
408 documentHandler.processingInstruction(target, data);
402 processingInstruction(String target, String data) argument
H A DDefaultHandler.java309 * Receive notification of character data inside an element.
312 * method to take specific actions for each chunk of character data
313 * (such as adding the data to a node or buffer, or printing it to
336 * whitespace (such as adding data to a node or buffer, or printing
363 * @param data The processing instruction data, or null if
369 public void processingInstruction (String target, String data)
366 processingInstruction(String target, String data) argument
/libcore/luni/src/test/java/libcore/java/nio/file/
H A DFilesSetup.java147 static void writeToFile(Path file, String data, OpenOption... option) throws IOException { argument
149 os.write(data.getBytes());
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
H A DCipherThread.java30 private String data = " Albert Einstein was a German-born " + field in class:CipherThread
54 throw new Exception("Source and encoded data not match " +
64 throw new Exception("Encoded data is not properly padded at offset " + i);
69 throw new Exception("Source and encoded data not match " + getCipherParameters());
126 return data;
/libcore/ojluni/src/main/java/java/text/
H A DDecimalFormatSymbols.java57 * <code>DecimalFormatSymbols</code> from its locale data. If you need to change any
653 // get resource bundle data
659 Object[] data = adapter.getLocaleResources(locale).getDecimalFormatSymbolsData();
666 Object[] data = new Object[3];
679 data[0] = values;
682 String[] numberElements = (String[]) data[0];
711 if (data[1] != null && data[1] == intlCurrencySymbol) {
712 currencySymbol = (String) data[2];
715 data[
[all...]
H A DNumberFormat.java840 LocaleData data = LocaleData.get(desiredLocale);
841 numberPatterns[NUMBERSTYLE] = data.numberPattern;
842 numberPatterns[CURRENCYSTYLE] = data.currencyPattern;
843 numberPatterns[PERCENTSTYLE] = data.percentPattern;
862 * First, read in the default serializable data.
874 * is greater than <code>maximumFractionDigits</code>, then the stream data
901 * Write out the default serializable data, after first setting
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DContentInfo.java42 private static int[] data = {1, 2, 840, 113549, 1, 7, 1}; field in class:ContentInfo
68 DATA_OID = ObjectIdentifier.newInternal(data);
78 * data type is defined
95 * Make a contentInfo of type data.
200 * Returns a byte array representation of the data held in
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DCertId.java97 seq[0] = val.data.getDerValue(); // AlgorithmID
98 seq[1] = val.data.getDerValue(); // Key
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java54 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the
62 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the
122 * <code>ProcessingInstruction.data</code></td>
129 * <td valign='top' rowspan='1' colspan='1'>same as <code>CharacterData.data</code>, the content
406 * <code>parentNode</code> is <code>null</code>) and no user data. User
407 * data associated to the imported node is not carried over. However, if
409 * associated data these handlers will be called with the appropriate
833 * <code>Text</code> nodes, as well as any user data or event listeners
877 * @param data The object to associate to the given key, or
886 Object data,
885 setUserData(String key, Object data, UserDataHandler handler) argument
[all...]
/libcore/luni/src/test/java/libcore/java/io/
H A DOldInputStreamReaderTest.java144 byte[] data = new byte[8192 * 2];
145 Arrays.fill(data, (byte) 116); // 116 = ISO-8859-1 value for 't'
146 ByteArrayInputStream bis = new ByteArrayInputStream(data);

Completed in 765 milliseconds

1234567891011