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

1 2

  /libcore/luni/src/main/native/
Register.cpp 25 // DalvikVM calls this on startup, so we can statically register all our native methods.
35 #define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
36 REGISTER(register_java_io_Console);
37 REGISTER(register_java_io_File);
38 REGISTER(register_java_io_ObjectStreamClass);
39 REGISTER(register_java_lang_Character);
40 REGISTER(register_java_lang_Double);
41 REGISTER(register_java_lang_Float);
42 REGISTER(register_java_lang_Math);
43 REGISTER(register_java_lang_ProcessManager)
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliParser.g 155 REGISTER;
581 | REGISTER -> SIMPLE_NAME[$REGISTER]
743 : REGISTER (COMMA REGISTER)* -> ^(I_REGISTER_LIST[$start, "I_REGISTER_LIST"] REGISTER*)
747 : (startreg=REGISTER (DOTDOT endreg=REGISTER)?)? -> ^(I_REGISTER_RANGE[$start, "I_REGISTER_RANGE"] $startreg? $endreg?);
790 : LOCAL_DIRECTIVE REGISTER COMMA simple_name COLON nonvoid_type_descriptor (COMMA STRING_LITERAL)?
791 -> ^(I_LOCAL[$start, "I_LOCAL"] REGISTER simple_name nonvoid_type_descriptor STRING_LITERAL? I_ADDRESS[$start, Integer.toString($method::cu (…)
    [all...]
smaliTreeWalker.g 62 private byte parseRegister_nibble(String register, int totalMethodRegisters, int methodParameterRegisters)
64 //register should be in the format "v12"
65 int val = Byte.parseByte(register.substring(1));
66 if (register.charAt(0) == 'p') {
70 throw new SemanticException(input, "The maximum allowed register in this context is list of registers is v15");
72 //the parser wouldn't have accepted a negative register, i.e. v-1, so we don't have to check for val<0;
77 private short parseRegister_byte(String register, int totalMethodRegisters, int methodParameterRegisters)
79 //register should be in the format "v123"
80 int val = Short.parseShort(register.substring(1));
81 if (register.charAt(0) == 'p')
    [all...]
  /external/nist-sip/java/javax/sip/message/
Request.java 12 String REGISTER = "REGISTER";
  /external/chromium_org/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 {
77 static const int kCpRegister = 23; // cp (s7) is the 23rd register.
81 static int ToAllocationIndex(Register reg) {
89 static Register FromAllocationIndex(int index) {
92 from_code(kCpRegister) : // Last index is always the 'cp' register.
117 static Register from_code(int code)
    [all...]
  /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...]
  /art/runtime/
runtime.cc     [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/chromium_org/chrome_frame/
test_utils.h 22 // Helper class used to register different chrome frame DLLs while running
62 // register or unregister DLLs.
67 REGISTER,
86 // We need to register the chrome path provider only once per process. This
test_utils.cc 30 // How long to wait for DLLs to register or unregister themselves before killing
86 DCHECK(registration_operation == REGISTER ||
111 << "Failed to register or unregister DLL with command: "
117 LOG(ERROR) << "Timeout waiting to register or unregister DLL with "
124 if (registration_operation == REGISTER) {
141 DoRegistration(path, registration_type, REGISTER);
220 // Register paths needed by the ScopedChromeFrameRegistrar.
232 // Register paths needed by the ScopedChromeFrameRegistrar.
  /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);
  /external/chromium_org/v8/src/
lithium.h 42 V(Register, REGISTER) \
54 REGISTER,
113 // instruction start. Register allocator is free to assign the same register
119 // instruction. This means that register allocator will not reuse it's
120 // register for any other operand inside instruction.
258 // [virtual_register]: The virtual register ID for this operand.
427 explicit LRegister(int index) : LOperand(REGISTER, index) { }
606 void Register(int deoptimization_index
    [all...]
lithium.cc 71 Register::AllocationIndexToString(reg_index);
105 case REGISTER:
106 stream->Add("[%s|R]", Register::AllocationIndexToString(index()));
deoptimizer.h 602 intptr_t registers_[Register::kNumRegisters];
701 V(REGISTER) \
743 void StoreRegister(Register reg);
744 void StoreInt32Register(Register reg);
745 void StoreUint32Register(Register reg);
deoptimizer.cc 200 // Create the GC safe output frame information and register it for GC
802 case Translation::REGISTER:
885 Register fp_reg = JavaScriptFrame::fp_register();
    [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/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 214 Request request = createRequest(Request.REGISTER, userProfile, tag);

Completed in 1253 milliseconds

1 2