Searched defs:chars (Results 1 - 25 of 236) sorted by relevance

12345678910

/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp12.cpp11 check<T, str...> chars; // expected-error {{implicit instantiation of undefined template 'check<char, 't', 'e', 's', 't'>'}} expected-error {{implicit instantiation of undefined template 'check<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>'}} local
/external/icu/icu4c/source/common/unicode/
H A Dstrenum.h225 char *chars; member in class:StringEnumeration
227 * Capacity of chars, for use with default implementations and subclasses.
239 * Ensures that chars is at least as large as the requested capacity.
/external/llvm/lib/Support/
H A Dregcclass.h46 const char *chars; member in struct:cclass
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
56 public void write(char[] chars) throws IOException; argument
58 public void write(char[] chars, int start, int count) throws IOException; argument
60 public void write(String chars) throws IOException; argument
62 public void write(String chars, int start, int count) throws IOException; argument
H A DWriterToASCI.java59 * @param chars Array of characters
67 public void write(char chars[], int start, int length) argument
75 m_os.write(chars[i]);
H A DSerializerTraceWriter.java118 char[] chars = new char[count];
120 chars[i] = (char) buf[i];
125 chars,
127 chars.length);
207 * @param chars Array of characters
215 public void write(final char chars[], final int start, final int length) argument
220 m_writer.write(chars, start, length);
245 final char c = chars[i];
H A DWriterToUTF8Buffered.java88 // Big enough to hold the input chars that will be transformed
170 * @param chars Array of characters
178 public void write(final char chars[], final int start, final int length) argument
217 final char c = chars[end_chunk - 1];
218 int ic = chars[end_chunk - 1];
227 // char in the current chunk of chars.
244 this.write(chars,start_chunk, len_chunk);
263 for(; i < n && (c = chars[i])< 0x80 ; i++ )
269 final char c = chars[i];
290 low = chars[
[all...]
/external/clang/test/SemaTemplate/
H A Darray-to-pointer-decay.cpp31 } chars; typedef in typeref:struct:__anon2706
33 chars getChars();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DPixelConverter.java48 public int convertHeightInCharsToPixels(int chars) { argument
49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
69 public int convertWidthInCharsToPixels(int chars) { argument
70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
/external/icu/icu4c/source/i18n/
H A Dregeximp.cpp65 CaseFoldingUCharIterator::CaseFoldingUCharIterator(const UChar *chars, int64_t start, int64_t limit) : argument
66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
/external/icu/icu4c/source/layout/
H A DGXLayoutEngine.cpp32 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
38 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
43 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
55 void GXLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
62 if (chars == NULL || offset < 0 || count < 0) {
H A DGXLayoutEngine2.cpp29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
35 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
40 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success);
51 void GXLayoutEngine2::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
58 if (chars == NULL || offset < 0 || count < 0) {
H A DKhmerLayoutEngine.cpp44 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
51 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
H A DThaiLayoutEngine.cpp59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
65 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
100 void ThaiLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
107 if (chars == NULL || offset < 0 || count < 0) {
H A DTibetanLayoutEngine.cpp50 le_int32 TibetanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
57 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
81 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsDictionaryMatcher.java17 public CharsDictionaryMatcher(CharSequence chars) { argument
18 characters = chars;
H A DBytesDictionaryMatcher.java19 public BytesDictionaryMatcher(byte[] chars, int transform) { argument
20 characters = chars;
/external/libxml2/doc/examples/
H A Dparse4.c46 char chars[4]; local
54 res = readPacket(chars, 4);
68 chars, res, filename);
79 while ((res = readPacket(chars, 4)) > 0) {
80 xmlParseChunk(ctxt, chars, res, 0);
86 xmlParseChunk(ctxt, chars, 0, 1);
/external/speex/include/speex/
H A Dspeex_bits.h50 char *chars; /**< "raw" data */ member in struct:SpeexBits
54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */
/external/v8/tools/
H A Dshell-utils.h52 byte* chars = new byte[*size + 1]; local
54 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file));
60 chars[i] = chars[i - file_size];
62 chars[*size] = 0;
64 return chars;
/external/vogar/src/vogar/monitor/
H A DInterleavedReader.java124 * Returns the index of marker in {@code chars}, stopping at {@code limit}.
125 * Should the chars end with a prefix of marker, the offset of that prefix
128 int findPossibleMarker(char[] chars, int limit) { argument
132 if (chars[i + m] != marker.charAt(m)) {
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
H A DGwtWorkarounds.java45 static CharInput asCharInput(final CharSequence chars) { argument
46 checkNotNull(chars);
52 if (index < chars.length()) {
53 return chars.charAt(index++);
61 index = chars.length();
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/
H A DDecompressionTest.java18 private void log(char [] chars, int start, int count) { argument
21 log(String.valueOf(chars[i]));
27 private void logln(char [] chars, int start, int count) argument
29 log(chars, start, count);
47 "decompressed into " + count1 + " chars");
50 logln("Got chars: ");
60 "decompressed into " + count2 + " chars");
63 logln("Got chars: ");
/external/skia/src/core/
H A DSkWriter32.cpp51 char* chars = (char*)(ptr + 1); local
52 memcpy(chars, str, len);
53 chars[len] = '\0';
/external/emma/core/java12/com/vladium/util/
H A DWCMatcher.java25 final char [] chars = pattern.toCharArray (); // is this faster than using charAt()?
26 final int charsLength = chars.length;
37 final char ch = chars [c];
44 chars [patternLength ++] = '*';
51 chars [patternLength ++] = ch;
61 else if (chars [0] == '*')
62 return new EndsWithMatcher (chars, patternLength);
63 else if (chars [patternLength - 1] == '*')
64 return new StartsWithMatcher (chars, patternLength);
67 return new PatternMatcher (chars, patternLengt
72 matches(char [] chars) argument
125 matches(final char [] chars) argument
144 matches(final char [] chars) argument
163 matches(final char [] chars) argument
201 matches(final char [] chars) argument
[all...]

Completed in 2237 milliseconds

12345678910