OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:chseq
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
CharSequenceAdapter.java
39
CharSequenceAdapter (CharSequence
chseq
) {
40
super(
chseq
.length());
41
sequence =
chseq
;
BufferFactory.java
53
* @param
chseq
The char sequence
55
public static CharBuffer newCharBuffer (CharSequence
chseq
) {
56
return new CharSequenceAdapter(
chseq
);
CharBuffer.java
87
* Calling this method has the same effect as {@code wrap(
chseq
, 0,
chseq
.length())}.
90
* @param
chseq
the char sequence which the new buffer will be based on.
93
public static CharBuffer wrap (CharSequence
chseq
) {
94
return BufferFactory.newCharBuffer(
chseq
);
103
* @param
chseq
the char sequence which the new buffer will be based on.
104
* @param start the start index, must not be negative and not greater than {@code
chseq
.length()}.
105
* @param end the end index, must be no less than {@code start} and no greater than {@code
chseq
.length()}.
109
public static CharBuffer wrap (CharSequence
chseq
, int start, int end) {
110
if (
chseq
== null)
[
all
...]
Completed in 82 milliseconds