Home
last modified time | relevance | path

Searched refs:get2 (Results 1 – 25 of 64) sorted by relevance

123

/external/llvm-project/clang/test/PCH/
Dcxx20-template-args.cpp21 template<A a> constexpr const A &get2 = a; variable
23 constexpr const A &v2 = get2<A{}>;
24 constexpr const A &w2 = get2<A{1, &g, &A::n, "hello\0\0\0\0\0"}>;
34 constexpr const A &v3 = get2<A{.n = 0}>;
35 constexpr const A &x = get2<A{.m = 0}>;
/external/llvm-project/clang/test/CXX/basic/basic.link/
Dp6.cpp25 constexpr int *get2() { in get2() function
31 static_assert(get2() == same_entity_2, "failed to find previous decl");
/external/clang/test/CXX/basic/basic.link/
Dp6.cpp25 constexpr int *get2() { in get2() function
31 static_assert(get2() == same_entity_2, "failed to find previous decl");
/external/llvm-project/llvm/test/Transforms/Mem2Reg/
Ddbg-inline-scope-for-phi.ll11 ; int get2(int *p) { return *p; }
14 ; else return get2(p);
25 define i32 @get2(i32*) !dbg !15 {
53 %10 = call i32 @get2(i32* %9), !dbg !33
90 !15 = distinct !DISubprogram(name: "get2", scope: !1, file: !1, line: 10, type: !16, isLocal: false…
/external/igt-gpu-tools/tests/
Dkms_getfb.c202 struct drm_mode_fb_cmd get2 = { .fb_id = add.fb_id }; in test_duplicate_handles() local
205 do_ioctl(fd, DRM_IOCTL_MODE_GETFB, &get2); in test_duplicate_handles()
206 igt_assert_neq_u32(get1.handle, get2.handle); in test_duplicate_handles()
209 gem_close(fd, get2.handle); in test_duplicate_handles()
/external/clang/test/Analysis/
Dcxx-for-range.cpp68 MagicVector2 get2() { in get2() function
73 for (int y : get2()) { in testLoopOpaqueIterator()
/external/llvm-project/lldb/test/API/commands/frame/diagnose/inheritance/
Dmain.cpp12 virtual int get2() const { return m_a; } in get2() function in A
31 int get2() const override in get2() function in B
/external/openssh/
Ded25519.c112 ge25519 get1, get2; in crypto_sign_ed25519_open() local
127 ge25519_double_scalarmult_vartime(&get2, &get1, &schram, &ge25519_base, &scs); in crypto_sign_ed25519_open()
128 ge25519_pack(t2, &get2); in crypto_sign_ed25519_open()
/external/llvm-project/clang/test/Analysis/
Dcxx-for-range.cpp68 MagicVector2 get2() { in get2() function
73 for (int y : get2()) { in testLoopOpaqueIterator()
/external/libwebsockets/plugins/ssh-base/crypto/
Ded25519.c181 ge25519 get1, get2; in crypto_sign_ed25519_open() local
203 ge25519_double_scalarmult_vartime(&get2, &get1, &schram, &ge25519_base, &scs); in crypto_sign_ed25519_open()
204 ge25519_pack(t2, &get2); in crypto_sign_ed25519_open()
/external/python/cpython2/Lib/
DBastion.py125 def get2(name, get1=get1): function
131 return bastionclass(get2, name)
/external/cldr/tools/java/org/unicode/cldr/tool/
DChartDayPeriods.java78 String name = DayPeriodData.getName(locale, data.get2()); in writeContents()
88 .addCell(data.get2()) in writeContents()
DShowPathHeaderDescriptions.java185 return ((R2) k).get0() + "\t" + "*" + "\t" + ((R2) k).get2(); in getThree()
187 return "*" + "\t" + ((R2) k).get1() + "\t" + ((R2) k).get2(); in getThree()
189 return ((R3) k).get0() + "\t" + ((R3) k).get1() + "\t" + ((R3) k).get2(); in getThree()
DGenerateBirth.java122 String previous = entry.getValue().get2(); in main()
292 String previous = birthCurrentPrevious.get2(); in writeBirthValues()
342 olderOtherValue = fixNull(otherInfo.get2()); in writeBirth()
346 String olderValue = fixNull(info.get2()); in writeBirth()
DChartSubdivisionNames.java120 String locale = pair.get2(); in writeSubcharts()
128 String locale = pair.get2(); in writeSubcharts()
DChartLanguageMatching.java70 .addCell((100 - row.get2())) in writeContents()
DGenerateScriptMetadata.java41 Info i = s.get2(); in main()
DChartAnnotations.java158 String locale = pair.get2(); in writeSubcharts()
166 String locale = pair.get2(); in writeSubcharts()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAttributeValues.java430 errln(item.get0() + "; \t" + item.get2() + "; \t" + item.get1()); in oldTestSingleFile()
448 …count + "\t" + new AttributeValueSpec(entry1.get0(), entry1.get1(), entry1.get2(), "").toString()); in oldTestCoreValidity()
458 if ("deprecated".equals(item.get2())) in oldTestCoreValidity()
465 + "; \t" + item.get2()); in oldTestCoreValidity()
470 if (!"deprecated".equals(item.get2())) in oldTestCoreValidity()
477 + "; \t" + item.get2()); in oldTestCoreValidity()
DLanguageInfoTest.java50 Integer score = foo.get2(); in testGetData()
151 Integer score = foo.get2(); in testFallbacks()
DLocaleMatcherShim.java16 LANGUAGE_MATCHER_DATA.addDistance(foo.get0(), foo.get1(), foo.get2(), foo.get3()); in foo.get2()
DCheckLanguageCodeConverter.java172 + "\t" + entry.get2() // cldr in printLine()
185 return get0().equals(get2()) && get0().equals(get3()); in isStandard()
/external/python/pybind11/tests/
Dtest_methods_and_attributes.cpp103 const UserType &get2() const { return v2; } in get2() function
267 .def_property_readonly("ro_copy", &TestPropRVP::get2, rvp_copy) in TEST_SUBMODULE()
268 .def_property_readonly("ro_func", py::cpp_function(&TestPropRVP::get2, rvp_copy)) in TEST_SUBMODULE()
270 .def_property("rw_copy", &TestPropRVP::get2, &TestPropRVP::set2, rvp_copy) in TEST_SUBMODULE()
271 .def_property("rw_func", py::cpp_function(&TestPropRVP::get2, rvp_copy), &TestPropRVP::set2) in TEST_SUBMODULE()
/external/llvm-project/llvm/test/CodeGen/ARM/
D2011-01-19-MergedGlobalDbg.ll38 define zeroext i8 @get2(i8 zeroext %a) #0 !dbg !26 {
112 !26 = distinct !DISubprogram(name: "get2", linkageName: "get2", scope: !2, file: !2, line: 7, type:…
/external/llvm/test/CodeGen/ARM/
D2011-01-19-MergedGlobalDbg.ll42 define zeroext i8 @get2(i8 zeroext %a) nounwind optsize !dbg !6 {
87 !6 = distinct !DISubprogram(name: "get2", linkageName: "get2", line: 7, isLocal: false, isDefinitio…

123