Searched defs:split (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A Dhelper.js42 function split(property, regexp) { function
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DUtil.java43 static String[] split(String s, char c) { method in class:Util
H A DAbstractFileSystemProvider.java45 private static String[] split(String attribute) { method in class:AbstractFileSystemProvider
73 String[] s = split(attribute);
86 String[] s = split(attributes);
92 return view.readAttributes(s[1].split(","));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltStrings.java182 * The str:split function splits up a string and returns a node set of token
185 * The first argument is the string to be split. The second argument is a pattern
186 * string. The string given by the first argument is split at any occurrence of
189 * str:split('a, simple, list', ', ') gives the node set consisting of:
197 * @param str The string to be split
200 * @return A node set of split tokens
202 public static NodeList split(String str, String pattern) method in class:ExsltStrings
244 public static NodeList split(String str) method in class:ExsltStrings
246 return split(str, " ");
255 * taken as a delimiting character. The string given by the first argument is split
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DquickSort.hpp106 int split = partition<T, C, idempotent>(array, pivot, length, comparator); local
107 int first_part_length = split + 1;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DDiagramConnectionWidget.java65 private boolean split; field in class:DiagramConnectionWidget
125 split = false;
128 split = true;
167 if (split) {
227 if (split) {
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp75 size_t split, bool realloc) {
74 pd_split_reserved_memory(char *base, size_t size, size_t split, bool realloc) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.hpp115 bool split = false, bool realloc = true);
120 bool split = false, bool realloc = true);
131 ReservedSpace::first_part(size_t partition_size, bool split, bool realloc) argument
133 return first_part(partition_size, alignment(), split, realloc);
H A Dvirtualspace.cpp421 bool split, bool realloc) {
423 if (split) {
420 first_part(size_t partition_size, size_t alignment, bool split, bool realloc) argument
/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java539 private static void split() { method in class:Exceptions
540 System.out.println("split(String regex, int limit)");
543 "foo".split(null, 1);
546 System.out.println("split(String regex, int limit)");
549 "foo".split(null);
656 split(); // split(String, int), split(String)
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder2.java68 split(tmp, 0, t);
138 public static void split(double coords[], int pos, double t) { method in class:Order2
418 split(eqn, 0, t1);
424 split(eqn, 0, t0 / t1);
H A DOrder3.java82 split(tmp, 3, t);
86 split(tmp, 9, t);
194 public static void split(double coords[], int pos, double t) { method in class:Order3
591 split(eqn, 0, t1);
597 split(eqn, 0, t0 / t1);
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp605 MethodLiveness::BasicBlock *MethodLiveness::BasicBlock::split(int split_bci) { function in class:MethodLiveness::BasicBlock
615 assert (start < split_bci && split_bci < limit, "improper split");
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java2236 * <i>str.</i><tt>split(</tt><i>regex</i><tt>,</tt>&nbsp;<i>n</i><tt>)</tt>
2242 * java.util.regex.Pattern#split(java.lang.CharSequence,int)
2243 * split}<tt>(</tt><i>str</i><tt>,</tt>&nbsp;<i>n</i><tt>)</tt>
2264 public String[] split(String regex, int limit) { method in class:String
2313 return Pattern.compile(regex).split(this, limit);
2321 * #split(String, int) split} method with the given expression and a limit
2354 public String[] split(String regex) { method in class:String
2355 return split(regex, 0);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp99 size_t split, bool realloc) {
98 pd_split_reserved_memory(char *base, size_t size, size_t split, bool realloc) argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp103 size_t split, bool realloc) {
102 pd_split_reserved_memory(char *base, size_t size, size_t split, bool realloc) argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp339 StateSplit* split = instr->as_StateSplit(); local
340 if (split != NULL && split->state() != NULL && !split->state()->stack_is_empty()) {
341 fill_to(instr_pos); print_stack(split->state());
H A Dc1_IR.cpp306 BlockBegin* split = from->insert_block_between(to); local
310 from->block_id(), to->block_id(), split->block_id());
550 // an exception edge. Because such edges are usually critical edges which cannot be split, the
558 "loop end blocks must have one successor (critical edges are split)");
761 // critical edge split blocks are prefered because than they have a bigger
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java497 void split(boolean setToNull) { method in class:Flow
586 split(tree.type != syms.unknownType);
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java1478 * Given a regular expression of "[ab]+" and a string to split of
1486 * @param s String to split on this regular exression
1489 public String[] split(String s) method in class:RE
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp858 void BinaryTreeDictionary<Chunk>::dict_census_udpate(size_t size, bool split, bool birth){ argument
861 if (split) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java471 DLSRegion split = new DLSRegion();
472 if (readRgnChunk(split, subchunk))
473 instrument.getRegions().add(split);
477 DLSRegion split = new DLSRegion();
478 if (readRgnChunk(split, subchunk))
479 instrument.getRegions().add(split);
587 private boolean readRgnChunk(DLSRegion split, RIFFReader riff) argument
606 split.getModulators().addAll(modlist);
622 split.getModulators().addAll(modlist);
631 split
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java504 // split elements that need it
1628 boolean didEnd = split(offset, length);
1634 split(offset + length, 0);
1641 boolean split(int offs, int len) { method in class:DefaultStyledDocument.ElementBuffer
1658 // we need to split, now see if the other end is within
1663 // it's a range split in the same parent
1666 // it's a three-way split
1688 // split the first location
2394 // Create the left split part containing new content.
2438 // Inserted into middle, need to recreate split lef
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java821 //String.split would be more convenient, but incurs big performance penalty
835 protected String[] split(String sequence) { method in class:FontConfiguration
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java2141 // place. The array is first split into segments, replacing each slash
2216 static private void split(char[] path, int[] segs) { method in class:URI
2260 // path computed by split, as above, with '\0' having replaced '/'
2415 split(path, segs);

Completed in 145 milliseconds

12