Searched defs:target (Results 1 - 25 of 51) sorted by relevance

123

/libcore/ojluni/src/main/java/java/lang/reflect/
H A DInvocationTargetException.java33 * the general purpose exception-chaining mechanism. The "target exception"
49 * This field holds the target if the
50 * InvocationTargetException(Throwable target) constructor was
56 private Throwable target; field in class:InvocationTargetException
60 * {@code null} as the target exception.
67 * Constructs a InvocationTargetException with a target exception.
69 * @param target the target exception
71 public InvocationTargetException(Throwable target) { argument
73 this.target
83 InvocationTargetException(Throwable target, String s) argument
[all...]
/libcore/ojluni/src/main/java/java/text/
H A DCollationKey.java102 * Compare this CollationKey to the target CollationKey. The collation rules of the
105 * @param target target CollationKey
107 * than target, value is zero if this and target are equal and value is greater than
108 * zero if this is greater than target.
111 abstract public int compareTo(CollationKey target); argument
H A DRuleBasedCollator.java352 * @throws NullPointerException if <code>source</code> or <code>target</code> is null.
354 public synchronized int compare(String source, String target) { argument
355 if (source == null || target == null) {
358 return icuColl.compare(source, target);
H A DCollator.java297 * Compares the source string to the target string according to the
300 * less than, equal to or greater than the target string. See the Collator
309 * @param target the target string.
311 * target, value is zero if source and target are equal, value is greater than zero
312 * if source is greater than target.
316 public abstract int compare(String source, String target); argument
356 * @param target the target strin
361 equals(String source, String target) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DProcessingInstructionImpl.java36 private String target; field in class:ProcessingInstructionImpl
40 ProcessingInstructionImpl(DocumentImpl document, String target, String data) { argument
42 this.target = target; // TODO: validate that target is well-formed
52 return target;
66 return target;
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DSecurityChecker.java39 public SecurityChecker(Permission target, boolean enable) { argument
41 checkTarget = target;
/libcore/luni/src/main/java/org/xml/sax/
H A DDocumentHandler.java222 * @param target The processing instruction target.
228 public abstract void processingInstruction (String target, String data) argument
H A DContentHandler.java379 * @param target the processing instruction target
382 * whitespace separating it from the target
386 public void processingInstruction (String target, String data) argument
H A DHandlerBase.java286 * @param target The processing instruction target.
293 public void processingInstruction (String target, String data)
290 processingInstruction(String target, String data) argument
/libcore/ojluni/src/main/java/java/io/
H A DReader.java89 * @param target the buffer to read characters into
93 * @throws NullPointerException if target is null
94 * @throws ReadOnlyBufferException if target is a read only buffer
97 public int read(java.nio.CharBuffer target) throws IOException { argument
98 int len = target.remaining();
102 target.put(cbuf, 0, n);
/libcore/ojluni/src/main/java/sun/reflect/
H A DReflection.java40 Object target,
48 if (!verifyMemberAccess(currentClass, memberClass, target, modifiers)) {
63 Object target,
122 Class targetClass = (target == null ? memberClass : target.getClass());
38 ensureMemberAccess(Class currentClass, Class memberClass, Object target, int modifiers) argument
58 verifyMemberAccess(Class currentClass, Class memberClass, Object target, int modifiers) argument
/libcore/ojluni/src/main/java/java/util/logging/
H A DMemoryHandler.java36 * contents to a target <tt>Handler</tt>, which will typically publish
68 * <li> java.util.logging.MemoryHandler.target
69 * specifies the name of the target <tt>Handler </tt> class.
80 private Handler target; field in class:MemoryHandler
113 name = manager.getProperty("java.util.logging.MemoryHandler.target");
115 target = (Handler) clz.newInstance();
121 target = (Handler) clz.newInstance();
144 * @param target the Handler to which to publish output.
150 public MemoryHandler(Handler target, int size, Level pushLevel) { argument
151 if (target
[all...]
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DDefaultHandler.java362 * @param target The processing instruction target.
369 public void processingInstruction (String target, String data)
366 processingInstruction(String target, String data) argument
H A DXMLFilterImpl.java595 * @param target The processing instruction target.
596 * @param data The text following the target.
600 public void processingInstruction (String target, String data)
604 contentHandler.processingInstruction(target, data);
594 processingInstruction(String target, String data) argument
/libcore/luni/src/test/java/libcore/java/io/
H A DFileTest.java77 File target = createDeepStructure(base);
80 assertTrue(target.exists());
81 assertTrue(target.getCanonicalPath().length() > 1024);
82 ln_s(target, source);
84 assertEquals(target.getCanonicalPath(), source.getCanonicalPath());
165 File target = new File(base, "target");
166 target.createNewFile(); // The RI won't follow a dangling symlink, which seems like a bug!
168 ln_s(target, linkName);
169 assertEquals(target
191 ln_s(File target, File linkName) argument
195 ln_s(String target, String linkName) argument
[all...]
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetTest.java27 ResultSet target = null; field in class:OldResultSetTest
44 target = stForward.getResultSet();
45 assertNotNull(target);
57 target.close();
62 assertTrue(target.isBeforeFirst());
63 assertFalse(target.absolute(0));
64 assertTrue(target.absolute(1));
65 assertTrue(target.isFirst());
66 assertTrue(target.absolute(-1));
67 assertTrue(target
[all...]
/libcore/ojluni/src/main/java/java/nio/channels/
H A DDatagramChannel.java403 * given buffer are transmitted as a single datagram to the given target
413 * then for each datagram sent this method verifies that the target address
430 * @param target
460 public abstract int send(ByteBuffer src, SocketAddress target) argument
H A DFileChannel.java384 * target channel. An invocation of this method may or may not transfer
389 * target channel is non-blocking and it has fewer than <tt>count</tt>
394 * transferred. If the target channel has a position then bytes are
399 * that reads from this channel and writes to the target channel. Many
401 * to the target channel without actually copying them. </p>
411 * @param target
412 * The target channel
424 * If the target channel was not opened for writing
427 * If either this channel or the target channel is closed
442 WritableByteChannel target)
441 transferTo(long position, long count, WritableByteChannel target) argument
[all...]
/libcore/ojluni/src/main/java/sun/net/smtp/
H A DSmtpClient.java214 private SmtpClient target; field in class:SmtpPrintStream
219 target = cl;
223 if (target == null)
229 target.issueCommand(".\r\n", 250);
230 target.message = null;
232 target = null;
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DPollArrayWrapper.java85 * over the entry in the target wrapper at the target index. The source
86 * array remains unchanged unless the source array and the target are
90 PollArrayWrapper target, int tindex) {
91 target.putDescriptor(tindex, source.getDescriptor(sindex));
92 target.putEventOps(tindex, source.getEventOps(sindex));
93 target.putReventOps(tindex, source.getReventOps(sindex));
89 replaceEntry(PollArrayWrapper source, int sindex, PollArrayWrapper target, int tindex) argument
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DBuilder.java106 * When building reverse, the target certificate will complete the path.
242 * a given target.
247 * may not actually lead to the target at all.
249 * @param target GeneralNameInterface name of target
250 * @return distance from this certificate to target:
252 * <li>-1 means certificate could be CA for target, but
255 * matches target
257 * target.
259 * parent of target
280 targetDistance(NameConstraintsExtension constraints, X509Certificate cert, GeneralNameInterface target) argument
[all...]
/libcore/dom/src/test/java/org/w3c/domts/
H A DXercesHTML2DocumentBuilderFactory.java162 public void processingInstruction(String target, String data) throws argument
164 htmlBuilder.processingInstruction(target, data);
H A DXercesHTMLDocumentBuilderFactory.java162 public void processingInstruction(String target, String data) throws argument
164 htmlBuilder.processingInstruction(target, 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/w3c/dom/
H A DDocument.java122 * @param target The target part of the processing instruction.Unlike
125 * checking is done on the target name. Applications should invoke
128 * target name is namespace well-formed.
132 * INVALID_CHARACTER_ERR: Raised if the specified target is not an XML
137 public ProcessingInstruction createProcessingInstruction(String target, argument
284 * <code>target</code> and <code>data</code> values from those of the
639 * document (i.e. the source and target document are the same), this

Completed in 975 milliseconds

123