Searched defs:source (Results 201 - 225 of 587) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DClonedNodeListIterator.java42 public ClonedNodeListIterator(CachedNodeListIterator source) { argument
43 _source = source;
H A DDupFilterIterator.java33 * Removes duplicates and sorts a source iterator. The nodes from the
34 * source are collected in an array upon calling setStartNode(). This
41 * Reference to source iterator.
46 * Array to cache all nodes from source.
70 public DupFilterIterator(DTMAxisIterator source) { argument
71 _source = source;
72 // System.out.println("DFI source = " + source + " this = " + this);
77 if (source instanceof KeyIndex) {
H A DFilterIterator.java35 * It takes a source iterator and a Filter object and returns nodes
36 * from the source after filtering them by calling filter.test(node).
43 * Reference to source iterator.
57 public FilterIterator(DTMAxisIterator source, DTMFilter filter) { argument
58 _source = source;
59 // System.out.println("FI souce = " + source + " this = " + this);
61 _isReverse = source.isReverse();
H A DMatchingIterator.java31 * This is a special kind of iterator that takes a source iterator and a
40 * In this example, the source iterator will return elements of type BOOK,
43 * in the source since (i) it is a BOOK or the test sequence would not be
44 * considered and (ii) the source iterator is initialized with M which is
46 * return the number of elements in the source (i.e. the number of BOOKs).
53 * A reference to a source iterator.
62 public MatchingIterator(int match, DTMAxisIterator source) { argument
63 _source = source;
H A DNthIterator.java40 public NthIterator(DTMAxisIterator source, int n) { argument
41 _source = source;
53 clone._source = _source.cloneIterator(); // resets source
H A DStepIterator.java61 public StepIterator(DTMAxisIterator source, DTMAxisIterator iterator) { argument
62 _source = source;
64 // System.out.println("SI source = " + source + " this = " + this);
H A DXSLTCDTMManager.java130 * specified source. If the unique flag is true, a new instance will
137 * @param source the specification of the source object.
149 public DTM getDTM(Source source, boolean unique, argument
153 return getDTM(source, unique, whiteSpaceFilter, incremental,
159 * specified source. If the unique flag is true, a new instance will
166 * @param source the specification of the source object.
179 public DTM getDTM(Source source, boolean unique, argument
183 return getDTM(source, uniqu
211 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean buildIdIndex, boolean newNameTable) argument
247 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex) argument
286 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex, boolean newNameTable) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDDescription.java12 * Redistribution and use in source and binary forms, with or without
16 * 1. Redistributions of source code must retain the above copyright
108 public XMLDTDDescription(XMLInputSource source) { argument
109 this.setValues(source.getPublicId(), null,
110 source.getBaseSystemId(), source.getSystemId());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DStreamValidatorHelper.java109 public void validate(Source source, Result result) argument
112 final StreamSource streamSource = (StreamSource) source;
163 new Object [] {source.getClass().getName(), result.getClass().getName()}));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDContentModelHandler.java30 * content model handler on the DTD content model source.
267 // set content model source
268 public void setDTDContentModelSource(XMLDTDContentModelSource source); argument
270 // get content model source
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DCoroutineParser.java93 * @param source The InputSource to parse from.
101 public Object doParse(InputSource source, int appCoroutine); argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DCatalogResolver.java180 * as an input source.</p>
183 * the mapped value as an input source), null is returned and the system
277 SAXSource source = new SAXSource();
278 source.setInputSource(new InputSource(result));
279 setEntityResolver(source);
280 return source;
304 private void setEntityResolver(SAXSource source) throws TransformerException { argument
305 XMLReader reader = source.getXMLReader();
321 source.setXMLReader(reader);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DDOM2Helper.java121 * source (a character stream, a byte stream, or a URI).</p>
127 * different input source.</p>
129 * @param source The input source for the top-level of the
135 public void parse(InputSource source) throws TransformerException argument
175 setDocument(parser.parse(source));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/jaxp/
H A DXPathExpressionImpl.java258 *<p>If <code>source</code> or <code>returnType</code> is <code>null</code>,
261 * @param source The <code>InputSource</code> of the document to evaluate
272 * @throws NullPointerException If <code>source</code> or
275 public Object evaluate(InputSource source, QName returnType) argument
277 if ( ( source == null ) || ( returnType == null ) ) {
298 Document document = db.parse( source );
309 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
316 * <p>If <code>source</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
318 * @param source The <code>InputSource</code> of the document to evaluate over.
324 * @throws NullPointerException If <code>source</cod
326 evaluate(InputSource source) argument
[all...]
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerFactory.java169 * @param source <code>Source </code> of XSLT document used to create
187 public abstract Transformer newTransformer(Source source) argument
206 * a compiled representation of the source. This Templates object
212 * @param source An object that holds a URL, input stream, etc.
220 public abstract Templates newTemplates(Source source) argument
232 * @param source The XML source document.
243 * <code>source</code>.
249 Source source,
346 * Access to external DTDs in the source fil
248 getAssociatedStylesheet( Source source, String media, String title, String charset) argument
[all...]
/openjdk7/jaxp/src/javax/xml/validation/
H A DValidator.java88 * {@link #validate(Source source, Result result)}
91 * @param source
116 * @throws NullPointerException If <code>source</code> is
119 * @see #validate(Source source, Result result)
121 public void validate(Source source) argument
124 validate(source, null);
197 * @param source
213 * (in which case <code>source.getNode()==result.getNode()</code>),
215 * node given by the source.
233 * If the <code>source</cod
237 validate(Source source, Result result) argument
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java166 * @param source a previously connected object.
167 * @throws RemoteException if <code>source</code> is not connected
169 * <code>source</code>.
171 public static void connect (Remote target, Remote source) argument
175 proDelegate.connect(target, source);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86MoveInstruction.java31 private ImmediateOrRegister source; field in class:X86MoveInstruction
36 this.source = oSrc;
52 if ((source instanceof Register)) {
53 buf.append(source.toString());
55 Number number = ((Immediate)source).getNumber();
63 return source;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAncestorNotifier.java75 protected void fireAncestorAdded(JComponent source, int id, Container ancestor, Container ancestorParent) { argument
84 new AncestorEvent(source, id, ancestor, ancestorParent);
97 protected void fireAncestorRemoved(JComponent source, int id, Container ancestor, Container ancestorParent) { argument
106 new AncestorEvent(source, id, ancestor, ancestorParent);
118 protected void fireAncestorMoved(JComponent source, int id, Container ancestor, Container ancestorParent) { argument
127 new AncestorEvent(source, id, ancestor, ancestorParent);
180 Component source = e.getComponent();
183 (Container)source, source.getParent());
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DHyperlinkEvent.java56 * @param source the object responsible for the event
60 public HyperlinkEvent(Object source, EventType type, URL u) { argument
61 this(source, type, u, null);
67 * @param source the object responsible for the event
76 public HyperlinkEvent(Object source, EventType type, URL u, String desc) { argument
77 this(source, type, u, desc, null);
83 * @param source the object responsible for the event
95 public HyperlinkEvent(Object source, EventType type, URL u, String desc, argument
97 super(source);
107 * @param source th
120 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement, InputEvent inputEvent) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFAttribute.java58 public boolean write(AttributeSet source, argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DCausedFocusEvent.java66 public CausedFocusEvent(Component source, int id, boolean temporary, argument
68 super(source, id, temporary, opposite);
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextSourceLabel.java46 TextSource source; field in class:TextSourceLabel
55 public TextSourceLabel(TextSource source) { argument
56 this(source, null, null, null);
59 public TextSourceLabel(TextSource source, Rectangle2D lb, Rectangle2D ab, GlyphVector gv) { argument
60 this.source = source;
68 return source;
118 Font font = source.getFont();
159 Font font = source.getFont();
160 FontRenderContext frc = source
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditorSupport.java50 * @param source the source used for event firing
53 public PropertyEditorSupport(Object source) { argument
54 if (source == null) {
57 setSource(source);
62 * source of events. If the source has not
66 * @return the source object or this instance
70 return source;
74 * Sets the source bea
83 setSource(Object source) argument
300 private Object source; field in class:PropertyEditorSupport
[all...]
H A DVetoableChangeSupport.java87 * @param sourceBean The bean to be given as the source for any events.
93 source = sourceBean;
126 * source, it will be notified one less time after being removed.
210 * source for the specified property, it will be notified one less time
271 fireVetoableChange(new PropertyChangeEvent(this.source, propertyName, oldValue, newValue));
380 event = new PropertyChangeEvent(this.source, name, newValue, oldValue);
425 VetoableChangeSupport vcs = new VetoableChangeSupport(this.source);
433 fields.put("source", this.source);
453 this.source
472 private Object source; field in class:VetoableChangeSupport
[all...]

Completed in 158 milliseconds

1234567891011>>