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

1 2 3 4 5

  /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...]
  /frameworks/base/tools/makekeycodes/
makekeycodes.cpp 20 for (int i=0; KEYCODES[i].literal != NULL; i++) {
22 KEYCODES[i].literal, KEYCODES[i].value);
26 for (int i=0; FLAGS[i].literal != NULL; i++) {
28 FLAGS[i].literal, FLAGS[i].value);
  /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 61 * literal value argument; also used for special verification error
65 private final long literal; field in class:DecodedInstruction
103 int index, IndexType indexType, int target, long literal) {
117 this.literal = literal;
197 return literal;
201 * Gets the literal value, masked to be an int in size. This will
205 if (literal != (int) literal) {
206 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);
InstructionCodec.java 49 int literal = byte1(opcodeUnit); // should be zero local
52 0, literal);
84 int literal = (nibble3(opcodeUnit) << 28) >> 28; // sign-extend local
87 0, literal,
136 int literal = byte1(opcodeUnit); // should be zero local
140 baseAddress + target, literal);
152 // Note: We use the literal field to hold the decoded AA value.
154 int literal = byte1(opcodeUnit); local
158 0, literal);
211 int literal = (short) in.read(); // sign-exten local
230 long literal = (short) in.read(); \/\/ sign-extend local
249 short literal = (short) (insn.getLiteral() >> shift); local
251 out.write(codeUnit(opcode, insn.getA()), literal); local
303 int literal = (byte) byte1(bc); \/\/ sign-extend local
347 int literal = (short) in.read(); \/\/ sign-extend local
410 int literal = byte1(opcodeUnit); \/\/ should be zero local
428 int literal = byte1(opcodeUnit); \/\/ should be zero local
447 int literal = in.readInt(); local
455 int literal = insn.getLiteralInt(); local
590 long literal = in.readLong(); local
598 long literal = insn.getLiteral(); local
635 int literal = (short) in.read(); \/\/ sign-extend local
655 int literal = in.read(); local
    [all...]
  /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
OP_CONST.S 19 * Code: Move a literal to a register. Uses no substitutions.
23 * Description: Move the given literal value into the specified register
35 SET_VREG %ecx, rINST # vAA<- %ecx; literal
OP_CONST_4.S 19 * Code: Moves a literal to a register. Uses no substitutions.
23 * Description: Move the given literal value (right-zero-extended to 32
36 SET_VREG %edx, rINST # vA<- %edx; literal
OP_RSUB_INT.S 24 * signed extended 16-bit literal value and store the
35 FETCHs 1, %edx # %edx<- +CCCC, sign-extended literal
binopLit16.S 27 * sign extended 16-bit literal value and store the
38 FETCHs 1, %edx # %edx<- +CCCC, sign-extended literal
  /external/v8/src/
preparse-data.h 71 // Logs the scope and some details of a function literal in the source.
77 // Logs a symbol creation of a literal or identifier.
78 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
79 virtual void LogUC16Symbol(int start, Vector<const uc16> literal) { }
169 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
170 virtual void LogUC16Symbol(int start, Vector<const uc16> literal) { }
186 virtual void LogAsciiSymbol(int start, Vector<const char> literal) {
188 int hash = vector_hash(literal);
189 LogSymbol(start, hash, true, Vector<const byte>::cast(literal));
192 virtual void LogUC16Symbol(int start, Vector<const uc16> literal) {
    [all...]
  /frameworks/base/include/ui/
KeycodeLabels.h 23 const char *literal; member in struct:KeycodeLabel
  /external/v8/test/mjsunit/
object-literal-gc.js 30 // Test that the clearing of object literal when normalizing objects
35 // Build object-literal string.
36 var literal = "var o = { ";
39 if (i > 0) literal += ",";
40 literal += ("a" + i + ":" + i);
42 literal += "}";
44 // Create the object literal.
45 eval(literal);
large-object-literal.js 31 // Build object-literal string.
32 var literal = "var o = { ";
35 if (i > 0) literal += ",";
36 literal += ("a" + i + ":" + i);
38 literal += "}";
40 // Create the object literal.
41 eval(literal);
big-object-literal.js 36 // Build object-literal string.
37 var literal = "function f() { return ";
40 literal += "{a:";
43 literal += array_in_middle ? " [42.2]" : "{a:42.2}";
46 literal += "}";
48 literal += ", b:42, c:/asd/, x:'foo', y:[], z:new Object()";
52 literal += "; }";
54 // Create the object literal.
55 eval(literal);
big-array-literal.js 36 // Build object-literal string.
37 var literal = "function f() { return ";
40 literal += "[";
43 literal += array_in_middle ? " [42.2]" : "{a:42.2}";
46 literal += "]";
49 literal += "; }";
51 // Create the object literal.
52 eval(literal);
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
PhoneTypeChoiceRecognizerEngine.java 60 String literal = mSrec.getResult(result, Recognizer.KEY_LITERAL); local
62 String msg = "conf=" + conf + " lit=" + literal + " sem=" + semantic;
70 String literal = mSrec.getResult(0, Recognizer.KEY_LITERAL); local
72 String msg = "conf=" + conf + " lit=" + literal + " sem=" + semantic;
84 intent.putExtra(RecognizerEngine.SENTENCE_EXTRA, literal);

Completed in 266 milliseconds

1 2 3 4 5