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_android_system_OsConstants);
37 REGISTER(register_java_io_File);
38 REGISTER(register_java_io_FileDescriptor);
39 REGISTER(register_java_io_ObjectStreamClass);
40 REGISTER(register_java_lang_Character);
41 REGISTER(register_java_lang_Double);
42 REGISTER(register_java_lang_Float);
43 REGISTER(register_java_lang_Math)
    [all...]
  /external/smali/smali/src/main/antlr3/
smaliParser.g 155 REGISTER;
562 | REGISTER -> SIMPLE_NAME[$REGISTER]
725 : REGISTER (COMMA REGISTER)* -> ^(I_REGISTER_LIST[$start, "I_REGISTER_LIST"] REGISTER*)
729 : (startreg=REGISTER (DOTDOT endreg=REGISTER)?)? -> ^(I_REGISTER_RANGE[$start, "I_REGISTER_RANGE"] $startreg? $endreg?);
748 : PARAMETER_DIRECTIVE REGISTER (COMMA STRING_LITERAL)?
752 -> ^(I_PARAMETER[$start, "I_PARAMETER"] REGISTER STRING_LITERAL? ^(I_ANNOTATIONS annotation*)
    [all...]
smaliTreeWalker.g 96 private byte parseRegister_nibble(String register)
101 //register should be in the format "v12"
102 int val = Byte.parseByte(register.substring(1));
103 if (register.charAt(0) == 'p') {
107 throw new SemanticException(input, "The maximum allowed register in this context is list of registers is v15");
109 //the parser wouldn't have accepted a negative register, i.e. v-1, so we don't have to check for val<0;
114 private short parseRegister_byte(String register)
118 //register should be in the format "v123"
119 int val = Short.parseShort(register.substring(1));
120 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 54 // the register initialization to depend on the particular initialization
57 // "initialization". Also, the Register objects cannot be const as this
71 // Implementation of Register and FPURegister.
73 // Core register.
74 struct Register {
78 static const int kCpRegister = 23; // cp (s7) is the 23rd register.
92 static int ToAllocationIndex(Register reg) {
100 static Register FromAllocationIndex(int index) {
103 from_code(kCpRegister) : // Last index is always the 'cp' register.
128 static Register from_code(int 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/chromium_org/content/browser/service_worker/
service_worker_register_job.cc 94 DCHECK(phase_ == START || phase_ == REGISTER) << phase_;
100 DCHECK(phase_ >= REGISTER) << phase_;
124 case REGISTER:
128 DCHECK(phase_ == START || phase_ == REGISTER) << phase_;
148 // This function corresponds to the steps in Register following
204 SetPhase(REGISTER);
331 // TODO(falken): Register an continuation task to wait for NoControllees
service_worker_register_job.h 69 REGISTER,
  /external/smali/smali/src/main/java/org/jf/smali/
smaliTreeWalker.java 105 "POSITIVE_INTEGER_LITERAL", "PRIMITIVE_TYPE", "PROLOGUE_DIRECTIVE", "REGISTER",
309 public static final int REGISTER=201;
362 private byte parseRegister_nibble(String register)
367 //register should be in the format "v12"
368 int val = Byte.parseByte(register.substring(1));
369 if (register.charAt(0) == 'p') {
373 throw new SemanticException(input, "The maximum allowed register in this context is list of registers is v15");
375 //the parser wouldn't have accepted a negative register, i.e. v-1, so we don't have to check for val<0;
380 private short parseRegister_byte(String register)
384 //register should be in the format "v123
    [all...]
smaliParser.java 75 "POSITIVE_INTEGER_LITERAL", "PRIMITIVE_TYPE", "PROLOGUE_DIRECTIVE", "REGISTER",
279 public static final int REGISTER=201;
    [all...]
smaliFlexLexer.java     [all...]
  /external/elfutils/0.153/backends/
sparc_reloc.def 81 RELOC_TYPE (REGISTER, REL)
  /external/chromium_org/v8/src/
lithium.h 22 V(Register, REGISTER, 16) \
34 REGISTER,
92 // instruction start. Register allocator is free to assign the same register
98 // instruction. This means that register allocator will not reuse it's
99 // register for any other operand inside instruction.
241 // [virtual_register]: The virtual register ID for this operand.
488 void Register(int deoptimization_index,
708 // An input operand in register, stack slot or a constant operand
    [all...]
deoptimizer.cc 172 // Create the GC safe output frame information and register it for GC
788 Register fp_reg = JavaScriptFrame::fp_register();
819 case Translation::REGISTER:
902 Register fp_reg = JavaScriptFrame::fp_register();
    [all...]
lithium.cc 55 Register::AllocationIndexToString(reg_index);
92 case REGISTER:
93 stream->Add("[%s|R]", Register::AllocationIndexToString(index()));
597 // For ordinary values, tell the register allocator we need the value
deoptimizer.h 591 intptr_t registers_[Register::kNumRegisters];
687 V(REGISTER) \
729 void StoreRegister(Register reg);
730 void StoreInt32Register(Register reg);
731 void StoreUint32Register(Register reg);
  /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...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 214 Request request = createRequest(Request.REGISTER, userProfile, tag);
SipSessionGroup.java 728 public void register(int duration) { method in class:SipSessionGroup.SipSessionImpl
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
netmon.h     [all...]
  /external/chromium_org/third_party/sqlite/src/src/
parse.y 764 expr(A) ::= REGISTER(X). {
767 ** in the virtual machine. #N is the N-th register. */
    [all...]

Completed in 1342 milliseconds

1 2