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

1 2

  /libcore/luni/src/main/native/
Register.cpp 24 // DalvikVM calls this on startup, so we can statically register all our native methods.
36 #define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
37 REGISTER(register_java_io_Console);
38 REGISTER(register_java_io_File);
39 REGISTER(register_java_io_ObjectStreamClass);
40 REGISTER(register_java_lang_Character);
41 REGISTER(register_java_lang_Math);
42 REGISTER(register_java_lang_ProcessManager);
43 REGISTER(register_java_lang_RealToString);
44 REGISTER(register_java_lang_StrictMath)
    [all...]
  /external/smali/smali/src/main/antlr3/org/jf/smali/
smaliParser.g 436 | REGISTER -> SIMPLE_NAME[$REGISTER]
597 : REGISTER (COMMA REGISTER)* -> ^(I_REGISTER_LIST[$start, "I_REGISTER_LIST"] REGISTER*)
601 : REGISTER (DOTDOT REGISTER)? -> ^(I_REGISTER_RANGE[$start, "I_REGISTER_RANGE"] REGISTER REGISTER?);
644 : LOCAL_DIRECTIVE REGISTER COMMA simple_name COLON nonvoid_type_descriptor (COMMA STRING_LITERAL)
    [all...]
smaliTreeWalker.g 56 private byte parseRegister_nibble(String register, int totalMethodRegisters, int methodParameterRegisters)
58 //register should be in the format "v12"
59 int val = Byte.parseByte(register.substring(1));
60 if (register.charAt(0) == 'p') {
64 throw new SemanticException(input, "The maximum allowed register in this context is list of registers is v15");
66 //the parser wouldn't have accepted a negative register, i.e. v-1, so we don't have to check for val<0;
71 private short parseRegister_byte(String register, int totalMethodRegisters, int methodParameterRegisters)
73 //register should be in the format "v123"
74 int val = Short.parseShort(register.substring(1));
75 if (register.charAt(0) == 'p')
    [all...]
smaliLexer.g 305 REGISTER
  /external/nist-sip/java/javax/sip/message/
Request.java 12 String REGISTER = "REGISTER";
  /external/v8/src/mips/
assembler-mips.h 53 // the register initialization to depend on the particular initialization
56 // "initialization". Also, the Register objects cannot be const as this
70 // Implementation of Register and FPURegister.
72 // Core register.
73 struct Register {
78 static int ToAllocationIndex(Register reg) {
82 static Register FromAllocationIndex(int index) {
108 static Register from_code(int code) {
109 Register r = { code };
114 bool is(Register reg) const { return code_ == reg.code_;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 51 public static final String REGISTER = Request.REGISTER;
Parser.java 86 || token.getTokenType() == REGISTER
TokenTypes.java 41 public static final int REGISTER = START + 4;
Lexer.java 99 addKeyword(TokenNames.REGISTER, TokenTypes.REGISTER);
  /external/elfutils/backends/
sparc_reloc.def 80 RELOC_TYPE (REGISTER, 0)
  /external/v8/src/
lithium.cc 49 Register::AllocationIndexToString(unalloc->fixed_index());
85 case REGISTER:
86 stream->Add("[%s|R]", Register::AllocationIndexToString(index()));
110 DEFINE_OPERAND_CACHE(LRegister, REGISTER)
lithium.h 46 REGISTER,
58 bool IsRegister() const { return kind() == REGISTER; }
102 // instruction start. Register allocator is free to assign the same register
108 // instruction. This means that register allocator will not reuse it's
109 // register for any other operand inside instruction.
357 explicit LRegister(int index) : LOperand(REGISTER, index) { }
491 void Register(int deoptimization_index,
deoptimizer.cc 161 // Create the GC safe output frame information and register it for GC
703 case Translation::REGISTER: {
890 case Translation::REGISTER: {
    [all...]
deoptimizer.h 486 intptr_t registers_[Register::kNumRegisters];
558 REGISTER,
586 void StoreRegister(Register reg);
587 void StoreInt32Register(Register reg);
lithium-allocator.cc 212 // We cannot spill a live range that has a use requiring a register
361 // start positions. This is needed for the correctness of the register
609 return -index - 1 - Register::kNumAllocatableRegisters;
622 operand->ConvertTo(LOperand::REGISTER, reg_index);
641 ASSERT(index < Register::kNumAllocatableRegisters);
950 for (int i = 0; i < Register::kNumAllocatableRegisters; ++i) {
    [all...]
objects.cc     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 128 putName(Request.REGISTER);
332 if (method.compareTo(Request.REGISTER) == 0 || method.compareTo(Request.INVITE) == 0) {
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliFlexLexer.java     [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 216 Request request = createRequest(Request.REGISTER, userProfile, tag);
SipSessionGroup.java 704 public void register(int duration) { method in class:SipSessionGroup.SipSessionImpl
    [all...]
  /prebuilts/tools/common/osgi/
osgi.jar 
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 

Completed in 297 milliseconds

1 2