Home
last modified time | relevance | path

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

/external/jmdns/src/javax/jmdns/impl/constants/
DDNSOptionCode.java57 public int indexValue() { in indexValue() method in DNSOptionCode
75 return this.name() + " index " + this.indexValue(); in toString()
DDNSOperationCode.java65 public int indexValue() { in indexValue() method in DNSOperationCode
83 return this.name() + " index " + this.indexValue(); in toString()
DDNSLabel.java58 public int indexValue() { in indexValue() method in DNSLabel
84 return this.name() + " index " + this.indexValue(); in toString()
DDNSResultCode.java120 public int indexValue() { in indexValue() method in DNSResultCode
146 return this.name() + " index " + this.indexValue(); in toString()
DDNSRecordClass.java91 public int indexValue() { in indexValue() method in DNSRecordClass
135 return this.name() + " index " + this.indexValue(); in toString()
DDNSRecordType.java276 public int indexValue() { in indexValue() method in DNSRecordType
309 return this.name() + " index " + this.indexValue(); in toString()
/external/chromium_org/third_party/icu/source/i18n/
Drbt_set.cpp302 int16_t* indexValue = (int16_t*) uprv_malloc( sizeof(int16_t) * (n > 0 ? n : 1) ); in freeze() local
304 if (indexValue == 0) { in freeze()
310 indexValue[j] = r->getIndexValue(); in freeze()
315 if (indexValue[j] >= 0) { in freeze()
316 if (indexValue[j] == x) { in freeze()
331 uprv_free(indexValue); in freeze()
/external/icu/icu4c/source/i18n/
Drbt_set.cpp302 int16_t* indexValue = (int16_t*) uprv_malloc( sizeof(int16_t) * (n > 0 ? n : 1) ); in freeze() local
304 if (indexValue == 0) { in freeze()
310 indexValue[j] = r->getIndexValue(); in freeze()
315 if (indexValue[j] >= 0) { in freeze()
316 if (indexValue[j] == x) { in freeze()
331 uprv_free(indexValue); in freeze()
/external/jmdns/src/javax/jmdns/impl/
DDNSEntry.java224 dout.writeShort(this.getRecordType().indexValue()); in toByteArray()
225 dout.writeShort(this.getRecordClass().indexValue()); in toByteArray()
269 …turn this.getKey().hashCode() + this.getRecordType().indexValue() + this.getRecordClass().indexVal… in hashCode()
DDNSOutgoing.java150 writeShort(question.getRecordType().indexValue()); in writeQuestion()
151 writeShort(question.getRecordClass().indexValue()); in writeQuestion()
156 writeShort(rec.getRecordType().indexValue()); in writeRecord()
157 …writeShort(rec.getRecordClass().indexValue() | ((rec.isUnique() && _out.isMulticast()) ? DNSRecord… in writeRecord()
/external/chromium_org/chrome/browser/ui/webui/options/
Dsearch_engine_manager_handler.cc295 base::StringValue indexValue(modelIndex); in CheckSearchEngineInfoValidity() local
297 validity, indexValue); in CheckSearchEngineInfoValidity()
/external/chromium_org/third_party/icu/source/common/
Dutrie.cpp195 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/icu/icu4c/source/common/
Dutrie.cpp195 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.java856 IntegerValue indexValue = stack.ipop(); in visitTableSwitchInstruction() local
866 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitTableSwitchInstruction()
884 IntegerValue indexValue = stack.ipop(); in visitLookUpSwitchInstruction() local
894 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitLookUpSwitchInstruction()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.cpp2103 String& indexValue = pathTokens[i]; in nodeForPath() local
2104 unsigned childNumber = indexValue.toUInt(&success); in nodeForPath()
2107 child = shadowRootForNode(node, indexValue); in nodeForPath()
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
DRenderer9.cpp1564 … unsigned int indexValue = static_cast<unsigned int>(static_cast<const T*>(indices)[i]) - minIndex; in drawPoints() local
1565 device->DrawPrimitive(D3DPT_POINTLIST, indexValue, 1); in drawPoints()