/external/clang/lib/StaticAnalyzer/Core/ |
ConstraintManager.cpp | 34 if (P.first && !P.second) 36 if (!P.first && P.second)
|
/external/clang/test/SemaCXX/ |
typo-correction-cxx11.cpp | 43 A *second; member in struct:NewTypoExprFromResolvingTypoAmbiguity::pair 57 auto &new_anotation = new_it.second; // expected-note {{'new_anotation' declared here}}
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
local_redundancy_elimination.cpp | 56 if (!candidate.second) { 58 context()->ReplaceAllUsesWith(inst->result_id(), candidate.first->second);
|
struct_cfg_analysis.h | 42 return it->second.containing_construct; 58 return it->second.containing_loop;
|
/external/deqp-deps/glslang/Test/ |
sample.frag.out | 6 0:39 move second child to first child (4-component vector of float)
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
map_unittest.cc | 25 ASSERT_EQ(123, map.find(key)->second); 38 ASSERT_EQ(123, map.find(key)->second);
|
/external/libcxx/test/std/containers/unord/unord.map/ |
local_iterators.pass.cpp | 56 assert(i->second == "one"); 63 assert(i->second == "two"); 70 assert(i->second == "three"); 77 assert(i->second == "four"); 104 assert(i->second == "one"); 111 assert(i->second == "two"); 118 assert(i->second == "three"); 125 assert(i->second == "four"); 152 assert(i->second == "one"); 159 assert(i->second == "two") [all...] |
/external/libcxx/test/std/containers/unord/unord.multimap/ |
reserve.pass.cpp | 34 assert(s.find(c.find(1)->second) != s.end()); 35 s.erase(s.find(c.find(1)->second)); 36 assert(s.find(next(c.find(1))->second) != s.end()); 42 assert(s.find(c.find(2)->second) != s.end()); 43 s.erase(s.find(c.find(2)->second)); 44 assert(s.find(next(c.find(2))->second) != s.end()); 46 assert(c.find(3)->second == "three"); 47 assert(c.find(4)->second == "four");
|
/external/libcxx/test/std/re/re.submatch/re.submatch.members/ |
compare_string_type.pass.cpp | 30 sm.second = s + 3; 43 sm.second = s + 3;
|
compare_value_type_ptr.pass.cpp | 29 sm.second = s + 3; 41 sm.second = s + 3;
|
operator_string.pass.cpp | 30 sm.second = s + 3; 43 sm.second = s + 3;
|
str.pass.cpp | 30 sm.second = s + 3; 43 sm.second = s + 3;
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/ |
assign_const_pair_U_V.pass.cpp | 33 assert(p2.second == 4); 49 assert(p.second.value == -42);
|
assign_rv_pair_U_V.pass.cpp | 42 assert(p2.second == 4); 57 assert(p.second.value == -42);
|
/external/libtextclassifier/annotator/ |
cached-features.cc | 103 selected_span.second -= extraction_span_.first; 112 /*read_mask_span=*/{0, selected_span.second}, output_features); 118 /*intended_span=*/{selected_span.second - 120 selected_span.second + config->num_tokens_after()}, 145 features_->begin() + copy_span.second * NumFeaturesPerToken()); 146 for (int i = copy_span.second; i < intended_span.second; ++i) { 161 for (int i = bag_span.first; i < bag_span.second; ++i) {
|
/external/libtextclassifier/lang_id/common/fel/ |
workspace.cc | 36 for (size_t index = 0; index < it.second.size(); ++index) { 37 const string &workspace_name = it.second[index];
|
/external/llvm/lib/CodeGen/ |
FuncletLayout.cpp | 54 return FuncletX->second < FuncletY->second;
|
/external/llvm/lib/MC/ |
StringTableBuilder.cpp | 103 return LHS->second < RHS->second; 131 P->second = Pos; 138 P->second = Start; 141 assert(P->second == StringTable.size() && 181 return I->second; 188 if (P.second) 190 return P.first->second;
|
/external/pdfium/core/fpdfapi/font/ |
cpdf_fontglobals.cpp | 26 return it->second ? it->second->GetFont(index) : nullptr;
|
/external/perfetto/src/traced/probes/filesystem/ |
range_tree.cc | 27 for (const DataType& x : lower->second) 38 if (map_.empty() || !lower->second.Add(value)) {
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowPairTest.java | 17 assertThat(pair.second).isEqualTo(1); 24 assertThat(p.second).isEqualTo("Bar");
|
/external/skia/include/effects/ |
SkMergeImageFilter.h | 19 static sk_sp<SkImageFilter> Make(sk_sp<SkImageFilter> first, sk_sp<SkImageFilter> second, 23 std::move(second),
|
/external/skia/src/core/ |
SkPathEffect.cpp | 139 (e.g. first(path) + second(path)) 140 The reference counts for first and second are both incremented in the constructor, 143 static sk_sp<SkPathEffect> Make(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) { 145 return second; 147 if (!second) { 150 return sk_sp<SkPathEffect>(new SkSumPathEffect(first, second)); 156 SkSumPathEffect(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) 157 : INHERITED(first, second) {} 183 sk_sp<SkPathEffect> SkPathEffect::MakeSum(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) { 184 return SkSumPathEffect::Make(std::move(first), std::move(second)); [all...] |
/external/skia/src/gpu/ |
GrSamplePatternDictionary.cpp | 34 if (insertResult.second) { 41 return insertResult.first->second; // Return the new sample pattern key.
|
/external/skqp/include/effects/ |
SkMergeImageFilter.h | 19 static sk_sp<SkImageFilter> Make(sk_sp<SkImageFilter> first, sk_sp<SkImageFilter> second, 23 std::move(second),
|