Home
last modified time | relevance | path

Searched refs:indexValue (Results 1 – 8 of 8) sorted by relevance

/external/chromium/third_party/icu/source/i18n/
Drbt_set.cpp301 int16_t* indexValue = (int16_t*) uprv_malloc( sizeof(int16_t) * (n > 0 ? n : 1) ); in freeze() local
303 if (indexValue == 0) { in freeze()
309 indexValue[j] = r->getIndexValue(); in freeze()
314 if (indexValue[j] >= 0) { in freeze()
315 if (indexValue[j] == x) { in freeze()
330 uprv_free(indexValue); in freeze()
/external/icu4c/i18n/
Drbt_set.cpp301 int16_t* indexValue = (int16_t*) uprv_malloc( sizeof(int16_t) * (n > 0 ? n : 1) ); in freeze() local
303 if (indexValue == 0) { in freeze()
309 indexValue[j] = r->getIndexValue(); in freeze()
314 if (indexValue[j] >= 0) { in freeze()
315 if (indexValue[j] == x) { in freeze()
330 uprv_free(indexValue); in freeze()
/external/webkit/WebCore/wml/
DWMLSelectElement.cpp415 Vector<unsigned> WMLSelectElement::parseIndexValueString(const String& indexValue) const in parseIndexValueString()
418 if (indexValue.isEmpty()) in parseIndexValueString()
422 indexValue.split(';', indexStrings); in parseIndexValueString()
/external/icu4c/common/
Dutrie.c195 int32_t indexValue, newBlock; in utrie_getDataBlock() local
198 indexValue=trie->index[c]; in utrie_getDataBlock()
199 if(indexValue>0) { in utrie_getDataBlock()
200 return indexValue; in utrie_getDataBlock()
212 uprv_memcpy(trie->data+newBlock, trie->data-indexValue, 4*UTRIE_DATA_BLOCK_LENGTH); in utrie_getDataBlock()
/external/chromium/third_party/icu/source/common/
Dutrie.c195 int32_t indexValue, newBlock; in utrie_getDataBlock() local
198 indexValue=trie->index[c]; in utrie_getDataBlock()
199 if(indexValue>0) { in utrie_getDataBlock()
200 return indexValue; in utrie_getDataBlock()
212 uprv_memcpy(trie->data+newBlock, trie->data-indexValue, 4*UTRIE_DATA_BLOCK_LENGTH); in utrie_getDataBlock()
/external/proguard/src/proguard/evaluation/
DProcessor.java858 IntegerValue indexValue = stack.ipop(); in visitTableSwitchInstruction() local
868 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitTableSwitchInstruction()
886 IntegerValue indexValue = stack.ipop(); in visitLookUpSwitchInstruction() local
896 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitLookUpSwitchInstruction()
/external/webkit/WebCore/accessibility/
DAccessibilityRenderObject.h235 … virtual VisiblePosition visiblePositionForIndex(unsigned indexValue, bool lastIndexOK) const;
DAccessibilityRenderObject.cpp2322 VisiblePosition AccessibilityRenderObject::visiblePositionForIndex(unsigned indexValue, bool lastIn… in visiblePositionForIndex() argument
2328 if (indexValue >= text().length()) { in visiblePositionForIndex()
2329 if (!lastIndexOK || indexValue > text().length()) in visiblePositionForIndex()
2332 VisiblePosition position = visiblePositionForIndex(indexValue); in visiblePositionForIndex()