HomeSort by relevance Sort by last modified time
    Searched refs:LOOKUP (Results 1 - 15 of 15) sorted by null

  /development/samples/NFCDemo/src/com/example/android/nfc/record/
SmartPoster.java 170 private static final ImmutableMap<Byte, RecommendedAction> LOOKUP;
176 LOOKUP = builder.build();
207 if (RecommendedAction.LOOKUP.containsKey(action)) {
208 return RecommendedAction.LOOKUP.get(action);
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 205 private static final ImmutableMap<Byte, RecommendedAction> LOOKUP;
211 LOOKUP = builder.build();
241 if (RecommendedAction.LOOKUP.containsKey(action)) {
242 return RecommendedAction.LOOKUP.get(action);
  /external/v8/src/
full-codegen.cc 330 var->slot()->type() == Slot::LOOKUP) {
331 BAILOUT("call to a lookup slot");
403 if (type == Slot::LOOKUP) {
404 BAILOUT("CountOperation with lookup slot");
480 case Slot::LOOKUP:
499 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
516 if ((slot == NULL || slot->type() != Slot::LOOKUP) && var->is_global()) {
codegen.cc 308 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
326 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
prettyprinter.cc 305 case Slot::LOOKUP:
1011 case Slot::LOOKUP:
    [all...]
scopeinfo.cc 102 case Slot::LOOKUP:
138 // Contexts::Lookup() function. Thus record an empty symbol here so we
182 // - the ScopeInfo lookup routines can be reduced to perhaps a single lookup
434 int result = ContextSlotCache::Lookup(code, name, mode);
543 int ContextSlotCache::Lookup(Code* code,
scopes.cc 85 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), true);
95 Variable* VariableMap::Lookup(Handle<String> name) {
96 HashMap::Entry* p = HashMap::Lookup(name.location(), name->Hash(), false);
206 return variables_.Lookup(name);
210 Variable* Scope::Lookup(Handle<String> name) {
530 Variable* var = map->Lookup(name);
534 // Allocate it by giving it a dynamic lookup.
535 var->rewrite_ = new Slot(var, Slot::LOOKUP, -1);
541 // Lookup a variable starting with this scope. The result is either
560 // We found a variable. If this is not an inner lookup, we are done
    [all...]
ast.h 1008 // with lookup starting at the current context. index()
1010 LOOKUP
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 521 case Slot::LOOKUP:
540 ASSERT(dst->type() != Slot::LOOKUP); // Not yet implemented.
601 case Slot::LOOKUP: {
690 // Four cases: non-this global variables, lookup slots, all other
707 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
708 Comment cmnt(masm_, "Lookup slot");
    [all...]
codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 636 case Slot::LOOKUP:
654 ASSERT(dst->type() != Slot::LOOKUP); // Not yet implemented.
713 case Slot::LOOKUP: {
801 // Four cases: non-this global variables, lookup slots, all other
822 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
823 Comment cmnt(masm_, "Lookup slot");
    [all...]
codegen-ia32.cc     [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 638 case Slot::LOOKUP:
656 ASSERT(dst->type() != Slot::LOOKUP); // Not yet implemented.
716 case Slot::LOOKUP: {
804 // Four cases: non-this global variables, lookup slots, all other
824 } else if (slot != NULL && slot->type() == Slot::LOOKUP) {
825 Comment cmnt(masm_, "Lookup slot");
    [all...]
codegen-x64.cc     [all...]
  /bionic/linker/
linker.c 409 TRACE_TYPE(LOOKUP, "%5d SEARCH %s in %s@0x%08x %08x %d\n", pid,
424 TRACE_TYPE(LOOKUP, "%5d FOUND %s in %s (%08x) %d\n", pid,
509 TRACE_TYPE(LOOKUP, "%5d si %s sym %s s->st_value = 0x%08x, "
519 /* This is used by dl_sym(). It performs symbol lookup only within the
527 /* This is used by dl_sym(). It performs a global symbol lookup.
529 Elf32_Sym *lookup(const char *name, soinfo **found, soinfo *start) function
551 TRACE_TYPE(LOOKUP, "%5d %s s->st_value = 0x%08x, "
    [all...]

Completed in 562 milliseconds