HomeSort by relevance Sort by last modified time
    Searched defs:globalMap (Results 1 - 2 of 2) sorted by null

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 36 private static final Map<Object, Object> globalMap =
64 return globalMap.containsKey(key);
77 globalMap.put(key, value);
88 return globalMap.get(key);
  /dalvik/vm/compiler/codegen/x86/
LowerJump.cpp 30 LabelMap* globalMap;
105 otherwise, an entry is created in globalMap.
117 item->nextItem = globalMap;
118 globalMap = item;
170 \brief search globalMap to find the entry for the given label
174 LabelMap* ptr = globalMap;
231 \brief free memory allocated for globalMap
235 LabelMap* ptr = globalMap;
237 globalMap = ptr->nextItem;
239 ptr = globalMap;
    [all...]

Completed in 249 milliseconds