OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:charlist
(Results
1 - 8
of
8
) sorted by null
/external/icu/icu4c/source/tools/pkgdata/
pkgtypes.h
32
}
CharList
;
37
* write
CharList
'l' into stream 's' using deliminter 'delim' (delim can be NULL). quoted: -1 remove, 0 as is, 1 add quotes
39
const char *pkg_writeCharList(FileStream *s,
CharList
*l, const char *delim, int32_t quoted);
44
const char *pkg_writeCharListWrap(FileStream *s,
CharList
*l, const char *delim, const char *brk, int32_t quoted);
50
uint32_t pkg_countCharList(
CharList
*l);
53
* Prepend string to
CharList
. Str is adopted!
55
CharList
*pkg_prependToList(
CharList
*l, const char *str);
58
* append string to
CharList
. *end or even end can be null if you don't
62
CharList
*pkg_appendToList(CharList *l, CharList** end, const char *str)
[
all
...]
pkgtypes.c
27
const char *pkg_writeCharListWrap(FileStream *s,
CharList
*l, const char *delim, const char *brk, int32_t quote)
73
const char *pkg_writeCharList(FileStream *s,
CharList
*l, const char *delim, int32_t quote)
120
uint32_t pkg_countCharList(
CharList
*l)
133
* Prepend string to
CharList
135
CharList
*pkg_prependToList(
CharList
*l, const char *str)
137
CharList
*newList;
138
newList = uprv_malloc(sizeof(
CharList
));
151
* append string to
CharList
. *end or even end can be null if you don't
155
CharList
*pkg_appendToList(CharList *l, CharList** end, const char *str
[
all
...]
pkgdata.cpp
263
CharList
*tail;
[
all
...]
/external/pdfium/public/
fpdf_searchex.h
24
// The index of the character in internal
charlist
. -1 for error.
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/
ihatexml.py
124
def normaliseCharList(
charList
):
125
charList
= sorted(
charList
)
126
for item in
charList
:
130
while i < len(
charList
):
132
rv.append(
charList
[i])
133
while i + j < len(
charList
) and
charList
[i + j][0] <= rv[-1][1] + 1:
134
rv[-1][1] =
charList
[i + j][1]
143
def missingRanges(
charList
)
[
all
...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
BIG5Tool.java
201
List
charList
= new ArrayList();
207
charList
.add(new Integer(c.charCode));
209
Object [] sortedChars =
charList
.toArray();
EUCTool.java
201
List
charList
= new ArrayList();
207
charList
.add(new Integer(c.charCode));
209
Object [] sortedChars =
charList
.toArray();
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattClientFacade.java
[
all
...]
Completed in 123 milliseconds