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

  /sdk/layoutlib_api/sample/src/com/example/android/render/
ProjectCallback.java 80 Map<String, Integer> typeMap = mIdMap.get(type);
81 if (typeMap == null) {
82 typeMap = new HashMap<String, Integer>();
83 mIdMap.put(type, typeMap);
86 Integer value = typeMap.get(name);
88 value = typeMap.size() + 1;
89 typeMap.put(name, value);
  /sdk/ide_common/src/com/android/ide/common/resources/
ResourceResolver.java 348 Map<String, ResourceValue> typeMap;
352 typeMap = mProjectResources.get(resType);
353 ResourceValue item = typeMap.get(resName);
360 typeMap = mFrameworkResources.get(resType);
361 ResourceValue item = typeMap.get(resName);
387 Map<String, ResourceValue> typeMap = resourceRepository.get(resourceType);
388 if (typeMap != null) {
389 ResourceValue item = typeMap.get(resourceName);
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 473 Map typeMap = getAllInterfaces(type.clazz, null);
476 return findCommonInterfaces(typeMap, thisMap);
480 Map typeMap = getDeclaredInterfaces(type.clazz, null);
487 typeMap.remove(intf);
491 return findCommonInterfaces(typeMap, thisMap);
495 Map findCommonInterfaces(Map typeMap, Map alterMap) {
498 if (! typeMap.containsKey(i.next()))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResources.java 151 Map<String, ResourceValue> typeMap = resultMap.get(type);
152 if (typeMap == null) {
155 typeMap.putAll(entry.getValue());
  /external/collada/src/modules/STLDatabase/
daeSTLDatabase.cpp 205 typeMap.insert(make_pair(element->typeID(), element));
256 typeMapRange range = typeMap.equal_range(element->typeID());
259 typeMap.erase(iter);
360 typeMap.clear();
664 typeMapRange range = typeMap.equal_range(typeID);
  /external/collada/include/modules/
daeSTLDatabase.h 92 std::multimap<daeInt, daeElement*> typeMap; // type ID --> element lookup table
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 117 static Class[] typeMap = new Class[]{
734 for (int i = 1; i <= typeMap.length; i++) {
738 + " does not correspond " + typeMap[i-1] + "at "+i, value
739 .getClass().equals(typeMap[i-1]));
751 for (int i = 1; i <= typeMap.length; i++) {
760 for (int i = 1; i <= typeMap.length; i++) {
765 + " for "+name+" does not correspond " + typeMap[i-1] + "at "+i, value
766 .getClass().equals(typeMap[i-1]));
780 for (int i = 1; i <= typeMap.length; i++) {
    [all...]

Completed in 790 milliseconds