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

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ObjCTarget.java 50 String literal)
52 if (literal.startsWith("'\\u") ) {
53 literal = "0x" +literal.substring(3, 7);
55 int c = literal.charAt(1); // TJP
57 literal = "0x" + Integer.toHexString(c);
61 return literal;
64 /** Convert from an ANTLR string literal found in a grammar file to
65 * an equivalent string literal in the target language. For Java, this
67 * around the incoming literal. Just flip the quotes and replac
    [all...]
CTarget.java 168 String literal) {
170 if (literal.startsWith("'\\u")) {
171 literal = "0x" + literal.substring(3, 7);
173 int c = literal.charAt(1);
176 literal = "0x" + Integer.toHexString(c);
180 return literal;
183 /** Convert from an ANTLR string literal found in a grammar file to
184 * an equivalent string literal in the C target.
194 String literal) {
    [all...]
  /external/clang/test/Parser/
cxx0x-literal-operators.cpp 5 expected-error {{string literal after 'operator' must be '""'}} \
6 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
8 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
  /external/dbus/tools/
dbus-print-message.h 29 void print_message (DBusMessage *message, dbus_bool_t literal);
dbus-print-message.c 146 print_iter (DBusMessageIter *iter, dbus_bool_t literal, int depth)
163 if (!literal)
166 if (!literal)
175 if (!literal)
178 if (!literal)
187 if (!literal)
190 if (!literal)
282 print_iter (&subiter, literal, depth+1);
303 print_iter (&subiter, literal, depth+1);
322 print_iter (&subiter, literal, depth+1)
    [all...]
  /external/openssh/
mdoc2man.awk 36 literal=0
62 if(literal)
92 if(match(words[w+1],"-literal")) {
93 literal=1
99 literal=0
  /dalvik/dx/src/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
DecodedInstruction.java 60 * literal value argument; also used for special verification error
64 private final long literal; field in class:DecodedInstruction
102 int index, IndexType indexType, int target, long literal) {
116 this.literal = literal;
196 return literal;
200 * Gets the literal value, masked to be an int in size. This will
204 if (literal != (int) literal) {
205 throw new DexException("Literal out of range: " + Hex.u8(literal))
    [all...]
OneRegisterDecodedInstruction.java 32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
FiveRegisterDecodedInstruction.java 44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
ThreeRegisterDecodedInstruction.java 38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ZeroRegisterDecodedInstruction.java 29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
DecodedInstruction.java 60 * literal value argument; also used for special verification error
64 private final long literal; field in class:DecodedInstruction
102 int index, IndexType indexType, int target, long literal) {
116 this.literal = literal;
196 return literal;
200 * Gets the literal value, masked to be an int in size. This will
204 if (literal != (int) literal) {
205 throw new DexException("Literal out of range: " + Hex.u8(literal))
    [all...]
OneRegisterDecodedInstruction.java 32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
FiveRegisterDecodedInstruction.java 44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
  /dalvik/vm/mterp/x86-atom/
OP_CONST_16.S 19 * Code: Moves a literal to a register. Uses no substitutions.
23 * Description: Move the given literal value (right-zero-extended to 32
33 SET_VREG %edx rINST # vAA<- BBBB; literal
OP_RSUB_INT_LIT8.S 24 * signed extended 8-bit literal value.
32 FETCH_CCs 1, %edx # %edx<- +CC, sign-extended literal
  /external/v8/src/
preparse-data.h 47 // Logs the scope and some details of a function literal in the source.
54 // Logs a symbol creation of a literal or identifier.
55 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
56 virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
151 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
152 virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
168 virtual void LogAsciiSymbol(int start, Vector<const char> literal) {
170 int hash = vector_hash(literal);
171 LogSymbol(start, hash, true, Vector<const byte>::cast(literal));
174 virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) {
    [all...]
  /frameworks/base/include/androidfw/
KeycodeLabels.h 23 const char *literal; member in struct:KeycodeLabel

Completed in 211 milliseconds

1 2 3 4 5 6 7 8