Searched refs:added (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainDocument.java52 * has been added to the <code>java.beans</code> package.
177 added.removeAllElements();
200 added.addElement(createLeafElement(lineMap, null, lastOffset, breakOffset));
214 added.addElement(createLeafElement(lineMap, null, lastOffset, rmOffs1));
217 Element[] aelems = new Element[added.size()];
218 added.copyInto(aelems);
291 added.removeAllElements();
304 added.addElement(createLeafElement(abelem[0], null, elemStart, offset));
305 added.addElement(createLeafElement(abelem[0], attr, offset, offset+length));
307 added
318 private Vector<Element> added = new Vector<Element>(); field in class:PlainDocument
[all...]
H A DZoneView.java399 View[] added = new View[index1 - index0 + 1];
401 added[i - index0] = f.create(e.getElement(i));
403 replace(0, 0, added);
512 View[] added = new View[nadd];
514 added[i] = f.create(addedElems[i]);
516 replace(replaceIndex, nremove, added);
H A DDefaultStyledDocument.java65 * has been added to the <code>java.beans</code> package.
237 * particular element, new children should be added <em>before</em>
319 Element[] added = {};
321 parent.replace(index, 1, added);
322 dde.addEdit(new ElementEdit(parent, index, removed, added));
389 * Removes a named style previously added to the document.
399 * Fetches a named style previously added.
1128 * has been added to the <code>java.beans</code> package.
1159 * has been added to the <code>java.beans</code> package.
1230 * the data has already been added, bu
2509 Vector<Element> added; field in class:DefaultStyledDocument.ElementBuffer.ElemChanges
[all...]
H A DPlainView.java519 * If lines are added or removed, damages the whole
531 Element[] added = (ec != null) ? ec.getChildrenAdded() : null;
533 if (((added != null) && (added.length > 0)) ||
535 // lines were added or removed...
536 if (added != null) {
538 for (int i = 0; i < added.length; i++) {
539 int w = getLineWidth(added[i]);
542 longLine = added[i];
H A DWrappedPlainView.java264 View[] added = new View[n];
266 added[i] = new WrappedLine(e.getElement(i));
268 replace(0, 0, added);
283 View[] added = new View[addedElems.length];
285 added[i] = new WrappedLine(addedElems[i]);
287 replace(ec.getIndex(), removedElems.length, added);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java168 // Note that if this sequence is empty, no tokens are added.
171 boolean added = false;
174 added = true;
176 return added;
180 boolean added = false;
183 added = true;
185 return added;
193 boolean added = false;
203 added = true;
208 added
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedSetBash.java126 boolean added = s.add(e);
129 if (added == prePresent)
130 fail ("added == alreadyPresent");
132 if (added && preSize == postSize)
134 if (!added && preSize != postSize)
/openjdk7/jdk/test/java/util/LinkedHashSet/
H A DBasic.java142 boolean added = s.add(e);
145 if (added == prePresent)
146 throw new Exception("added == alreadyPresent");
148 if (added && preSize == postSize)
150 if (!added && preSize != postSize)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DDatatypeMessages_de.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_es.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_it.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_pt_BR.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_sv.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_zh_CN.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_zh_TW.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_ja.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
H A DDatatypeMessages_ko.properties40 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
42 #There are two similar keys 'InvalidXMLGreogorianCalendarValue' . Suffix (year, month) has been added and are used as per the context.
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DLotsOfEvents.java173 boolean added = modified.add(file);
174 if (!added) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A DREADME.txt38 It was added to the sun.tools.hprof.Tracker in JDK 5.0 FCS, then
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.hpp232 static void change_field_watch(jvmtiEvent event_type, bool added);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java113 boolean added = false;
128 added = true;
141 if (added) {
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DElementTreePanel.java402 Element[] added = ec.getChildrenAdded();
415 // check for added
416 if (added != null && added.length > 0) {
417 int[] indices = new int[added.length];
419 for (int counter = 0; counter < added.length; counter++) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java1035 List<Row> added = new ArrayList<Row>(delta);
1037 // Build the list of Rows to add into added
1040 added.add(new Row(this, i));
1053 // Insert newly added rows into viewToModel
1054 if (added.size() > 0) {
1055 Collections.sort(added);
1057 viewToModel = new Row[viewToModel.length + added.size()];
1058 insertInOrder(added, lastViewToModel);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java633 boolean added = false;
642 added = true;
647 return added;
652 boolean added = false;
661 added = true;
666 return added;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.cpp104 if (c == NullEntry) { _cards[i] = card_index; return added; }
107 if (c == NullEntry) { _cards[i + 1] = card_index; return added; }
110 if (c == NullEntry) { _cards[i + 2] = card_index; return added; }
113 if (c == NullEntry) { _cards[i + 3] = card_index; return added; }
119 if (c == NullEntry) { _cards[i] = card_index; return added; }
190 if (res == SparsePRTEntry::added) _occupied_cards++;

Completed in 141 milliseconds

12