HomeSort by relevance Sort by last modified time
    Searched refs:character (Results 51 - 75 of 575) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 107 int32_t character; local
109 sscanf_s(GetAttribute(*jt, "char")->Value(), "%x", &character);
111 sscanf(GetAttribute(*jt, "char")->Value(), "%x", &character);
114 ASSERT_EQ(cmap->GlyphId(character), glyph_id);
  /frameworks/base/core/java/android/util/
Patterns.java 499 char character = matchingRegion.charAt(i); local
501 if (character == '+' || Character.isDigit(character)) {
502 buffer.append(character);
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 4 // This international hostname has a non-ASCII character. It is represented
  /external/icu/icu4c/source/extra/uconv/
resfiles.mk 6 # the character separating components of a filename.
  /external/llvm/autoconf/m4/
c_printf_a.m4 2 # Determine if the printf() functions have the %a format character.
6 [AC_CACHE_CHECK([if printf has the %a format character],[llvm_cv_c_printf_a],
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Standard_Suite.py 186 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
187 """character - a character """
297 character._superclassnames = []
298 character._privpropdict = {
302 character._privelemdict = {
318 'character' : character,
327 'character' : character,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 57 getbaseclasses(character)
75 'cha ' : character,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Standard_Suite.py 186 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
187 """character - a character """
297 character._superclassnames = []
298 character._privpropdict = {
302 character._privelemdict = {
318 'character' : character,
327 'character' : character,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 57 getbaseclasses(character)
75 'cha ' : character,
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-widec2.s 3 % "n" in :Main in wide character format; the widening is with a 0xff, so it
b-widec.s 3 % "n" in :Main in wide character format; the widening is with a nil, so it
  /external/v8/src/parsing/
scanner-character-streams.cc 5 #include "src/parsing/scanner-character-streams.h"
62 void BufferedUtf16CharacterStream::PushBack(uc32 character) {
63 if (character == kEndOfInput) {
69 buffer_[--buffer_cursor_ - buffer_] = static_cast<uc16>(character);
73 SlowPushBack(static_cast<uc16>(character));
77 void BufferedUtf16CharacterStream::SlowPushBack(uc16 character) {
93 buffer_[--buffer_cursor_ - buffer_] = character;
200 // one character early (in the normal case), because we need to have at least
201 // two free spaces in the buffer to be sure that the next character will fit.
263 // Move the cursor back to point at the preceding UTF-8 character star
266 byte character = buffer[--*cursor]; local
281 byte character = buffer[(*cursor)++]; local
    [all...]
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/google-tv-pairing-protocol/java/src/com/google/polo/json/
XML.java 38 /** The Character '&'. */
39 public static final Character AMP = new Character('&');
41 /** The Character '''. */
42 public static final Character APOS = new Character('\'');
44 /** The Character '!'. */
45 public static final Character BANG = new Character('!');
47 /** The Character '='. *
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
HtmlEscapeFunction.java 81 throw new IllegalArgumentException("Unexpected escape character " + c + "[" + (int) c + "]");
  /external/llvm/test/MC/AArch64/
arm64-separator.s 3 ; ARM64 uses a multi-character statement separator, "%%". Check that we lex
  /external/skia/include/ports/
SkRemotableFontMgr.h 124 * Use the system fall-back to find a font for the given character.
125 * If no font can be found for the character, the return value's data id
135 SkUnichar character) const=0;
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
location_info_mixin.js 45 //NOTE: if we have pending character token make it's end location equal to the
55 //NOTE: if we have character token and it's location wasn't set in the _emitCurrentToken(),
58 //NOTE: we don't need to increment preprocessor position, since character token
59 //emission is always forced by the start of the next character token here.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lns/
lns-diag-1.l 6 .*:9: Error: junk at end of line, first unrecognized character is `1'
7 .*:12: Error: junk at end of line, first unrecognized character is `0'
  /external/libxml2/
triostr.h 72 TRIO_STRING_PUBLIC char *trio_index TRIO_PROTO((const char *string, int character));
73 TRIO_STRING_PUBLIC char *trio_index_last TRIO_PROTO((const char *string, int character));
102 TRIO_STRING_PUBLIC int trio_xstring_append_char TRIO_PROTO((trio_string_t *self, char character));
122 TRIO_STRING_PUBLIC char *trio_string_index TRIO_PROTO((trio_string_t *self, int character));
123 TRIO_STRING_PUBLIC char *trio_string_index_last TRIO_PROTO((trio_string_t *self, int character));
  /external/libchrome/base/strings/
pattern.cc 13 static bool IsWildcard(base_icu::UChar32 character) {
14 return character == '*' || character == '?';
30 // next character.
94 // the current string or the string with one character eaten.
  /packages/apps/Terminal/src/com/android/terminal/
Terminal.java 189 public boolean dispatchCharacter(int modifiers, int character) {
190 return nativeDispatchCharacter(mNativePtr, modifiers, character);
204 private static native boolean nativeDispatchCharacter(long ptr, int modifiers, int character);

Completed in 631 milliseconds

1 23 4 5 6 7 8 91011>>