HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 1 - 25 of 1085) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HeaderParser.java 22 * contains a character from {@code characters}. Returns the input length if
23 * none of the requested characters can be found.
25 public static int skipUntil(String input, int pos, String characters) {
27 if (characters.indexOf(input.charAt(pos)) != -1) {
36 * space. Result is undefined if input contains newline characters.
  /external/sfntly/cpp/src/sample/subtly/
character_predicate.cc 36 AcceptSet::AcceptSet(IntegerSet* characters)
37 : characters_(characters) {
character_predicate.h 31 // All characters except for those between [start, end] are rejected
44 // All characters in IntegerSet
50 explicit AcceptSet(sfntly::IntegerSet* characters);
58 // All characters
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
PtNodeInfo.java 35 final int[] characters, final ProbabilityInfo probabilityInfo,
41 mCharacters = characters;
  /external/clang/test/Lexer/
unicode.c 6 // This file contains Unicode characters; please do not "fix" them!
26 CHECK: The preprocessor should not complain about Unicode characters like ©.
  /external/curl/docs/examples/
xmlstream.c 51 struct MemoryStruct characters; member in struct:ParserStruct
62 free(state->characters.memory);
63 state->characters.memory = NULL;
64 state->characters.size = 0;
70 struct MemoryStruct *mem = &state->characters;
90 printf("%5lu %10lu %s\n", state->depth, state->characters.size, name);
137 printf("Depth Characters Closing Tag\n");
159 free(state.characters.memory);
  /external/chromium-trace/catapult/third_party/html5lib-python/utils/
entities.py 32 def make_test(name, characters, good):
36 "output":test_expected(name, characters, good)
49 def test_expected(name, characters, good):
53 rv.append(["Character", characters])
58 for entity_name, characters in entities.items():
61 tests.append((entity_name, characters, True))
  /external/icu/icu4c/source/common/
dictionarydata.h 104 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
111 const UChar *characters; member in class:UCharsDictionaryMatcher
122 : characters(c), transformConstant(t), file(f) { }
131 const char *characters; member in class:BytesDictionaryMatcher
  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 160 * chunks; however, all of the characters in any single event
171 * @param ch The characters from the XML document.
173 * @param length The number of characters to read from the array.
179 public abstract void characters (char ch[], int start, int length) method in interface:DocumentHandler
193 * the characters in any single event must come from the same
200 * @param ch The characters from the XML document.
202 * @param length The number of characters to read from the array.
205 * @see #characters
ContentHandler.java 236 * <p>Like {@link #characters characters()}, attribute values may have
237 * characters that need more than one <code>char</code> value. </p>
294 * chunks; however, all of the characters in any single event
301 * <p>Individual characters may consist of more than one Java
303 * happens, because characters can't be represented in just sixteen bits.
304 * In one case, characters are represented in a <em>Surrogate Pair</em>,
305 * using two special Unicode values. Such characters are in the so-called
307 * composite characters, such as a base character combining with one or
308 * more accent characters. </p
331 public void characters (char ch[], int start, int length) method in interface:ContentHandler
    [all...]
HandlerBase.java 240 * @param ch The characters.
242 * @param length The number of characters to use from the
246 * @see org.xml.sax.DocumentHandler#characters
248 public void characters (char ch[], int start, int length)
263 * @param ch The whitespace characters.
265 * @param length The number of characters to use from the
245 public void characters (char ch[], int start, int length) method in class:HandlerBase
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 17 private final byte[] characters; field in class:BytesDictionaryMatcher
21 characters = chars;
45 BytesTrie bt = new BytesTrie(characters, 0);
CharsDictionaryMatcher.java 16 private CharSequence characters; field in class:CharsDictionaryMatcher
19 characters = chars;
24 CharsTrie uct = new CharsTrie(characters, 0);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 15 private CharSequence characters; field in class:CharsDictionaryMatcher
18 characters = chars;
23 CharsTrie uct = new CharsTrie(characters, 0);
BytesDictionaryMatcher.java 16 private final byte[] characters; field in class:BytesDictionaryMatcher
20 characters = chars;
44 BytesTrie bt = new BytesTrie(characters, 0);
  /external/libweave/third_party/chromium/base/strings/
string_util.cc 71 // Find the first characters that aren't equal and compare them. If the end
148 // When the string was all trimmed, report that we stripped off characters
150 // stripped no characters, but we still need to clear |output|.
198 inline bool DoIsStringASCII(const Char* characters, size_t length) {
200 const Char* end = characters + length;
203 while (!IsAlignedToMachineWord(characters) && characters != end) {
204 all_char_bits |= *characters;
205 ++characters;
211 while (characters < word_end)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 114 * @param characters The string of characters to process.
118 * @see ExtendedContentHandler#characters(String)
120 public void characters(String characters) throws SAXException method in class:ToSAXHandler
122 final int len = characters.length();
127 characters.getChars(0,len, m_charsBuff, 0);
128 characters(m_charsBuff, 0, len); method
347 public void characters(org.w3c.dom.Node node) method in class:ToSAXHandler
360 this.characters(data)
    [all...]
ToTextSAXHandler.java 349 * @see ExtendedContentHandler#characters(String)
351 public void characters(String characters) method in class:ToTextSAXHandler
354 final int length = characters.length();
359 characters.getChars(0, length, m_charsBuff, 0);
361 m_saxHandler.characters(m_charsBuff, 0, length);
365 * @see org.xml.sax.ContentHandler#characters(char[], int, int)
367 public void characters(char[] characters, int offset, int length) method in class:ToTextSAXHandler
371 m_saxHandler.characters(characters, offset, length)
    [all...]
ExtendedContentHandler.java 89 public void characters(String chars) throws SAXException; method in interface:ExtendedContentHandler
97 public void characters(org.w3c.dom.Node node) throws org.xml.sax.SAXException; method in interface:ExtendedContentHandler
222 // The attribute value contains no bad characters. A "bad" character is one which
ToTextStream.java 176 * chunks; however, all of the characters in any single event
187 * @param ch The characters from the XML document.
189 * @param length The number of characters to read from the array.
195 public void characters(char ch[], int start, int length) method in class:ToTextStream
204 /* leave characters un-processed as we are
218 // In final output state we do process the characters!
235 * @param ch The characters from the XML document.
237 * @param length The number of characters to read from the array.
257 * Normalize the characters, but don't escape. Different from
261 * @param ch The characters from the XML document
570 public void characters(String characters) method in class:ToTextStream
579 characters(m_charsBuff, 0, length); method
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
InternationalFontsTest.java 36 * For each script examplified below we only use a few characters from the respective alphabet. You'll have to pass in a string
37 * containing all the printable characters of that language that you want to use!
53 parameter.characters = "???/????";
58 parameter.characters = FreeTypeFontGenerator.DEFAULT_CHARS;
64 parameter.characters = "?????????";
  /external/opencv3/3rdparty/jinja2/markupsafe/
_native.py 15 """Convert the characters &, <, >, ' and " in string s to HTML-safe
17 such characters in HTML. Marks return value as markup string.
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 1 // Try resolving hostnames containing non-ASCII characters.
  /libcore/luni/src/test/java/libcore/java/lang/
OldCharacterTest.java 93 char[] characters = { local
123 Character.getDirectionality(characters[i]));
  /external/chromium-trace/catapult/third_party/flot/
CONTRIBUTING.md 83 Block comments should be wrapped at 80 characters.
85 Code should attempt to wrap at 80 characters, but may run longer if wrapping
90 do not exceed 80 characters. For example:

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011>>