Searched defs:source (Results 1 - 25 of 84) sorted by relevance

1234

/dalvik/libcore/luni/src/main/java/java/util/
H A DEventObject.java34 * The event source.
36 protected transient Object source; field in class:EventObject
41 * @param source
44 public EventObject(Object source) { argument
45 if (source != null) {
46 this.source = source;
53 * Returns the event source.
58 return source;
68 return getClass().getName() + "[source
[all...]
/dalvik/libcore/awt-kernel/src/main/java/java/beans/
H A DIndexedPropertyChangeEvent.java36 * @param source
52 public IndexedPropertyChangeEvent(Object source, String propertyName, argument
54 super(source, propertyName, oldValue, newValue);
H A DPropertyChangeEvent.java43 * @param source
57 public PropertyChangeEvent(Object source, String propertyName, argument
59 super(source);
H A DPropertyChangeSupport.java51 private Object source; field in class:PropertyChangeSupport
56 * Creates a new instance that uses the source bean as source for any event.
59 * the bean used as source for all events.
70 * new value. As source the bean used to initialize this instance is used.
90 * value, new value and index. As source the bean used to initialize this
403 Object source = null;
405 source = sourceBean;
407 oos.writeObject(source);
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
H A DDalvikLogHandler.java38 * with additional fields (parameters, source methods, etc.) will flow
44 void publish(Logger source, String tag, Level level, String message); argument
/dalvik/libcore/xml/src/main/java/javax/xml/xpath/
H A DXPathExpression.java147 * <p>If <code>source</code> or <code>returnType</code> is <code>null</code>,
150 * @param source The <code>InputSource</code> of the document to evaluate over.
158 * @throws NullPointerException If <code>source</code> or <code>returnType</code> is <code>null</code>.
160 public Object evaluate(InputSource source, QName returnType) argument
167 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
173 * <p>If <code>source</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
175 * @param source The <code>InputSource</code> of the document to evaluate over.
181 * @throws NullPointerException If <code>source</code> is <code>null</code>.
183 public String evaluate(InputSource source) argument
H A DXPath.java255 * <p>If <code>expression</code>, <code>source</code> or <code>returnType</code> is <code>null</code>,
259 * @param source The input source of the document to evaluate over.
266 * @throws NullPointerException If <code>expression</code>, <code>source</code> or <code>returnType</code>
271 InputSource source,
279 * <p>This method calls {@link #evaluate(String expression, InputSource source, QName returnType)} with a
285 * <p>If <code>expression</code> or <code>source</code> is <code>null</code>,
289 * @param source The <code>InputSource</code> of the document to evaluate over.
295 * @throws NullPointerException If <code>expression</code> or <code>source</code> is <code>null</code>.
297 public String evaluate(String expression, InputSource source) argument
269 evaluate( String expression, InputSource source, QName returnType) argument
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DPipe.java25 * is the readable source channel. When bytes are written into the writable
59 * Readable source channel used to read from a pipe.
114 * Returns the source channel of the pipe.
116 * @return a readable source channel of the pipe.
118 public abstract SourceChannel source(); method in class:Pipe
/dalvik/libcore/sql/src/main/java/SQLite/
H A DStringEncoder.java9 * author in the source code of the SQLite distribution.
10 * I feel obliged to provide a quote from the original C-source code:
12 * "The author disclaims copyright to this source code. In place of
155 * Copies count elements from source, starting at element with
157 * @param source the source.
164 private static byte[] byteCopy(byte[] source, int offset, argument
167 target[j] = source[i];
/dalvik/libcore/text/src/main/java/java/text/
H A DCollationKey.java38 * During the construction of a {@code CollationKey}, the entire source string
86 private String source; field in class:CollationKey
90 CollationKey(String source, com.ibm.icu4jni.text.CollationKey key) { argument
91 this.source = source;
112 * and have the same source string and collation key. Both instances of
133 * @return the source string of this collation key.
136 return this.source;
H A DRuleBasedCollator.java324 * {@code CharacterIterator}. The source iterator's integrity will be
327 * @param source
328 * the source character iterator.
329 * @return a {@code CollationElementIterator} for {@code source}.
332 CharacterIterator source) {
333 if (source == null) {
338 .getCollationElementIterator(source));
344 * @param source
345 * the source string.
346 * @return the {@code CollationElementIterator} for {@code source}
331 getCollationElementIterator( CharacterIterator source) argument
348 getCollationElementIterator(String source) argument
408 compare(String source, String target) argument
424 getCollationKey(String source) argument
[all...]
H A DCollationElementIterator.java28 * source string.
54 * beginning of the source string has been reached, and there are no more
82 * Obtains the character offset in the source string corresponding to the
85 * <li>The index of the first character in the source string that matches
96 * <li>The length of the source string, if iteration has reached the end.
100 * @return The position of the collation element in the source string that
109 * Obtains the next collation element in the source string.
119 * Obtains the previous collation element in the source string.
168 * character in the source string which is found at the supplied offset.
179 * decomposable range of source tex
199 setText(CharacterIterator source) argument
210 setText(String source) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource.java87 public void startParse(InputSource source) throws SAXException; argument
/dalvik/libcore/xml/src/main/java/org/xml/sax/
H A DParser.java16 * <em>This module, both source code and documentation, is in the
35 * may reuse a parser object (possibly with a different input source)
156 * source (a character stream, a byte stream, or a URI).</p>
162 * different input source.</p>
164 * @param source The input source for the top-level of the
178 public abstract void parse (InputSource source) argument
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
H A DMockResolver.java34 public void addEntity(String publicId, String systemId, InputSource source) { argument
35 entities.put("[" + publicId + ":" + systemId + "]", source);
H A DDoNothingParser.java34 public void parse(InputSource source) { argument
H A DMockParser.java40 public void parse(InputSource source) throws SAXException, IOException { argument
41 logger.add("parse", source);
H A DNoAccessParser.java34 public void parse(InputSource source) { argument
H A DNoInstanceParser.java37 public void parse(InputSource source) { argument
H A DNoSubclassParser.java33 public void parse(InputSource source) { argument
/dalvik/dx/src/com/android/dx/rop/code/
H A DPlainInsn.java35 * @param position {@code non-null;} source position
58 * Constructs a single-source instance.
61 * @param position {@code non-null;} source position
63 * @param source {@code non-null;} spec for the source
66 RegisterSpec source) {
67 this(opcode, position, result, RegisterSpecList.make(source));
65 PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpec source) argument
/dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/util/
H A DUtil.java26 * Returns whether the given source string ends with the suffix, ignoring
29 * @param source
33 * @return {@code true} if the source does end with the given suffix, or
36 public static boolean asciiEndsWithIgnoreCase(String source, String suffix) { argument
38 if (length > source.length()) {
41 int offset = source.length() - length;
43 char c1 = source.charAt(i + offset);
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DFormatTest.java46 public Object parseObject(String source, ParsePosition pos) { argument
142 * @tests java.text.Format#parseObject(java.lang.String source) Test of
143 * method java.text.Format#parseObject(java.lang.String source).
147 notes = "Verifies that parseObject(String) method calls parseObject(String source, ParsePosition pos) method.",
/dalvik/libcore/xml/src/main/java/javax/xml/transform/sax/
H A DSAXSource.java32 * input source that is not
52 * no SAX source is set using
55 * create an empty source {@link org.xml.sax.InputSource} using
70 * @param inputSource A SAX input source reference that must be non-null
87 * @param inputSource An input source reference that must be non-null
131 * Set the system identifier for this Source. If an input source
133 * input source, otherwise it will create a new input source.
169 * The XMLReader to be used for the source tree input. May be null.
174 * <p>The SAX InputSource to be used for the source tre
187 sourceToInputSource(Source source) argument
[all...]
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
H A DCollationElementIterator.java102 * @param source text containing the collation elements.
105 public void setText(String source) argument
107 NativeCollation.setText(m_collelemiterator_, source);
111 public void setText(CharacterIterator source) argument
113 NativeCollation.setText(m_collelemiterator_, source.toString());
118 * Get the offset of the current source character.
121 * @return offset of the current source character.
130 * Set the offset of the current source character.

Completed in 412 milliseconds

1234