Searched defs:kit (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextPane.java416 * Gets the editor kit.
418 * @return the editor kit
456 * @return the editor kit
463 * Sets the currently installed kit for handling
467 * @param kit the desired editor behavior
468 * @exception IllegalArgumentException if kit is not a
471 public final void setEditorKit(EditorKit kit) { argument
472 if (kit instanceof StyledEditorKit) {
473 super.setEditorKit(kit);
H A DJEditorPane.java63 * recognized. The kit used in this case is an extension of
66 * <dd>HTML text. The kit used in this case is the class
70 * <dd>RTF text. The kit used in this case is the class
353 * pane is set, and if the editor kit for the pane is
436 if (kit != null) {
437 Document doc = initializeModel(kit, page);
491 private Document initializeModel(EditorKit kit, URL page) { argument
492 Document doc = kit.createDefaultDocument();
517 * This method initializes from a stream. If the kit is
534 kit instanceo
1049 setEditorKit(EditorKit kit) argument
1520 private EditorKit kit; field in class:JEditorPane
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java317 Toolkit kit = Toolkit.getDefaultToolkit();
318 WeakPCL pcl = new WeakPCL(this, kit, "gnome.Net/ThemeName");
319 kit.addPropertyChangeListener(pcl.getKey(), pcl);
320 pcl = new WeakPCL(this, kit, "gnome.Gtk/FontName");
321 kit.addPropertyChangeListener(pcl.getKey(), pcl);
322 pcl = new WeakPCL(this, kit, "gnome.Xft/DPI");
323 kit.addPropertyChangeListener(pcl.getKey(), pcl);
1485 private Toolkit kit; field in class:GTKLookAndFeel.WeakPCL
1488 WeakPCL(GTKLookAndFeel target, Toolkit kit, String key) { argument
1490 this.kit
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java79 * To maximize the usefulness of this kit, a great deal of effort
123 * to load. By default, this kit produces documents that will be
178 * kit represents support for. This kit supports
190 * kit.
219 * the document, return the editor kit's default parser. It is an error
220 * if no parser could be obtained from the editor kit.
329 * Called when the kit is being installed into the
343 * Called when the kit is being removed from the
366 * CSS specifications. Each document produced by the kit
1988 moveCaretPosition(JTextComponent comp, HTMLEditorKit kit, int mark, int dot) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp38 #define __ kit.
216 void convert_uncommon_traps(GraphKit& kit, const JVMState* jvms) { argument
240 kit.add_safepoint_edges(call);
952 Node* PhaseStringOpts::fetch_static_field(GraphKit& kit, ciField* field) { argument
977 return kit.make_load(NULL, kit.basic_plus_adr(klass_node, field->offset_in_bytes()),
982 Node* PhaseStringOpts::int_stringSize(GraphKit& kit, Node* arg) { argument
984 kit.gvn().set_type(final_merge, Type::CONTROL);
986 kit.gvn().set_type(final_size, TypeInt::INT);
988 IfNode* iff = kit
1067 int_getChars(GraphKit& kit, Node* arg, Node* char_array, Node* start, Node* end) argument
1228 copy_string(GraphKit& kit, Node* str, Node* char_array, Node* start) argument
[all...]
H A Dcompile.cpp755 GraphKit kit(jvms);
757 if (!kit.stopped()) {
760 return_values(kit.jvms());
763 if (kit.has_exceptions()) {
767 rethrow_exceptions(kit.transfer_exceptions_into_jvms());
948 GraphKit kit; local
949 kit.gen_stub(stub_function, stub_name, is_fancy_jump, pass_tls, return_pc);
H A DgraphKit.cpp635 PreserveJVMState::PreserveJVMState(GraphKit* kit, bool clone_map) { argument
636 debug_only(kit->verify_map());
637 _kit = kit;
638 _map = kit->map(); // preserve the map
639 _sp = kit->sp();
640 kit->set_map(clone_map ? kit->clone_map() : NULL);
642 _bci = kit->bci();
643 Parse* parser = kit->is_Parse();
649 GraphKit* kit local
662 BuildCutout(GraphKit* kit, Node* p, float prob, float cnt) argument
673 GraphKit* kit = _kit; local
678 PreserveReexecuteState(GraphKit* kit) argument
2982 hook_memory_on_init(GraphKit& kit, int alias_idx, MergeMemNode* init_in_merge, Node* init_out_raw) argument
[all...]

Completed in 637 milliseconds