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

1 2

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_renames.py 15 LOOKUP = {}
25 LOOKUP[(module, old_attr)] = new_attr
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_renames.py 15 LOOKUP = {}
25 LOOKUP[(module, old_attr)] = new_attr
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 15 LOOKUP = {}
25 LOOKUP[(module, old_attr)] = new_attr
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_renames.py 15 LOOKUP = {}
25 LOOKUP[(module, old_attr)] = new_attr
69 new_attr = unicode(LOOKUP[(mod_name.value, attr_name.value)])
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 12 int[] lookup = new int[256]; local
24 lookup[c] = v;
27 return lookup;
30 private static final int[] LOOKUP = generateLookup();
184 x[0] ^= LOOKUP[c >>> 24];
190 y[0] ^= LOOKUP[c >>> 24];
  /external/v8/src/ast/
variables.h 76 bool IsLookupSlot() const { return location_ == VariableLocation::LOOKUP; }
scopes.cc 38 // FIXME(marja): fix the type of Lookup.
58 Variable* VariableMap::Lookup(const AstRawString* name) {
59 Entry* p = ZoneHashMap::Lookup(const_cast<AstRawString*>(name), name->hash());
413 Variable* result = variables_.Lookup(name);
425 // Check context slot lookup.
443 location = VariableLocation::LOOKUP;
475 // If we are backed by a scope info, try to lookup the variable there.
493 Variable* Scope::Lookup(const AstRawString* name) {
637 Variable* other_var = current->variables_.Lookup(name);
938 case VariableLocation::LOOKUP
    [all...]
prettyprinter.cc     [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/util/
SortedList.java 48 private static final int LOOKUP = 1 << 2;
486 // different items, we can use comparison and may avoid lookup
579 int index = findIndexOf(item, mData, 0, mMergedSize, LOOKUP);
583 index = findIndexOf(item, mOldData, mOldDataStart, mOldDataSize, LOOKUP);
589 return findIndexOf(item, mData, 0, mSize, LOOKUP);
    [all...]
  /external/v8/src/crankshaft/
hydrogen-environment-liveness.cc 109 if (marker->kind() == HEnvironmentMarker::LOOKUP) {
201 // Only collect bind/lookup instructions during the first pass.
215 // Finally, remove the HEnvironment{Bind,Lookup} markers.
  /toolchain/binutils/binutils-2.25/binutils/
readelf.c     [all...]
  /bionic/linker/
linker.cpp 770 TRACE_TYPE(LOOKUP, "SEARCH %s in %s@%p (gnu)",
775 TRACE_TYPE(LOOKUP, "NOT FOUND %s in %s@%p",
785 TRACE_TYPE(LOOKUP, "NOT FOUND %s in %s@%p",
791 // lookup versym for the version definition in this library
813 TRACE_TYPE(LOOKUP, "FOUND %s in %s (%p) %zd",
821 TRACE_TYPE(LOOKUP, "NOT FOUND %s in %s@%p",
832 TRACE_TYPE(LOOKUP, "SEARCH %s in %s@%p h=%x(elf) %zd",
853 TRACE_TYPE(LOOKUP, "FOUND %s in %s (%p) %zd",
862 TRACE_TYPE(LOOKUP, "NOT FOUND %s in %s@%p %x %zd",
1016 TRACE_TYPE(LOOKUP, "si %s sym %s s->st_value = %p,
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 483 case VariableLocation::LOOKUP:
516 case VariableLocation::LOOKUP:
    [all...]
  /external/v8/src/
globals.h 811 DYNAMIC, // always require dynamic lookup (we don't know
814 DYNAMIC_GLOBAL, // requires dynamic lookup, but we know that the
818 DYNAMIC_LOCAL // requires dynamic lookup, but we know that the
873 // context object on the heap, with lookup starting at the current
875 LOOKUP
  /external/v8/src/compiler/
ast-graph-builder.cc 751 Node* AstGraphBuilder::Environment::Lookup(Variable* variable) {
761 liveness_block()->Lookup(variable->index());
772 liveness_block()->Lookup(i);
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 841 case VariableLocation::LOOKUP: {
908 case VariableLocation::LOOKUP: {
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 783 case VariableLocation::LOOKUP: {
847 case VariableLocation::LOOKUP: {
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 796 case VariableLocation::LOOKUP: {
860 case VariableLocation::LOOKUP: {
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 780 case VariableLocation::LOOKUP: {
839 case VariableLocation::LOOKUP: {
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
ss_vncviewer 652 sout=`env LOOKUP="$host" \
655 @res = getaddrinfo($ENV{LOOKUP}, "daytime", AF_UNSPEC, SOCK_STREAM);
669 print "AF_INET6_ONLY: $ENV{LOOKUP}: $ip6\n";
    [all...]
  /external/v8/src/full-codegen/
full-codegen.cc 415 case VariableLocation::LOOKUP:
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 842 case VariableLocation::LOOKUP: {
908 case VariableLocation::LOOKUP: {
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 838 case VariableLocation::LOOKUP: {
905 case VariableLocation::LOOKUP: {
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 837 case VariableLocation::LOOKUP: {
904 case VariableLocation::LOOKUP: {
    [all...]

Completed in 762 milliseconds

1 2