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

1 2 3

  /art/runtime/arch/x86/
jni_entrypoints_x86.S 23 subl LITERAL(8), %esp // align stack
28 addl LITERAL(12), %esp // restore the stack
30 cmpl LITERAL(0), %eax // check if returned method code is null
portable_entrypoints_x86.S 36 addl LITERAL(28), %ebx // reserve space for return addr, method*, ebx, and ebp in frame
37 andl LITERAL(0xFFFFFFF0), %ebx // align frame size to 16 bytes
38 subl LITERAL(12), %ebx // remove space for return address, ebx, and ebp
45 addl LITERAL(12), %esp // pop arguments to memcpy
53 cmpl LITERAL(68), 24(%esp) // test if result type char == 'D'
55 cmpl LITERAL(70), 24(%esp) // test if result type char == 'F'
72 subl LITERAL(8), %esp // Align stack
94 subl LITERAL(8), %esp // Align stack
117 subl LITERAL(12), %esp // Align stack
quick_entrypoints_x86.S 252 addl LITERAL(28), %ebx // reserve space for return addr, method*, ebx, and ebp in frame
253 andl LITERAL(0xFFFFFFF0), %ebx // align frame size to 16 bytes
254 subl LITERAL(12), %ebx // remove space for return address, ebx, and ebp
261 addl LITERAL(12), %esp // pop arguments to memcpy
262 movl LITERAL(0), (%esp) // store NULL for method*
272 cmpl LITERAL(68), 24(%esp) // test if result type char == 'D'
274 cmpl LITERAL(70), 24(%esp) // test if result type char == 'F'
407 addl LITERAL(12), %esp // pop arguments
417 addl LITERAL(12), %esp // pop arguments
428 subl LITERAL(12), %esp // alignment paddin
    [all...]
asm_support_x86.S 37 #define LITERAL(value) $value
57 #define LITERAL(value) $value
  /external/clang/bindings/python/tests/cindex/
test_token_kind.py 28 ok_(hasattr(TokenKind, 'LITERAL'))
29 literal = TokenKind.LITERAL
31 ok_(isinstance(literal, TokenKind))
37 eq_(t, TokenKind.LITERAL)
42 r = repr(TokenKind.LITERAL)
43 eq_(r, 'TokenKind.LITERAL')
  /external/chromium_org/tools/gn/
pattern.h 17 LITERAL, // Matches exactly the contents of the string.
24 literal(l) {
30 case LITERAL:
31 return literal.size();
43 // When type == LITERAL this is the text to match.
44 std::string literal; member in struct:Pattern::Subrange
64 // literal). This covers most patterns so we optimize for this.
file_template.cc 49 // We skip the LITERAL one since that varies each time.
63 if (t[subrange_i].type == Subrange::LITERAL)
64 (*output)[template_i].append(t[subrange_i].literal);
97 // Pick up everything from the previous spot to here as a literal.
100 t.container().push_back(Subrange(Subrange::LITERAL, str.substr(cur)));
104 Subrange(Subrange::LITERAL, str.substr(cur, next - cur)));
118 // If it's not a match, treat it like a one-char literal (this will be
119 // rare, so it's not worth the bother to add to the previous literal) so
121 t.container().push_back(Subrange(Subrange::LITERAL, "{"));
pattern.cc 12 // Set when the last subrange is a literal so we can just append when we
13 // find another literal.
30 // Backslash + anything else means that literal char.
32 out->push_back(Pattern::Subrange(Pattern::Subrange::LITERAL));
37 last_literal->literal.push_back(s[i]);
39 // Single backslash at end, use literal backslash.
40 last_literal->literal.push_back('\\');
45 out->push_back(Pattern::Subrange(Pattern::Subrange::LITERAL));
48 last_literal->literal.push_back(s[i]);
60 subranges_[1].type == Subrange::LITERAL);
    [all...]
