/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | ObjectVector.java | 133 Object newMap[] = new Object[m_mapSize]; in addElement() local 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 137 m_map = newMap; in addElement() 157 Object newMap[] = new Object[m_mapSize]; in addElements() local 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 161 m_map = newMap; in addElements() 183 Object newMap[] = new Object[m_mapSize]; in addElements() local 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 187 m_map = newMap; in addElements() 210 Object newMap[] = new Object[m_mapSize]; in insertElementAt() local [all …]
|
D | IntVector.java | 133 int newMap[] = new int[m_mapSize]; in addElement() local 135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 137 m_map = newMap; in addElement() 157 int newMap[] = new int[m_mapSize]; in addElements() local 159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 161 m_map = newMap; in addElements() 183 int newMap[] = new int[m_mapSize]; in addElements() local 185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElements() 187 m_map = newMap; in addElements() 210 int newMap[] = new int[m_mapSize]; in insertElementAt() local [all …]
|
D | NodeVector.java | 130 int newMap[] = new int[m_mapSize]; in addElement() local 132 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 134 m_map = newMap; in addElement() 164 int newMap[] = new int[m_mapSize]; in push() local 166 System.arraycopy(m_map, 0, newMap, 0, ff + 1); in push() 168 m_map = newMap; in push() 258 int newMap[] = new int[m_mapSize]; in pushPair() local 260 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in pushPair() 262 m_map = newMap; in pushPair() 374 int newMap[] = new int[m_mapSize]; in insertElementAt() local [all …]
|
D | StringVector.java | 101 String newMap[] = new String[m_mapSize]; in addElement() local 103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 105 m_map = newMap; in addElement() 181 String newMap[] = new String[m_mapSize]; in push() local 183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() 185 m_map = newMap; in push()
|
D | SuballocatedIntVector.java | 167 int[][] newMap=new int[newsize][]; in addElement() local 168 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElement() 169 m_map=newMap; in addElement() 207 int[][] newMap=new int[newsize][]; in addElements() local 208 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in addElements() 209 m_map=newMap; in addElements() 265 int[][] newMap=new int[newsize][]; in insertElementAt() local 266 System.arraycopy(m_map, 0, newMap, 0, m_map.length); in insertElementAt() 267 m_map=newMap; in insertElementAt() 399 int[][] newMap=new int[newsize][]; in setElementAt() local [all …]
|
D | IntStack.java | 79 int newMap[] = new int[m_mapSize]; in push() local 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() 83 m_map = newMap; in push()
|
D | ObjectStack.java | 79 Object newMap[] = new Object[m_mapSize]; in push() local 81 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in push() 83 m_map = newMap; in push()
|
D | StringToIntTable.java | 100 String newMap[] = new String[m_mapSize]; in put() local 102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put() 104 m_map = newMap; in put()
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | OpMapVector.java | 89 int newMap[] = new int[m_mapSize]; in setElementAt() local 91 System.arraycopy(m_map, 0, newMap, 0, oldSize); in setElementAt() 93 m_map = newMap; in setElementAt() 107 int newMap[] = new int[size]; in setToSize() local 109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]); in setToSize() 112 m_map = newMap; in setToSize()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | DOMPatchSupport.cpp | 217 ResultMap newMap(newList.size()); in diff() local 225 for (size_t i = 0; i < newMap.size(); ++i) { in diff() 226 newMap[i].first = 0; in diff() 227 newMap[i].second = 0; in diff() 234 newMap[i].first = newList[i].get(); in diff() 235 newMap[i].second = i; in diff() 242 newMap[newIndex].first = newList[newIndex].get(); in diff() 243 newMap[newIndex].second = oldIndex; in diff() 266 newMap[newIt->value[0]] = std::make_pair(newList[newIt->value[0]].get(), oldIt->value[0]); in diff() 271 if (!newMap[i].first || newMap[i + 1].first) in diff() [all …]
|
D | InspectorDOMAgent.cpp | 659 OwnPtrWillBeRawPtr<NodeToIdMap> newMap = adoptPtrWillBeNoop(new NodeToIdMap); in pushNodePathToFrontend() local 660 danglingMap = newMap.get(); in pushNodePathToFrontend() 661 m_danglingNodeToIdMaps.append(newMap.release()); in pushNodePathToFrontend()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | NodeSet.java | 891 Node newMap[] = new Node[m_mapSize]; in addElement() local 893 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in addElement() 895 m_map = newMap; in addElement() 925 Node newMap[] = new Node[m_mapSize]; in push() local 927 System.arraycopy(m_map, 0, newMap, 0, ff + 1); in push() 929 m_map = newMap; in push() 1019 Node newMap[] = new Node[m_mapSize]; in pushPair() local 1021 System.arraycopy(m_map, 0, newMap, 0, m_firstFree); in pushPair() 1023 m_map = newMap; in pushPair() 1116 Node newMap[] = new Node[m_mapSize]; in insertElementAt() local [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | StringToIntTable.java | 107 String newMap[] = new String[m_mapSize]; in put() local 109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1); in put() 111 m_map = newMap; in put()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | ChunkedIntArray.java | 291 int[] newMap[] = new int[m_mapSize][]; in addElement() local 292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize); in addElement() 293 m_map = newMap; in addElement()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
D | CSSAnimations.h | 125 …llBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_active… in adoptActiveInterpolationsForAnimations() argument 126 …llBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_active… in adoptActiveInterpolationsForTransitions() argument
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalLoadingCacheTest.java | 252 Map<Object, Object> newMap = ImmutableMap.of(one, one); in testAsMap() local 253 assertEquals(newMap, map); in testAsMap() 254 assertEquals(newMap.entrySet(), map.entrySet()); in testAsMap() 255 assertEquals(newMap.keySet(), map.keySet()); in testAsMap()
|
/external/oauth/core/src/main/java/net/oauth/ |
D | OAuthMessage.java | 134 parameterMap = OAuth.newMap(parameters); in getParameterMap() 255 final Map<String, String> pMap = OAuth.newMap(parameters); in addRequiredParameters()
|
D | OAuth.java | 184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) { in newMap() method in OAuth
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | OAuthClient.java | 188 } else if (!OAuth.newMap(parameters).containsKey(OAuth.OAUTH_TOKEN)) { in getAccessToken()
|
/external/jsoncpp/src/lib_json/ |
D | json_internalmap.inl | 51 virtual ValueInternalMap *newMap() function in Json::DefaultValueMapAllocator 91 virtual ValueInternalMap *newMap() function in Json::DefaultValueMapAllocator
|
/external/chromium_org/ui/message_center/cocoa/ |
D | tray_view_controller.mm | 179 std::map<std::string, MCNotificationController*> newMap; 225 newMap.insert(std::make_pair((*it)->id(), notification)); 237 notificationsMap_ = newMap;
|
/external/chromium_org/third_party/jsoncpp/overrides/include/json/ |
D | value.h | 626 virtual ValueInternalMap *newMap() = 0;
|
/external/jsoncpp/chromium-overrides/include/json/ |
D | value.h | 626 virtual ValueInternalMap *newMap() = 0;
|
/external/jsoncpp/include/json/ |
D | value.h | 626 virtual ValueInternalMap *newMap() = 0;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 365 Map<Object, Object> newMap = ImmutableMap.of(one, four); in testRemovalListener_replaced() local 366 map.putAll(newMap); in testRemovalListener_replaced()
|