HomeSort by relevance Sort by last modified time
    Searched full:character (Results 351 - 375 of 12872) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/gas/config/
tc-fr30.h 62 the local variable 'c' which is passed to this macro as 'character'. */
63 #define TC_START_LABEL(character, s, i_l_p) \
64 ((character) != ':' ? 0 : (character = fr30_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
tc-m32c.h 82 the local variable 'c' which is passed to this macro as 'character'. */
83 #define TC_START_LABEL(character, s, i_l_p) \
84 ((character) != ':' ? 0 : (character = m32c_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
UnicodeEscaper.java 64 * {@code 0 <= cp <= Character#MAX_CODE_POINT}.
68 * character from the resulting text.
71 * If the character does not need to be escaped, this method should return
72 * {@code null}, rather than an array containing the character
79 * or return a suitable replacement character. It must never silently
91 * returning the index of the next character that requires escaping.
114 * the index of the first character to be scanned
116 * the index immediately after the last character to be scanned
128 index += Character.isSupplementaryCodePoint(cp) ? 2 : 1;
139 * unmatched high surrogate character, then this method will thro
    [all...]
  /external/icu/icu4c/source/layout/
IndicLayoutEngine.h 31 * This class overrides the characterProcessing method to do Indic character processing
102 * This method does Indic OpenType character processing. It assigns the OpenType feature
108 * @param chars - the input character context
109 * @param offset - the index of the first character to process
113 * @param glyphStorage - the glyph storage object. The glyph and character index arrays will be set.
119 * @return the output character count
127 * This method does character to glyph mapping, applies the GSUB table and applies
129 * to do the character to glyph mapping, and apply the GSUB table.
136 * @param chars - the input character context
137 * @param offset - the index of the first character to proces
    [all...]
HangulLayoutEngine.h 31 * This class overrides the characterProcessing method to do Hangul character processing.
101 * This method does Hangul OpenType character processing. It assigns the OpenType feature
102 * tags to the characters, and may compose a character sequence into a modern Hangul syllable,
106 * @param chars - the input character context
107 * @param offset - the index of the first character to process
111 * @param glyphStorage - the glyph storage object. The glyph and character index arrays will be set.
117 * @return the output character count
  /external/clang/test/Preprocessor/
utf8-allowed-chars.c 33 // expected-warning@9 {{using this character in an identifier is incompatible with C++98}}
34 // expected-warning@10 {{using this character in an identifier is incompatible with C++98}}
36 // expected-warning@14 {{using this character in an identifier is incompatible with C++98}}
51 // expected-warning@9 {{using this character in an identifier is incompatible with C99}}
52 // expected-warning@11 {{using this character in an identifier is incompatible with C99}}
54 // expected-warning@14 {{using this character in an identifier is incompatible with C99}}
55 // expected-warning@20 {{starting an identifier with this character is incompatible with C99}}
  /external/guava/guava/src/com/google/common/escape/
ArrayBasedEscaperMap.java 32 * same character replacement mapping to allow the underlying (implementation
36 * ArrayBasedUnicodeEscaper is proportional to the highest valued character that
38 * character '{@literal \}u1000' will require approximately 16K of memory.
55 Map<Character, String> replacements) {
73 // linear lookup table of replacement character sequences indexed by the
74 // original character value.
76 static char[][] createReplacementArray(Map<Character, String> map) {
ArrayBasedUnicodeEscaper.java 41 * For example a replacement map containing the single character
43 * need to create multiple escaper instances that have the same character
75 * @param safeMin the lowest character value in the safe range
76 * @param safeMax the highest character value in the safe range
80 protected ArrayBasedUnicodeEscaper(Map<Character, String> replacementMap,
99 * @param safeMin the lowest character value in the safe range
100 * @param safeMax the highest character value in the safe range
119 // This is a bit of a hack but lets us do quicker per-character checks in
127 // If we clip the safe range used during the per-character tests so it is
132 if (safeMin >= Character.MIN_HIGH_SURROGATE)
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/util/
HtmlUtils.java 157 * Set of {@code Character}s considered whitespace in Javascript.
160 private static final Set<Character> JAVASCRIPT_WHITESPACE =
173 * Set of {@code Character}s considered whitespace in HTML.
176 private static final Set<Character> HTML_WHITESPACE =
232 * Determines if the specified character is an HTML whitespace character.
233 * A character is an HTML whitespace character if and only if it is one
236 * <li>A <code>Space</code> character
237 * <li>A <code>Tab</code> character
    [all...]
JavascriptTokenBuffer.java 38 * <li> Repeated whitespace is folded into just one character to
89 * are folded into one character to save space. Null strings are
105 * Appends a character to the buffer. We fold sequences of whitespace and
123 * Returns the last character in the buffer and removes it from the buffer
124 * or the NUL character '\0' if the buffer is empty.
126 * @return last character in the buffer or '\0' if the buffer is empty
140 * Returns the character at a given index in the buffer or nul ('\0')
146 * character in the buffer.
150 * @return character at the requested index
169 * last character in the buffer
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SoftKeyboardTest.java 47 public boolean keyTyped (char character) {
49 if (character == '\r') character = '\n';
51 // if we get \b, we remove the last inserted character
52 if (character == '\b' && textBuffer.length() > 0) {
56 // else we just insert the character
57 textBuffer.add(character);
  /external/testng/src/test/java/org/testng/
AssertTest.java 159 char character; field in class:AssertTest.Asymmetric
161 Asymmetric(int integer, char character) {
163 this.character = character;
174 if (character != that.character) return false;
182 result = 31 * result + (int) character;
  /external/v8/src/parsing/
scanner-character-streams.h 18 // A buffered character stream based on a random access character
26 void PushBack(uc32 character) override;
34 virtual void SlowPushBack(uc16 character);
83 // The character position of the character at raw_data[raw_data_pos_].
159 void PushBack(uc32 character) override {
  /external/bison/lib/
mbuiter.h 60 initialized to the next multibyte character.
63 advances the iterator by one multibyte character.
66 returns the current multibyte character, of type mbchar_t. All the
70 return a pointer to the beginning of the current multibyte character.
119 struct mbchar cur; /* the current character:
120 const char *cur.ptr pointer to current character
122 size_t cur.bytes number of bytes of current character
123 bool cur.wc_valid true if wc is a valid wide character
124 wchar_t cur.wc if wc_valid: the current character
138 /* These characters are part of the basic character set. ISO C 9
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NamePrepTransform.java 57 1) Map -- For each character in the input, check if it has a mapping
71 [Unicode3.2] defines several bidirectional categories; each character
73 the requirements below, an "RandALCat character" is a character that
74 has Unicode bidirectional categories "R" or "AL"; an "LCat character"
75 is a character that has Unicode bidirectional category "L". Note
82 In any profile that specifies bidirectional character handling, all
87 2) If a string contains any RandALCat character, the string MUST NOT
88 contain any LCat character.
90 3) If a string contains any RandALCat character, a RandALCa
    [all...]
  /libcore/ojluni/src/main/java/java/io/
CharArrayWriter.java 31 * This class implements a character buffer that can be used as an Writer.
76 * Writes a character to the buffer.
130 * Writes the contents of the buffer to another character stream.
142 * Appends the specified character sequence to this writer.
151 * character sequence <tt>csq</tt>, the entire sequence may not be
153 * character buffer will return a subsequence whose content depends upon
157 * The character sequence to append. If <tt>csq</tt> is
172 * Appends a subsequence of the specified character sequence to this writer.
182 * The character sequence from which a subsequence will be
188 * The index of the first character in the subsequenc
    [all...]
PushbackReader.java 30 * A character-stream reader that allows characters to be pushed back into the
62 * Creates a new pushback reader with a one-character pushback buffer.
77 * Reads a single character.
79 * @return The character read, or -1 if the end of the stream has been
142 * Pushes back a single character by copying it to the front of the
143 * pushback buffer. After this method returns, the next character to be read
146 * @param c The int value representing a character to be pushed back
163 * character to be read will have the value <code>cbuf[off]</code>, the
164 * character after that will have the value <code>cbuf[off+1]</code>, and
167 * @param cbuf Character arra
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
CharSequence.java 40 * A <code>char</code> value represents a character in the <i>Basic
42 * href="Character.html#unicode">Unicode Character Representation</a> for details.
62 * Returns the length of this character sequence. The length is the number
76 * <a href="{@docRoot}/java/lang/Character.html#unicode">surrogate</a>, the surrogate
121 * href="{@docRoot}/java/lang/Character.html#unicode">surrogate code
166 * Character#toCodePoint Character.toCodePoint} and the result is passed
188 if (!Character.isHighSurrogate(c1) || i >= length) {
192 if (Character.isLowSurrogate(c2))
    [all...]
AbstractStringBuilder.java 45 * The value is used for character storage.
68 * Returns the length (character count).
134 * Attempts to reduce storage used for the character sequence.
147 * Sets the length of the character sequence.
148 * The sequence is changed to a new character sequence
150 * index <i>k</i> less than <code>newLength</code>, the character at
151 * index <i>k</i> in the new character sequence is the same as the
152 * character at index <i>k</i> in the old sequence if <i>k</i> is less
153 * than the length of the old character sequence; otherwise, it is the
154 * null character <code>'&#92;u0000'</code>
    [all...]
String.java 45 * The <code>String</code> class represents character strings. All
74 * specified by the {@link java.lang.Character Character} class.
93 * pairs</em> (see the section <a href="Character.html#unicode">Unicode
94 * Character Representations</a> in the <code>Character</code> class for
97 * character uses two positions in a <code>String</code>.
116 // The associated character storage is managed by the runtime. We only
145 * an empty character sequence. Note that use of this constructor is
168 * characters currently contained in the character array argument. Th
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
java.lang.Character.html 10 java.lang.Character
74 Class java.lang.<A HREF="../../../../reference/java/lang/Character.html" target="_top"><font size="+2"><code>Character</code></font></A>
86 <A NAME="java.lang.Character.compare_added(char, char)"></A>
87 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/java/lang/Character.html#compare(char, char)" target="_top"><code>compare</code></A>(<code>char,</nobr> char<nobr><nobr></code>)</nobr>
93 <A NAME="java.lang.Character.getName_added(int)"></A>
94 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/java/lang/Character.html#getName(int)" target="_top"><code>getName</code></A>(<code>int</code>)</nobr>
100 <A NAME="java.lang.Character.highSurrogate_added(int)"></A>
101 <nobr><code>char</code>&nbsp;<A HREF="../../../../reference/java/lang/Character.html#highSurrogate(int)" target="_top"><code>highSurrogate</code></A>(<code>int</code>)</nobr>
107 <A NAME="java.lang.Character.isAlphabetic_added(int)"></A
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 149 input->istream->consume = antlr38BitConsume; // Consume the next 8 bit character in the buffer
150 input->istream->_LA = antlr38BitLA; // Return the UTF32 character at offset n (1 based)
151 input->istream->index = antlr38BitIndex; // Current index (offset from first character
173 input->SetNewLineChar = antlr38BitSetNewLineChar; // Set the value of the newline trigger character
186 /* Install default line separator character (it can be replaced
264 input->nextChar = input->data; /* Input at first character */
310 /** \brief Consume the next character in an 8 bit input stream
323 /* Indicate one more character in this line
336 /* Increment to next character position
347 * \return Next input character in internal ANTLR3 encoding (UTF32
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 44 * This class provides services that tell if a character should have
46 * of a newline character. It also provides character to entity reference
55 /** Given a character, lookup a String to output (e.g. a decorated entity reference). */
72 /** The horizontal tab character, which the parser should always normalize. */
75 /** The linefeed character, which the parser should always normalize. */
78 /** The carriage return character, which the parser should always normalize. */
99 * the value is true if the character in an attribute value
106 * the value is true if the character in a text node
111 /** An array of bits to record if the character is in the set
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
charset.py 67 # Aliases for other commonly-used names for character sets. Map
112 """Add character set properties to the global registry.
114 charset is the input character set, and must be the canonical name of a
115 character set.
124 Optional output_charset is the character set that the output should be
127 is to output in the same character set as the input.
140 """Add a character set alias.
143 canonical is the character set's canonical name, e.g. iso-8859-1
151 charset is the canonical name of a character set. codecname is the name
161 """Map character sets to their email properties
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
charset.py 67 # Aliases for other commonly-used names for character sets. Map
112 """Add character set properties to the global registry.
114 charset is the input character set, and must be the canonical name of a
115 character set.
124 Optional output_charset is the character set that the output should be
127 is to output in the same character set as the input.
140 """Add a character set alias.
143 canonical is the character set's canonical name, e.g. iso-8859-1
151 charset is the canonical name of a character set. codecname is the name
161 """Map character sets to their email properties
    [all...]

Completed in 579 milliseconds

<<11121314151617181920>>