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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/xml/
rss2html.py 89 def characters(self, content): member in class:RSSHandler
roundtrip.py 32 def characters(self, content): member in class:ContentGenerator
  /external/python/cpython2/Demo/xml/
rss2html.py 89 def characters(self, content): member in class:RSSHandler
roundtrip.py 32 def characters(self, content): member in class:ContentGenerator
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsDictionaryMatcher.java 18 private CharSequence characters; field in class:CharsDictionaryMatcher
21 characters = chars;
27 CharsTrie uct = new CharsTrie(characters, 0);
BytesDictionaryMatcher.java 19 private final byte[] characters; field in class:BytesDictionaryMatcher
23 characters = chars;
48 BytesTrie bt = new BytesTrie(characters, 0);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 17 private CharSequence characters; field in class:CharsDictionaryMatcher
20 characters = chars;
26 CharsTrie uct = new CharsTrie(characters, 0);
BytesDictionaryMatcher.java 18 private final byte[] characters; field in class:BytesDictionaryMatcher
22 characters = chars;
47 BytesTrie bt = new BytesTrie(characters, 0);
  /external/libxml2/python/tests/
indexes.py 55 def characters(self, data): member in class:callback
pushSAX.py 27 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:"
pushSAXhtml.py 27 def characters(self, data): member in class:callback
29 log = log + "characters: %s:" % (data)
53 :characters: bar:endElement foo:endElement body:endElement html:endDocument:"""
sync.py 27 def characters(self, data): member in class:callback
29 log = log + "characters: %s:" % (data)
  /libcore/luni/src/main/java/org/xml/sax/
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...]
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
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
  /libcore/luni/src/test/java/libcore/java/lang/
OldCharacterTest.java 93 char[] characters = { local
123 Character.getDirectionality(characters[i]));
  /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/deqp/scripts/log/
log_to_xml.py 75 def characters (self, content): member in class:BuildXMLLogHandler
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorCharacters.java 101 * @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
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 79 * Set the characters that will be output to the result tree..
81 * @param v Array of characters that will be output to the result tree
89 * Get the characters that will be output to the result tree..
91 * @return Array of characters that will be output to the result tree
124 * possibly other characters) when outputting text nodes.
149 * possibly other characters) when outputting text nodes.
213 rth.characters(m_ch, 0, m_ch.length);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
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
  /external/icu/icu4c/source/common/
dictionarydata.h 106 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
113 const UChar *characters; member in class:UCharsDictionaryMatcher
124 : characters(c), transformConstant(t), file(f) { }
133 const char *characters; member in class:BytesDictionaryMatcher
  /external/jline/src/src/test/java/jline/
ConsoleReaderTest.java 47 char[] characters = new char[] { 'S', 's', local
52 assertWindowsKeyBehavior("S", characters);
60 char[] characters = new char[] { 'S', 's', local
65 assertWindowsKeyBehavior("S", characters);
73 char[] characters = new char[] { 'S', 's', local
76 assertWindowsKeyBehavior("xSs", characters);
85 char[] characters = new char[] { 'S', 's', local
90 assertWindowsKeyBehavior("xSsj", characters);
98 char[] characters = new char[] { WindowsTerminal.SPECIAL_KEY_INDICATOR, local
100 assertWindowsKeyBehavior("dir", characters);
108 char[] characters = new char[] { WindowsTerminal.SPECIAL_KEY_INDICATOR, local
118 char[] characters = new char[] { 's', 's', 's', local
129 char[] characters = new char[] { 'o', 'p', 's', local
    [all...]
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 57 """character - This subdivides the text into characters. """
64 characters = character variable
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 57 """character - This subdivides the text into characters. """
64 characters = character variable

Completed in 503 milliseconds

1 2 3 4 5 6 7 8 91011>>