file_template.h 19 LITERAL = 0,
26 literal(l) {
31 // When type_ == LITERAL, this specifies the literal.
32 std::string literal; member in struct:FileTemplate::Subrange
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Wbxml.java 33 static public final int LITERAL = 4;
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 118 TK(NUMBER, LITERAL) /* 34_be+ta */ \
120 TK(CHAR, LITERAL) /* 'char' */ \
121 TK(WCHAR, LITERAL) /* L'char' */ \
122 TK(CHAR16, LITERAL) /* u'char' */ \
123 TK(CHAR32, LITERAL) /* U'char' */ \
124 TK(OTHER, LITERAL) /* stray punctuation */ \
126 TK(STRING, LITERAL) /* "string" */ \
127 TK(WSTRING, LITERAL) /* L"string" */ \
128 TK(STRING16, LITERAL) /* u"string" */ \
129 TK(STRING32, LITERAL) /* U"string" */
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 118 TK(NUMBER, LITERAL) /* 34_be+ta */ \
120 TK(CHAR, LITERAL) /* 'char' */ \
121 TK(WCHAR, LITERAL) /* L'char' */ \
122 TK(CHAR16, LITERAL) /* u'char' */ \
123 TK(CHAR32, LITERAL) /* U'char' */ \
124 TK(OTHER, LITERAL) /* stray punctuation */ \
126 TK(STRING, LITERAL) /* "string" */ \
127 TK(WSTRING, LITERAL) /* L"string" */ \
128 TK(STRING16, LITERAL) /* u"string" */ \
129 TK(STRING32, LITERAL) /* U"string" */
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 118 TK(NUMBER, LITERAL) /* 34_be+ta */ \
120 TK(CHAR, LITERAL) /* 'char' */ \
121 TK(WCHAR, LITERAL) /* L'char' */ \
122 TK(CHAR16, LITERAL) /* u'char' */ \
123 TK(CHAR32, LITERAL) /* U'char' */ \
124 TK(OTHER, LITERAL) /* stray punctuation */ \
126 TK(STRING, LITERAL) /* "string" */ \
127 TK(WSTRING, LITERAL) /* L"string" */ \
128 TK(STRING16, LITERAL) /* u"string" */ \
129 TK(STRING32, LITERAL) /* U"string" */
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 118 TK(NUMBER, LITERAL) /* 34_be+ta */ \
120 TK(CHAR, LITERAL) /* 'char' */ \
121 TK(WCHAR, LITERAL) /* L'char' */ \
122 TK(CHAR16, LITERAL) /* u'char' */ \
123 TK(CHAR32, LITERAL) /* U'char' */ \
124 TK(OTHER, LITERAL) /* stray punctuation */ \
126 TK(STRING, LITERAL) /* "string" */ \
127 TK(WSTRING, LITERAL) /* L"string" */ \
128 TK(STRING16, LITERAL) /* u"string" */ \
129 TK(STRING32, LITERAL) /* U"string" */
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 31 r"\a": (LITERAL, ord("\a")),
32 r"\b": (LITERAL, ord("\b")),
33 r"\f": (LITERAL, ord("\f")),
34 r"\n": (LITERAL, ord("\n")),
35 r"\r": (LITERAL, ord("\r")),
36 r"\t": (LITERAL, ord("\t")),
37 r"\v": (LITERAL, ord("\v")),
38 r"\\": (LITERAL, ord("\\"))
146 UNITCODES = (ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY)
243 return LITERAL, int(escape, 16) & 0xf
711 def literal(literal, p=p, pappend=a): function in function:parse_template
    [all...]
sre_constants.py 48 LITERAL = "literal"
114 LITERAL, LITERAL_IGNORE,
161 LITERAL: LITERAL_IGNORE,
214 SRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix)
sre_compile.py 28 _LITERAL_CODES = set([LITERAL, NOT_LITERAL])
52 def fixup(literal, flags=flags):
53 return _sre.getlower(literal, flags)
188 elif op is LITERAL:
217 elif op is LITERAL:
244 # use literal/range
247 outappend((LITERAL, p))
313 elif op is LITERAL:
364 # this contains min/max pattern width, and an optional literal
369 # look for a literal prefi
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 31 r"\a": (LITERAL, ord("\a")),
32 r"\b": (LITERAL, ord("\b")),
33 r"\f": (LITERAL, ord("\f")),
34 r"\n": (LITERAL, ord("\n")),
35 r"\r": (LITERAL, ord("\r")),
36 r"\t": (LITERAL, ord("\t")),
37 r"\v": (LITERAL, ord("\v")),
38 r"\\": (LITERAL, ord("\\"))
146 UNITCODES = (ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY)
243 return LITERAL, int(escape, 16) & 0xf
711 def literal(literal, p=p, pappend=a): function in function:parse_template
    [all...]
sre_constants.py 48 LITERAL = "literal"
114 LITERAL, LITERAL_IGNORE,
161 LITERAL: LITERAL_IGNORE,
214 SRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix)
sre_compile.py 28 _LITERAL_CODES = set([LITERAL, NOT_LITERAL])
52 def fixup(literal, flags=flags):
53 return _sre.getlower(literal, flags)
188 elif op is LITERAL:
217 elif op is LITERAL:
244 # use literal/range
247 outappend((LITERAL, p))
313 elif op is LITERAL:
364 # this contains min/max pattern width, and an optional literal
369 # look for a literal prefi
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 58 * <tr> <td> \ </td> <td>Quote the following metacharacter (so {@code \.} matches a literal {@code .}).</td> </tr>
61 * <tr> <td> \\ </td> <td>A literal backslash.</td> </tr>
207 * {@link #LITERAL}. Attempts to use {@link #CANON_EQ} on Android will throw an exception.
244 * comments. Otherwise comments and whitespace are taken as literal
260 public static final int LITERAL = 0x10;
368 * @see #LITERAL
388 int supportedFlags = CASE_INSENSITIVE | COMMENTS | DOTALL | LITERAL | MULTILINE | UNICODE_CASE | UNIX_LINES;
403 if ((flags & LITERAL) != 0) {
432 * to use the {@link #LITERAL} flag instead.
  /external/elfutils/backends/
alpha_reloc.def 32 RELOC_TYPE (LITERAL, REL)
  /external/chromium_org/content/common/
sandbox_mac.h 35 LITERAL, // Escape for use in (literal ...) expression.
114 // home directory escaped appropriately for a (literal ...) expression.
120 // escaped e.g. used as part of a regex string or a literal.
140 // Escape |str_utf8| for use in a regex literal in a sandbox
  /external/srec/tools/cmd/
srecres2utd.pl 84 } elsif(/^LITERAL\[\s*0\]\s*:\s*\'(.*)\'/) {
87 } elsif(/^LITERAL\[\s*(\d+)\]\s+:\s+\'(.*)\'/) {
100 } elsif(/^LITERAL\[(\d+)\]\[(\d+)\]\s+:\s+\'(.*)\'/) {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 83 %token <str> NODETYPE PI FUNCTIONNAME LITERAL
273 PI '(' LITERAL ')'
349 LITERAL

Completed in 794 milliseconds

1 2 3