Home
last modified time | relevance | path

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

/external/proguard/src/proguard/evaluation/value/
DDetailedArrayReferenceValue.java81 public IntegerValue integerArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in integerArrayLoad() argument
83 Value value = arrayLoad(indexValue, valueFactory); in integerArrayLoad()
86 super.integerArrayLoad(indexValue, valueFactory); in integerArrayLoad()
90 public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in longArrayLoad() argument
92 Value value = arrayLoad(indexValue, valueFactory); in longArrayLoad()
95 super.longArrayLoad(indexValue, valueFactory); in longArrayLoad()
99 public FloatValue floatArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in floatArrayLoad() argument
101 Value value = arrayLoad(indexValue, valueFactory); in floatArrayLoad()
104 super.floatArrayLoad(indexValue, valueFactory); in floatArrayLoad()
108 public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in doubleArrayLoad() argument
[all …]
DReferenceValue.java78 public IntegerValue integerArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in integerArrayLoad() argument
88 public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in longArrayLoad() argument
98 public FloatValue floatArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in floatArrayLoad() argument
108 public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in doubleArrayLoad() argument
118 …public abstract ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFacto… in referenceArrayLoad() argument
125 public void arrayStore(IntegerValue indexValue, Value value) in arrayStore() argument
DTypedReferenceValue.java186 public ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in referenceArrayLoad() argument
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliterationRuleSet.java113 int[] indexValue = new int[n]; in freeze() local
116 indexValue[j] = r.getIndexValue(); in freeze()
121 if (indexValue[j] >= 0) { in freeze()
122 if (indexValue[j] == x) { in freeze()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DTransliterationRuleSet.java114 int[] indexValue = new int[n]; in freeze() local
117 indexValue[j] = r.getIndexValue(); in freeze()
122 if (indexValue[j] >= 0) { in freeze()
123 if (indexValue[j] == x) { 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/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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DIntTrieBuilder.java522 int indexValue = m_index_[ch]; in getDataBlock() local
523 if (indexValue > 0) { in getDataBlock()
524 return indexValue; in getDataBlock()
536 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock, in getDataBlock()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DIntTrieBuilder.java524 int indexValue = m_index_[ch]; in getDataBlock() local
525 if (indexValue > 0) { in getDataBlock()
526 return indexValue; in getDataBlock()
538 System.arraycopy(m_data_, Math.abs(indexValue), m_data_, newBlock, in 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.java875 IntegerValue indexValue = stack.ipop(); in visitTableSwitchInstruction() local
885 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitTableSwitchInstruction()
903 IntegerValue indexValue = stack.ipop(); in visitLookUpSwitchInstruction() local
913 int conditional = indexValue.equal(valueFactory.createIntegerValue( in visitLookUpSwitchInstruction()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineInputAssemblyTests.cpp75 static bool isRestartIndex (VkIndexType indexType, deUint32 indexValue);
259 bool InputAssemblyTest::isRestartIndex (VkIndexType indexType, deUint32 indexValue) in isRestartIndex() argument
262 return indexValue == s_restartIndex32; in isRestartIndex()
264 return indexValue == s_restartIndex16; in isRestartIndex()