Searched defs:chars (Results 26 - 50 of 275) sorted by relevance

1234567891011

/external/icu/icu4c/source/layout/
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);
H A DHanLayoutEngine.cpp54 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, argument
61 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
H A DIndicLayoutEngine.cpp56 le_int32 IndicOpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
63 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success);
87 le_int32 IndicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
94 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
121 outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage);
123 outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage, &fMPreFixups, success);
/external/skia/bench/
H A DPathUtilsBench.cpp20 static void fillRandomBits( int chars, char* bits ){ argument
23 for (int i = 0; i < chars; ++i){
/external/skia/src/core/
H A DSkWriter32.cpp51 char* chars = (char*)(ptr + 1); local
52 memcpy(chars, str, len);
53 chars[len] = '\0';
/external/apache-xml/src/main/java/org/apache/xml/serializer/
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/chromium_org/content/browser/
H A Dbrowser_shutdown_profile_dumper.cc122 void BrowserShutdownProfileDumper::WriteChars(const char* chars, size_t size) { argument
126 size_t written = fwrite(chars, 1, size, dump_file_);
/external/chromium_org/third_party/icu/source/samples/layout/
H A DScriptCompositeFontInstance.cpp63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A Dleperf.cpp19 LEUnicode *chars; member in class:Params
41 LEUnicode *chars = params->chars; local
42 glyphCount = engine->layoutChars(chars, 0, params->charLen, params->charLen, TRUE, 0.0, 0.0, status);
76 p.chars = ArabChars;
80 p.chars = new LEUnicode[257];
82 p.chars[i] = i+1;
84 p.chars[256] = 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...]
/external/icu/icu4c/source/samples/layout/
H A DScriptCompositeFontInstance.cpp63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
69 if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
/external/icu/icu4c/source/test/perf/leperf/
H A Dleperf.cpp19 LEUnicode *chars; member in class:Params
41 LEUnicode *chars = params->chars; local
42 glyphCount = engine->layoutChars(chars, 0, params->charLen, params->charLen, TRUE, 0.0, 0.0, status);
76 p.chars = ArabChars;
80 p.chars = new LEUnicode[257];
82 p.chars[i] = i+1;
84 p.chars[256] = 0;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java37 private char[] chars; field in class:DistinguishedNameParser
49 // skip preceding space chars, they can present after
51 for (; pos < length && chars[pos] == ' '; pos++) {
60 // attribute type chars
62 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
73 // skip trailing space chars between attribute type and '='
75 if (chars[pos] == ' ') {
76 for (; pos < length && chars[pos] != '=' && chars[po
[all...]
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java487 private static boolean allStars(char[] chars, int start, int end) { argument
489 if (chars[i] != '*') {
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dexpanding_textfield.cc86 void ExpandingTextfield::SetDefaultWidthInCharacters(int chars) { argument
87 ForEachTextfield(&DecoratedTextfield::set_default_width_in_chars, chars);
/external/chromium_org/mojo/public/cpp/bindings/
H A Dstring.h22 String(const char* chars) : is_null_(!chars) { argument
23 if (chars)
24 value_ = chars;
26 String(const char* chars, size_t num_chars) argument
27 : value_(chars, num_chars),
31 String(const char chars[N]) : value_(chars, N-1), is_null_(false) {} argument
48 String& operator=(const char* chars) { argument
49 is_null_ = !chars;
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DSVGGlyph.cpp113 static inline bool isCompatibleArabicForm(const SVGGlyph& identifier, const Vector<SVGGlyph::ArabicForm>& chars, unsigned startPosition, unsigned endPosition) argument
115 if (chars.isEmpty())
118 Vector<SVGGlyph::ArabicForm>::const_iterator realEnd = chars.end();
119 Vector<SVGGlyph::ArabicForm>::const_iterator it = chars.begin() + startPosition;
123 Vector<SVGGlyph::ArabicForm>::const_iterator end = chars.begin() + endPosition;
136 const Vector<SVGGlyph::ArabicForm>& chars, unsigned startPosition, unsigned endPosition)
186 return isCompatibleArabicForm(identifier, chars, startPosition, endPosition);
135 isCompatibleGlyph(const SVGGlyph& identifier, bool isVerticalText, const String& language, const Vector<SVGGlyph::ArabicForm>& chars, unsigned startPosition, unsigned endPosition) argument
/external/chromium_org/third_party/icu/source/common/
H A Dunistr_case.cpp57 const UChar *chars = getArrayStart(); local
59 chars += start;
64 if(chars != srcChars) {
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
/external/chromium_org/third_party/icu/source/extra/scrptrun/
H A Dscrptrun.h38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length) argument
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length) argument
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) argument
148 charArray = chars;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayEvent.cpp239 const char* chars = string->c_str(); local
240 int count = SkUTF8_CountUnichars(chars);
242 code = (SkKey) SkUTF8_NextUnichar(&chars);
246 SkASSERT(*chars == '-');
247 chars++;
248 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
/external/chromium_org/third_party/skia/tests/
H A DPathUtilsTest.cpp17 static void fill_random_bits(int chars, char* bits){ argument
20 for (int i = 0; i < chars; ++i){
/external/chromium_org/third_party/zlib/
H A Dgzlib.c38 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
46 if (chars != 0) {
48 if (chars >= 2
49 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
50 chars -= 2;
51 msgbuf[chars] = 0;
54 if (chars > sizeof (buf) - 1) {
55 chars = sizeof (buf) - 1;
56 msgbuf[chars]
[all...]
/external/icu/icu4c/source/common/
H A Dunistr_case.cpp57 const UChar *chars = getArrayStart(); local
59 chars += start;
64 if(chars != srcChars) {
66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
/external/icu/icu4c/source/extra/scrptrun/
H A Dscrptrun.h38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length) argument
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length) argument
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) argument
148 charArray = chars;

Completed in 807 milliseconds

1234567891011