Searched defs:target (Results 26 - 41 of 41) sorted by relevance

12

/libcore/luni/src/main/java/libcore/icu/
H A DRuleBasedCollatorICU.java66 public int compare(String source, String target) { argument
67 return NativeCollation.compare(address, source, target);
130 public boolean equals(String source, String target) { argument
131 return (compare(source, target) == 0);
/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
/libcore/luni/src/main/java/org/xml/sax/helpers/
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
H A DXMLReaderAdapter.java398 * @param target The processing instruction target.
404 public void processingInstruction (String target, String data)
408 documentHandler.processingInstruction(target, data);
402 processingInstruction(String target, String data) argument
H A DParserAdapter.java678 * @param target The processing instruction target.
684 public void processingInstruction (String target, String data)
688 contentHandler.processingInstruction(target, data);
682 processingInstruction(String target, String data) argument
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DOldSocketChannelTest.java378 public int read(ByteBuffer target) throws IOException { argument
/libcore/luni/src/test/java/libcore/xml/
H A DSaxTest.java258 @Override public void processingInstruction(String target, String data) { argument
H A DExpatSaxParserTest.java349 public void processingInstruction(String target, String data) argument
506 assertEquals("bob", handler.target);
512 String target; field in class:ExpatSaxParserTest.TestProcessingInstrutionHandler
516 public void processingInstruction(String target, String data) { argument
517 this.target = target;
/libcore/luni/src/test/java/tests/api/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/apache/harmony/xml/dom/
H A DDocumentImpl.java355 public ProcessingInstructionImpl createProcessingInstruction(String target, String data) { argument
356 return new ProcessingInstructionImpl(this, target, data);
/libcore/luni/src/main/java/java/lang/
H A DString.java650 char[] target = string.value;
652 if ((c1 = value[o1++]) == (c2 = target[o2++])) {
766 char[] target = string.value;
769 char c2 = target[o2++];
990 char[] target = string.value;
992 char firstChar = target[subOffset];
1001 while (++o2 < end && _value[++o1] == target[o2]) {
1037 char[] target = subString.value;
1039 char firstChar = target[subOffset];
1048 while (++o2 < end && _value[++o1] == target[o
1343 replace(CharSequence target, CharSequence replacement) argument
[all...]
H A DThread.java140 Runnable target; field in class:Thread
378 this.target = null;
425 this.target = runnable;
855 if (target != null) {
856 target.run();
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java218 /*package*/ void processingInstruction(String target, String data) argument
222 contentHandler.processingInstruction(target, data);
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/
H A DSAXParserTestSupport.java276 public void processingInstruction(String target, String data) { argument
277 data_processingInstruction.append(target + SEPARATOR_STRING + data);
444 public void processingInstruction(String target, String data) { argument
445 data_processingInstruction.append(target + SEPARATOR_STRING + data);
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp94 jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd,
107 ScopedByteArrayRW uTarget(env, target);
149 jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd,
162 ScopedCharArrayRW uTarget(env, target);
93 NativeConverter_encode(JNIEnv* env, jclass, jlong address, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) argument
148 NativeConverter_decode(JNIEnv* env, jclass, jlong address, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) argument
H A Dorg_apache_harmony_xml_ExpatParser.cpp805 * @param target of the instruction
808 static void processingInstruction(void* data, const char* target, const char* instructionData) { argument
815 jstring javaTarget = internString(env, parsingContext, target);

Completed in 1249 milliseconds

12