Searched defs:insert (Results 126 - 136 of 136) sorted by relevance

123456

/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java652 composedText.insert(chgOffset, chgText);
654 rawFeedbacks.insert(chgOffset, chgStyles);
1031 void insert(int offset, int[] values) { method in class:X11InputMethod.IntBuffer
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java121 * {@code GroupLayout} provides the ability to insert gaps between
125 * the {@code setAutoCreateContainerGaps} method to insert gaps
1139 * groups. If {@code insert} is {@code true} this will insert auto padding
1143 private void insertAutopadding(boolean insert) { argument
1148 new ArrayList<ComponentSpring>(1), insert);
1153 new ArrayList<ComponentSpring>(1), insert);
1659 * If {@code insert} is true this will insert auto padding
1671 * @param insert Whethe
1674 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
2151 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
2609 insertAutopadding(int axis, List<AutoPreferredGapSpring> leadingPadding, List<AutoPreferredGapSpring> trailingPadding, List<ComponentSpring> leading, List<ComponentSpring> trailing, boolean insert) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java183 protected void insert(int offset, ElementSpec[] data) throws BadLocationException { method in class:DefaultStyledDocument
202 // Nothing to insert, bail.
212 buffer.insert(offset, length, data, evnt);
797 buffer.insert(offset, length, spec, chng);
1425 * @param data the data to insert
1428 public void insert(int offset, int length, ElementSpec[] data, method in class:DefaultStyledDocument.ElementBuffer
1529 * @param data the elements to insert
1597 // An insert at 0 with an initial end implies some elements
2356 * This is called from insert when the first element is NOT content.
2472 transient boolean recreateLeafs; // For insert
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLDocument.java85 * to insert HTML content into an existing document.</p>
430 protected void insert(int offset, ElementSpec[] data) throws BadLocationException { method in class:HTMLDocument
431 super.insert(offset, data);
462 * element specifications. This is called before insert if
945 * Sets the parser that is used by the methods that insert html
1186 ("Can not insert HTML after start of a leaf");
1197 * this will insert before the newline so that there isn't text after
1515 * <code>parent</code> is used to identify the location to insert the
1547 // Found it, do the insert.
1596 // index must be > 0 otherwise no insert woul
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp1171 // We will find a new edge and re-insert.
1912 void Node_Array::insert( uint i, Node *n ) { function in class:Node_Array
H A Dnode.hpp1319 void insert( uint i, Node *n );
1340 void insert( uint i, Node *n ) { Node_Array::insert(i,n); _cnt++; } function in class:Node_List
H A Doutput.cpp89 _cfg->insert( broot, 0, new (this) MachBreakpointNode() );
94 _cfg->insert( broot, 0, new (this) MachUEPNode() );
110 _cfg->insert( entry, 1, new (this) MachBreakpointNode() );
187 // This mode causes the compiler to insert a call to a runtime routine,
228 // Determining if we should insert a zap-a-lot node in output.
235 bool insert = n->is_MachSafePoint() && (n->as_MachSafePoint()->oop_map() != NULL); local
236 if ( insert ) { // it is MachSafePoint
238 insert = false;
250 insert = false;
253 if (insert) {
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.hpp376 // insert a "blank" call:
408 static void insert(address code_pos, address entry) { function in class:NativeCall
503 static void insert(address code_pos, address entry) { function in class:NativeFarCall
867 static void insert(address code_pos, address entry);
924 static void insert(address code_pos);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java2672 cl = insert(closure(st), t);
2691 public List<Type> insert(List<Type> cl, Type t) { method in class:Types
2695 return insert(cl.tail, t).prepend(cl.head);
3383 cl = insert(cl, l.head);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java469 // JTextArea.setText() posts two different events (remove & insert).
484 * insert the text "txt on position "pos" in the array lines
487 public void insert(String txt, int p) { method in class:XTextAreaPeer
490 jtext.insert(txt,p);
539 insert(txt, pos);
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp932 _components.insert(name, opForm->_ident, e->_use_def, false);
949 _components.insert(name, opForm->_ident, Component::INVALID, false);
966 _components.insert(name, opForm->_ident, e->_use_def, false);
2316 _components.insert(name, opForm->_ident, Component::INVALID, false);
2892 void ComponentList::insert(Component *component, bool mflag) { function in class:ComponentList
2896 void ComponentList::insert(const char *name, const char *opType, int usedef, function in class:ComponentList
2899 insert(component, mflag);
3185 components.insert(_name, _opType, usedef, true);

Completed in 106 milliseconds

123456