Home
last modified time | relevance | path

Searched refs:valueArray (Results 1 – 11 of 11) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DWeakHashMapTest.java44 Object[] valueArray = new Object[100]; field in WeakHashMapTest
61 whm.put(keyArray[i], valueArray[i]); in test_Constructor()
64 whm.get(keyArray[i]) == valueArray[i]); in test_Constructor()
75 whm.put(keyArray[i], valueArray[i]); in test_ConstructorI()
78 whm.get(keyArray[i]) == valueArray[i]); in test_ConstructorI()
93 whm.put(keyArray[i], valueArray[i]); in test_ConstructorIF()
96 whm.get(keyArray[i]) == valueArray[i]); in test_ConstructorIF()
120 whm.put(keyArray[i], valueArray[i]); in test_clear()
136 whm.put(keyArray[i], valueArray[i]); in test_containsKeyLjava_lang_Object()
151 whm.put(keyArray[i], valueArray[i]); in test_containsValueLjava_lang_Object()
[all …]
/external/icu4c/layout/
DLookupTables.h64 LookupValue valueArray[ANY_NUMBER]; member
86 LookupValue valueArray[ANY_NUMBER]; member
DContextualGlyphSubstProc2.cpp85 newGlyph = SWAPW(lookupTable0->valueArray[glyphCode]); in lookup()
122 newGlyph = SWAPW(lookupTable8->valueArray[glyphCode - firstGlyph]); in lookup()
DStateTableProcessor2.cpp75 classCode = SWAPW(lookupTable0->valueArray[gid]); in process()
153 classCode = SWAPW(lookupTable8->valueArray[glyphCode - firstGlyph]); in process()
DSimpleArrayProcessor2.cpp44 TTGlyphID newGlyph = SWAPW(simpleArrayLookupTable->valueArray[LE_GET_GLYPH(thisGlyph)]); in process()
DSimpleArrayProcessor.cpp44 TTGlyphID newGlyph = SWAPW(simpleArrayLookupTable->valueArray[LE_GET_GLYPH(thisGlyph)]); in process()
DTrimmedArrayProcessor.cpp48 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]); in process()
DTrimmedArrayProcessor2.cpp48 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]); in process()
/external/skia/gm/rebaseline_server/static/
Dloader.js263 var valueArray = value.split(',');
265 $scope.toggleValuesInSet(valueArray, $scope[name]);
561 $scope.toggleValuesInSet = function(valueArray, set) { argument
562 var arrayLength = valueArray.length;
564 $scope.toggleValueInSet(valueArray[i], set);
/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySet.cpp82 CSSValue** valueArray = const_cast<CSSValue**>(this->valueArray()); in ImmutableStylePropertySet() local
85 valueArray[i] = properties[i].value(); in ImmutableStylePropertySet()
86 valueArray[i]->ref(); in ImmutableStylePropertySet()
92 CSSValue** valueArray = const_cast<CSSValue**>(this->valueArray()); in ~ImmutableStylePropertySet() local
94 valueArray[i]->deref(); in ~ImmutableStylePropertySet()
DStylePropertySet.h157 const CSSValue** valueArray() const;
166 inline const CSSValue** ImmutableStylePropertySet::valueArray() const in valueArray() function
278 return toImmutableStylePropertySet(m_propertySet).valueArray()[m_index]; in propertyValue()