Home
last modified time | relevance | path

Searched refs:Second (Results 1 – 25 of 751) sorted by relevance

12345678910>>...31

/external/deqp/framework/common/
DtcuEither.hpp39 template<typename First, typename Second>
44 Either (const Second& second);
47 Either (const Either<First, Second>& other);
48 Either& operator= (const Either<First, Second>& other);
51 Either& operator= (const Second& second);
57 const Second& getSecond (void) const;
73 Second* m_second;
78 deUint8 m_data[sizeof(First) > sizeof(Second) ? sizeof(First) : sizeof(Second)];
86 template<typename Type, typename First, typename Second>
89 template<typename First, typename Second>
[all …]
/external/llvm-project/clang/include/clang/Lex/
DPPCallbacks.h377 std::unique_ptr<PPCallbacks> First, Second; variable
382 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
390 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
396 Second->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped()
402 Second->FileNotFound(FileName, RecoveryPath); in FileNotFound()
414 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, in InclusionDirective()
422 Second->EnteredSubmodule(M, ImportLoc, ForPragma); in EnteredSubmodule()
428 Second->LeftSubmodule(M, ImportLoc, ForPragma); in LeftSubmodule()
434 Second->moduleImport(ImportLoc, Path, Imported); in moduleImport()
439 Second->EndOfMainFile(); in EndOfMainFile()
[all …]
/external/clang/include/clang/Lex/
DPPCallbacks.h326 std::unique_ptr<PPCallbacks> First, Second; variable
331 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
337 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
344 Second->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped()
350 Second->FileNotFound(FileName, RecoveryPath); in FileNotFound()
361 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, in InclusionDirective()
369 Second->moduleImport(ImportLoc, Path, Imported); in moduleImport()
374 Second->EndOfMainFile(); in EndOfMainFile()
379 Second->Ident(Loc, str); in Ident()
385 Second->PragmaComment(Loc, Kind, Str); in PragmaComment()
[all …]
/external/rust/crates/futures-util/src/future/future/
Dflatten.rs15 Second { #[pin] f: Fut2 },
49 self.set(Self::Second { f }); in poll()
51 FlattenProj::Second { f } => { in poll()
85 self.set(Self::Second { f }); in poll_next()
87 FlattenProj::Second { f } => { in poll_next()
117 self.set(Self::Second { f }); in poll_ready()
119 FlattenProj::Second { f } => { in poll_ready()
130 FlattenProj::Second { f } => f.start_send(item), in start_send()
138 FlattenProj::Second { f } => f.poll_flush(cx), in poll_flush()
148 FlattenProj::Second { f } => f.poll_close(cx), in poll_close()
/external/perfetto/test/trace_processor/graphics/
Dgpu_counters.out2 11,5.000000,"Vertex / Second",0,"Number of vertices per second","25/22"
3 12,7.000000,"Fragment / Second",0,"Number of fragments per second","26/22"
6 21,10.000000,"Vertex / Second",0,"Number of vertices per second","25/22"
7 22,14.000000,"Fragment / Second",0,"Number of fragments per second","26/22"
10 31,15.000000,"Vertex / Second",0,"Number of vertices per second","25/22"
11 32,21.000000,"Fragment / Second",0,"Number of fragments per second","26/22"
/external/rust/crates/futures-util/src/future/try_future/
Dtry_flatten.rs15 Second { #[pin] f: Fut2 },
49 Ok(f) => self.set(Self::Second { f }), in poll()
56 TryFlattenProj::Second { f } => { in poll()
90 Ok(f) => self.set(Self::Second { f }), in poll_next()
97 TryFlattenProj::Second { f } => { in poll_next()
127 Ok(f) => self.set(Self::Second { f }), in poll_ready()
134 TryFlattenProj::Second { f } => { in poll_ready()
145 TryFlattenProj::Second { f } => f.start_send(item), in start_send()
153 TryFlattenProj::Second { f } => f.poll_flush(cx), in poll_flush()
163 TryFlattenProj::Second { f } => f.poll_close(cx), in poll_close()
Dtry_flatten_err.rs12 Second { #[pin] f: Fut2 },
46 Err(f) => self.set(Self::Second { f }), in poll()
53 TryFlattenErrProj::Second { f } => { in poll()
/external/protobuf/src/google/protobuf/stubs/
Dhash.h93 template <typename First, typename Second>
94 struct hash<std::pair<First, Second> > {
95 inline size_t operator()(const std::pair<First, Second>& key) const {
97 size_t second_hash = hash<Second>()(key.second);
106 inline bool operator()(const std::pair<First, Second>& a,
107 const std::pair<First, Second>& b) const {
/external/google-fruit/include/fruit/impl/meta/
Dpair.h29 using Second = Second1; member
33 template <typename First, typename Second>
35 using type = Pair<First, Second>;
49 using type = typename P::Second;
Dtriplet.h29 using Second = Second1; member
34 template <typename First, typename Second, typename Third>
36 using type = Triplet<First, Second, Third>;
/external/markdown/MarkdownTest/Tests_2004/
DOrdered and unordered lists.text59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
/external/markdown/tests/markdown-test/
Dordered-and-unordered-list.txt59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
/external/markdown/MarkdownTest/Tests_2007/
DOrdered and unordered lists.text59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
/external/clang/test/CodeGenCXX/
Dmangle-ms-templates.cpp209 struct Second {}; struct
226 void template_template_fun(Type<Thing<Second, true>, Second>) { } in template_template_fun() argument
233 void template_template_specialization<void (Type<Thing<Second, true>, Second>)>() { in template_template_specialization()
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-named-summaries/
Dmain.cpp17 struct Second struct
21 Second(int X, float Y) : in Second() argument
40 Second second(65,43.25); in main()
/external/llvm-project/clang/test/CodeGenCXX/
Dmangle-ms-templates.cpp233 struct Second {}; struct
250 void template_template_fun(Type<Thing<Second, true>, Second>) { } in template_template_fun() argument
257 void template_template_specialization<void (Type<Thing<Second, true>, Second>)>() { in template_template_specialization()
/external/llvm-project/compiler-rt/lib/xray/tests/unit/
Dsegmented_array_test.cpp16 s64 Second; member
19 TestData(s64 F, s64 S) : First(F), Second(S) {} in TestData()
23 *OS << "{ " << D.First << ", " << D.Second << " }"; in PrintTo()
49 ASSERT_EQ(data[0].Second, 1); in TEST()
63 ASSERT_EQ(data[I].Second, I + 1); in TEST()
73 ASSERT_EQ(data[0].Second, 1); in TEST()
105 ASSERT_EQ(D0.Second, 1); in TEST()
119 ASSERT_EQ(D0.Second, 1); in TEST()
126 ASSERT_EQ(I0->Second, 1); in TEST()
145 ASSERT_EQ(Back.Second, 1); in TEST()
[all …]
/external/llvm-project/clang/lib/Tooling/
DArgumentsAdjusters.cpp157 ArgumentsAdjuster Second) { in combineAdjusters() argument
159 return Second; in combineAdjusters()
160 if (!Second) in combineAdjusters()
162 return [First, Second](const CommandLineArguments &Args, StringRef File) { in combineAdjusters()
163 return Second(First(Args, File), File); in combineAdjusters()
/external/golang-protobuf/ptypes/
Dduration_test.go57 {&durpb.Duration{Seconds: 100, Nanos: 0}, true, true, 100 * time.Second},
58 {&durpb.Duration{Seconds: -100, Nanos: 0}, true, true, -100 * time.Second},
59 {&durpb.Duration{Seconds: 100, Nanos: 987}, true, true, 100*time.Second + 987},
60 {&durpb.Duration{Seconds: -100, Nanos: -987}, true, true, -(100*time.Second + 987)},
/external/dagger2/javatests/dagger/functional/producers/provisions/
DProvisions.java53 @Qualifier @interface Second {} annotation in Provisions
62 @Produces @Second static WrappedProducer<InjectedClass> secondProducer( in secondProducer()
69 @Second WrappedProducer<InjectedClass> producer2) { in output()
/external/clang/lib/Tooling/
DArgumentsAdjusters.cpp78 ArgumentsAdjuster Second) { in combineAdjusters() argument
79 return [First, Second](const CommandLineArguments &Args, StringRef File) { in combineAdjusters()
80 return Second(First(Args, File), File); in combineAdjusters()
/external/openscreen/third_party/abseil/src/absl/strings/internal/
Dstr_split_internal.h288 template <typename First, typename Second>
289 operator std::pair<First, Second>() const { // NOLINT(runtime/explicit)
298 return {First(first), Second(second)};
373 template <typename Container, typename First, typename Second>
374 struct ConvertToContainer<Container, std::pair<const First, Second>, true> {
381 it = Inserter<Container>::Insert(&m, First(sp), Second());
383 it->second = Second(sp);
/external/angle/third_party/abseil-cpp/absl/strings/internal/
Dstr_split_internal.h295 template <typename First, typename Second>
296 operator std::pair<First, Second>() const { // NOLINT(runtime/explicit)
305 return {First(first), Second(second)};
380 template <typename Container, typename First, typename Second>
381 struct ConvertToContainer<Container, std::pair<const First, Second>, true> {
392 it->second = Second(sv);
412 return ToIter(m->insert(std::make_pair(First(key), Second(""))));
/external/markdown/tests/extensions-x-tables/
Dtables.txt4 First Header | Second Header
9 | First Header | Second Header |
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DMisplacedWideningCastCheck.cpp168 static bool isFirstWider(BuiltinType::Kind First, BuiltinType::Kind Second) { in isFirstWider() argument
171 (SecondSize = relativeIntSizes(Second)) != 0) in isFirstWider()
174 (SecondSize = relativeCharSizes(Second)) != 0) in isFirstWider()
177 (SecondSize = relativeCharSizesW(Second)) != 0) in isFirstWider()

12345678910>>...31