Home
last modified time | relevance | path

Searched refs:getFirst (Results 1 – 25 of 237) sorted by relevance

12345678910

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DAbstractMatcherTest.java44 matcher.cursor = m.instructions.getFirst(); in skipNonOpcodes()
63 matcher.cursor = m.instructions.getFirst(); in nextIs()
68 matcher.cursor = m.instructions.getFirst(); in nextIs()
82 matcher.cursor = m.instructions.getFirst(); in nextIsSwitch()
90 matcher.cursor = m.instructions.getFirst(); in nextIsSwitch()
98 matcher.cursor = m.instructions.getFirst(); in nextIsSwitch()
113 matcher.cursor = m.instructions.getFirst(); in nextIsVar()
118 matcher.cursor = m.instructions.getFirst(); in nextIsVar()
123 matcher.cursor = m.instructions.getFirst(); in nextIsVar()
129 matcher.cursor = m.instructions.getFirst(); in nextIsVar()
[all …]
/external/llvm/include/llvm/ADT/
DDenseMap.h40 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function
41 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function
107 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
108 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
112 P->getFirst() = EmptyKey; in clear()
234 TheBucket->getFirst() = getTombstoneKey(); in erase()
242 TheBucket->getFirst() = getTombstoneKey(); in erase()
292 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
293 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
295 P->getFirst().~KeyT(); in destroyAll()
[all …]
DDenseSet.h30 KeyT &getFirst() { return key; } in getFirst() function
31 const KeyT &getFirst() const { return key; } in getFirst() function
93 ValueT &operator*() { return I->getFirst(); }
94 ValueT *operator->() { return &I->getFirst(); }
115 const ValueT &operator*() { return I->getFirst(); }
116 const ValueT *operator->() { return &I->getFirst(); }
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DDenseMap.h40 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function
41 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function
108 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
109 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
113 P->getFirst() = EmptyKey; in clear()
249 TheBucket->getFirst() = getTombstoneKey(); in erase()
257 TheBucket->getFirst() = getTombstoneKey(); in erase()
307 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
308 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
310 P->getFirst().~KeyT(); in destroyAll()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DDenseMap.h43 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function
44 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function
126 P->getFirst() = EmptyKey; in clear()
130 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
131 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
135 P->getFirst() = EmptyKey; in clear()
278 TheBucket->getFirst() = getTombstoneKey(); in erase()
286 TheBucket->getFirst() = getTombstoneKey(); in erase()
336 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
337 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
[all …]
DDenseSet.h38 KeyT &getFirst() { return key; } in getFirst() function
39 const KeyT &getFirst() const { return key; } in getFirst() function
120 ValueT &operator*() { return I->getFirst(); }
121 const ValueT &operator*() const { return I->getFirst(); }
122 ValueT *operator->() { return &I->getFirst(); }
123 const ValueT *operator->() const { return &I->getFirst(); }
147 const ValueT &operator*() const { return I->getFirst(); }
148 const ValueT *operator->() const { return &I->getFirst(); }
/external/llvm-project/llvm/include/llvm/ADT/
DDenseMap.h43 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function
44 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function
125 P->getFirst() = EmptyKey; in clear()
129 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
130 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
134 P->getFirst() = EmptyKey; in clear()
307 TheBucket->getFirst() = getTombstoneKey(); in erase()
315 TheBucket->getFirst() = getTombstoneKey(); in erase()
365 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
366 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
[all …]
DDenseSet.h38 KeyT &getFirst() { return key; } in getFirst() function
39 const KeyT &getFirst() const { return key; } in getFirst() function
126 ValueT &operator*() { return I->getFirst(); }
127 const ValueT &operator*() const { return I->getFirst(); }
128 ValueT *operator->() { return &I->getFirst(); }
129 const ValueT *operator->() const { return &I->getFirst(); }
153 const ValueT &operator*() const { return I->getFirst(); }
154 const ValueT *operator->() const { return &I->getFirst(); }
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
DAbstractX500NameStyle.java71 hashCodeValue ^= rdns[i].getFirst().getType().hashCode(); in calculateHashCode()
72 hashCodeValue ^= calcHashCode(rdns[i].getFirst().getValue()); in calculateHashCode()
144 if (rdns1[0].getFirst() != null && rdns2[0].getFirst() != null) in areEqual()
146 … reverse = !rdns1[0].getFirst().getType().equals(rdns2[0].getFirst().getType()); // guess forward in areEqual()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/
DAbstractX500NameStyle.java73 hashCodeValue ^= rdns[i].getFirst().getType().hashCode(); in calculateHashCode()
74 hashCodeValue ^= calcHashCode(rdns[i].getFirst().getValue()); in calculateHashCode()
146 if (rdns1[0].getFirst() != null && rdns2[0].getFirst() != null) in areEqual()
148 … reverse = !rdns1[0].getFirst().getType().equals(rdns2[0].getFirst().getType()); // guess forward in areEqual()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x500/style/
DAbstractX500NameStyle.java73 hashCodeValue ^= rdns[i].getFirst().getType().hashCode(); in calculateHashCode()
74 hashCodeValue ^= calcHashCode(rdns[i].getFirst().getValue()); in calculateHashCode()
146 if (rdns1[0].getFirst() != null && rdns2[0].getFirst() != null) in areEqual()
148 … reverse = !rdns1[0].getFirst().getType().equals(rdns2[0].getFirst().getType()); // guess forward in areEqual()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderWithUnwrappedTest.java26 String getFirst() { in getFirst() method in BuilderWithUnwrappedTest.Name
224 assertEquals("John", person.getName().getFirst()); in testWithUnwrappedAndCreatorSingleParameterAtBeginning()
237 assertEquals("John", person.getName().getFirst()); in testWithUnwrappedAndCreatorSingleParameterInMiddle()
250 assertEquals("John", person.getName().getFirst()); in testWithUnwrappedAndCreatorSingleParameterAtEnd()
263 assertEquals("John", animal.getName().getFirst()); in testWithUnwrappedAndCreatorMultipleParametersAtBeginning()
276 assertEquals("John", animal.getName().getFirst()); in testWithUnwrappedAndCreatorMultipleParametersInMiddle()
289 assertEquals("John", animal.getName().getFirst()); in testWithUnwrappedAndCreatorMultipleParametersAtEnd()
302 assertEquals("John", animal.getName().getFirst()); in testWithUnwrappedNoCreator()
/external/deqp/framework/common/
DtcuEither.cpp98 TCU_CHECK(either.getFirst() == intValue); in Either_selfTest()
131 TCU_CHECK(either.getFirst() == intValue); in Either_selfTest()
168 TCU_CHECK(either.getFirst() == intValue); in Either_selfTest()
202 TCU_CHECK(either.getFirst().getValue() == testObject.getValue()); in Either_selfTest()
235 TCU_CHECK(either.getFirst().getValue() == testObject.getValue()); in Either_selfTest()
272 TCU_CHECK(either.getFirst().getValue() == testObject.getValue()); in Either_selfTest()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexWriterTest.java81 ClassDef dbClassDef = Iterables.getFirst(dexFile.getClasses(), null); in testAnnotationElementOrder()
83 Annotation dbAnnotation = Iterables.getFirst(dbClassDef.getAnnotations(), null); in testAnnotationElementOrder()
121 ClassDef dbClassDef = Iterables.getFirst(dexFile.getClasses(), null); in testEncodedAnnotationElementOrder()
123 Annotation dbAnnotation = Iterables.getFirst(dbClassDef.getAnnotations(), null); in testEncodedAnnotationElementOrder()
126 AnnotationElement element = Iterables.getFirst(dbAnnotation.getElements(), null); in testEncodedAnnotationElementOrder()
/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/
DRecognizeCommands.java109 if ((!previousResults.isEmpty()) && (currentTimeMS < previousResults.getFirst().first)) { in processLatestResults()
114 + previousResults.getFirst().first); in processLatestResults()
131 while (previousResults.getFirst().first < timeLimit) { in processLatestResults()
137 final long earliestTime = previousResults.getFirst().first; in processLatestResults()
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DGeneticAlgorithm.java154 pair = getCrossoverPolicy().crossover(pair.getFirst(), pair.getSecond()); in nextGeneration()
161 getMutationPolicy().mutate(pair.getFirst()), in nextGeneration()
166 nextGeneration.addChromosome(pair.getFirst()); in nextGeneration()
DChromosomePair.java49 public Chromosome getFirst() { in getFirst() method in ChromosomePair
67 return String.format("(%s,%s)", getFirst(), getSecond()); in toString()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/analysis/
Dside_effect_analysis.cc160 Value value = resource_info.getFirst(); in IsResourceOpReadOnly()
177 Value value = resource_info.getFirst(); in IsResourceOpAllocOnly()
302 auto op = entry.getFirst(); in AnalyzeFunction()
386 if (entry.getFirst() == kUnknownResourceId) continue; in AnalyzeRegion()
387 AddPredecessorsForAccess(entry.getFirst(), &op, read_only); in AnalyzeRegion()
389 unknown_access_indirectly_tracked_by_resource(entry.getFirst(), in AnalyzeRegion()
414 const auto& resource_id = resource.getFirst(); in AnalyzeRegion()
/external/nist-sip/java/gov/nist/javax/sip/header/
DAcceptLanguageList.java56 public AcceptLanguage getFirst() { in getFirst() method in AcceptLanguageList
57 AcceptLanguage retval = (AcceptLanguage) super.getFirst(); in getFirst()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DKotlinGeneratedFilter.java47 output.ignore(methodNode.instructions.getFirst(), in filter()
53 .getFirst(); i != null; i = i.getNext()) { in hasLineNumber()
DAnnotationGeneratedFilter.java32 output.ignore(methodNode.instructions.getFirst(), in filter()
40 output.ignore(methodNode.instructions.getFirst(), in filter()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeCollection.h25 virtual Optional<TypeIndex> getFirst() = 0;
35 Optional<TypeIndex> Next = getFirst(); in ForEachRecord()
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeCollection.h24 virtual Optional<TypeIndex> getFirst() = 0;
35 Optional<TypeIndex> Next = getFirst(); in ForEachRecord()
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
DListOrganizerTest.java64 assertEquals(obj1, list.getFirst()); in testMoveToBottom()
72 assertEquals(obj3, list.getFirst()); in testMoveToBottom()
/external/llvm-project/llvm/lib/Analysis/
DStackLifetime.cpp161 ProcessMarker(BlockMarkerSet.begin()->getFirst(), in collectMarkers()
235 const BasicBlock *BB = IT.getFirst(); in calculateLiveIntervals()
292 const BasicBlock *BB = IT.getFirst(); in dumpBlockLiveness()
355 Names.push_back(KV.getFirst()->getName()); in printInstrAlive()
376 if (SL.isAliveAfter(KV.getFirst(), Instr)) in printInfoComment()
377 Names.push_back(KV.getFirst()->getName()); in printInfoComment()

12345678910