Searched defs:characters (Results 1 - 25 of 97) sorted by relevance

1234

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsDictionaryMatcher.java15 private CharSequence characters; field in class:CharsDictionaryMatcher
18 characters = chars;
23 CharsTrie uct = new CharsTrie(characters, 0);
H A DBytesDictionaryMatcher.java16 private final byte[] characters; field in class:BytesDictionaryMatcher
20 characters = chars;
44 BytesTrie bt = new BytesTrie(characters, 0);
/external/libxml2/python/tests/
H A Dindexes.py55 def characters(self, data): member in class:callback
H A DpushSAX.py27 def characters(self, data): member in class:callback
29 log = log + "characters: %s:" % (data)
52 reference = "startDocument:startElement foo {'url': 'tst'}:characters: bar:endElement foo:endDocument:"
H A DpushSAXhtml.py27 def characters(self, data): member in class:callback
29 log = log + "characters: %s:" % (data)
53 :characters: bar:endElement foo:endElement body:endElement html:endDocument:"""
H A Dsync.py27 def characters(self, data): member in class:callback
29 log = log + "characters: %s:" % (data)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java22 * 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) { argument
27 if (characters.indexOf(input.charAt(pos)) != -1) {
36 * space. Result is undefined if input contains newline characters.
/external/sfntly/cpp/src/sample/subtly/
H A Dcharacter_predicate.cc36 AcceptSet::AcceptSet(IntegerSet* characters) argument
37 : characters_(characters) {
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorCharacters.java101 * @param ch The characters.
103 * @param length The number of characters to use from the
107 * @see org.xml.sax.ContentHandler#characters
109 public void characters( method in class:ProcessorCharacters
157 * Accumulate characters, until a non-whitespace event has
H A DXSLTElementProcessor.java192 * @param ch The characters.
194 * @param length The number of characters to use from the
197 public void characters( method in class:XSLTElementProcessor
210 * @param ch The whitespace characters.
212 * @param length The number of characters to use from the
/external/icu/icu4c/source/common/
H A Ddictionarydata.h104 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
H A Dbrkeng.cpp255 // TODO: Have to get some characters with script=common handled
319 const char *characters = (const char *)(data + offset); local
320 m = new BytesDictionaryMatcher(characters, transform, file);
323 const UChar *characters = (const UChar *)(data + offset); local
324 m = new UCharsDictionaryMatcher(characters, file);
/external/jdiff/src/jdiff/
H A DCommentsHandler.java113 public void characters(char[] ch, int start, int length) { method in class:CommentsHandler
H A DAPIHandler.java196 public void characters(char[] ch, int start, int length) { method in class:APIHandler
/external/deqp/scripts/log/
H A Dlog_to_xml.py75 def characters (self, content): member in class:BuildXMLLogHandler
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacterSet.java47 private IntMap<IntMap<BitmapCharacter>> characters; field in class:BitmapCharacterSet
60 int[] styles = new int[characters.size()];
62 for (Entry<IntMap<BitmapCharacter>> entry : characters) {
99 characters.put(style, readCharset(ic, style));
117 characters = new IntMap<IntMap<BitmapCharacter>>();
130 if (characters.size() == 0) {
131 characters.put(style, new IntMap<BitmapCharacter>());
133 return characters.get(style);
190 for (Entry<IntMap<BitmapCharacter>> entry : styleSet.characters) {
197 IntMap<BitmapCharacter> old = this.characters
[all...]
/external/sepolicy/tools/
H A Dinsertkeys.py201 def characters(self, content): member in class:ReplaceTags
/external/v8/src/x64/
H A Dregexp-macro-assembler-x64.cc242 // Check that there are sufficient characters left in the input.
386 // Check that there are sufficient characters left in the input.
520 // Match space-characters
522 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
594 // Table is 256 entries, so all Latin1 characters can be tested.
608 // Table is 256 entries, so all Latin1 characters can be tested.
1024 int characters) {
1028 CheckPosition(cp_offset + characters - 1, on_end_of_input);
1030 LoadCurrentCharacterUnchecked(cp_offset, characters);
1253 // The original start address of the characters t
1021 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DExtendedContentHandler.java89 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
H A DToSAXHandler.java114 * @param characters The string of characters to process.
118 * @see ExtendedContentHandler#characters(String)
120 public void characters(String characters) throws SAXException argument
122 final int len = characters.length();
127 characters.getChars(0,len, m_charsBuff, 0);
128 characters(m_charsBuff, 0, len);
347 public void characters(org.w3c.dom.Node node) method in class:ToSAXHandler
360 this.characters(dat
[all...]
H A DToTextStream.java176 * 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 fro
570 characters(String characters) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java450 * chunks; however, all of the characters in any single event
461 * @param ch The characters from the XML document.
463 * @param length The number of characters to read from the array.
467 public void characters(char ch[], int start, int length) throws org.xml.sax.SAXException method in class:DOMBuilder
498 * @param ch Array containing the characters
499 * @param start Index to start of characters in the array
500 * @param length Number of characters in the array
566 * the characters in any single event must come from the same
573 * @param ch The characters from the XML document.
575 * @param length The number of characters t
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DTouchEvent.java55 * Virtual keyboard or hardware key event down, fields: keyCode, characters
59 * Virtual keyboard or hardware key event up, fields: keyCode, characters
102 private String characters; field in class:TouchEvent
130 characters = "";
187 return characters;
190 public void setCharacters(String characters) { argument
191 this.characters = characters;
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DSceneLoader.java409 public void characters(char ch[], int start, int length) { method in class:SceneLoader
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java143 public void characters(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
160 characters(buff, offset, length);

Completed in 577 milliseconds

1234