/external/deqp/framework/common/ |
D | tcuEither.hpp | 39 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/clang/include/clang/Lex/ |
D | PPCallbacks.h | 326 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/google-fruit/include/fruit/impl/meta/ |
D | pair.h | 29 using Second = Second1; member 33 template <typename First, typename Second> 35 using type = Pair<First, Second>; 49 using type = typename P::Second;
|
D | triplet.h | 29 using Second = Second1; member 34 template <typename First, typename Second, typename Third> 36 using type = Triplet<First, Second, Third>;
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Ordered and unordered lists.text | 59 2. Second 73 2. Second 107 2. Second: 117 2. Second:
|
/external/markdown/tests/markdown-test/ |
D | ordered-and-unordered-list.txt | 59 2. Second 73 2. Second 107 2. Second: 117 2. Second:
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Ordered and unordered lists.text | 59 2. Second 73 2. Second 107 2. Second: 117 2. Second:
|
/external/syzkaller/vendor/cloud.google.com/go/compute/metadata/ |
D | metadata.go | 70 Timeout: 2 * time.Second, 71 KeepAlive: 30 * time.Second, 73 ResponseHeaderTimeout: 2 * time.Second, 79 Timeout: 2 * time.Second, 80 KeepAlive: 30 * time.Second, 233 timer := time.NewTimer(5 * time.Second) 279 const failedSubscribeSleep = time.Second * 5
|
/external/clang/test/CodeGenCXX/ |
D | mangle-ms-templates.cpp | 209 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/golang-protobuf/ptypes/ |
D | duration_test.go | 57 {&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)},
|
D | duration.go | 80 d := time.Duration(p.Seconds) * time.Second 81 if int64(d/time.Second) != p.Seconds {
|
/external/clang/lib/Tooling/ |
D | ArgumentsAdjusters.cpp | 78 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/clang/unittests/Sema/ |
D | ExternalSemaSourceTest.cpp | 256 NamespaceTypoProvider Second("AAB", "CCC"); in TEST() local 260 Installer->PushSource(&Second); in TEST() 267 ASSERT_LE(1, Second.CallCount); in TEST() 310 CompleteTypeDiagnoser Second(true); in TEST() local 313 Installer->PushSource(&Second); in TEST() 320 ASSERT_EQ(1, Second.CallCount); in TEST()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | hash.h | 408 template <typename First, typename Second> 409 struct hash<pair<First, Second> > { 410 inline size_t operator()(const pair<First, Second>& key) const { 412 size_t second_hash = hash<Second>()(key.second); 421 inline bool operator()(const pair<First, Second>& a, 422 const pair<First, Second>& b) const {
|
/external/markdown/tests/extensions-x-tables/ |
D | tables.txt | 4 First Header | Second Header 9 | First Header | Second Header |
|
/external/syzkaller/pkg/host/ |
D | host_linux.go | 86 _, err := osutil.Run(10*time.Second, cmd) 455 time.Sleep(5 * time.Second) // account for MSECS_MIN_AGE 483 time.Sleep(time.Second) 486 for time.Since(start) < 4*time.Second { 487 time.Sleep(time.Second) 498 time.Sleep(time.Second)
|
/external/clang/lib/Tooling/Core/ |
D | Replacement.cpp | 440 const Replacements &Second) { in mergeReplacements() argument 441 if (First.empty() || Second.empty()) in mergeReplacements() 442 return First.empty() ? Second : First; in mergeReplacements() 453 for (auto FirstI = First.begin(), SecondI = Second.begin(); in mergeReplacements() 454 FirstI != First.end() || SecondI != Second.end();) { in mergeReplacements() 455 bool NextIsFirst = SecondI == Second.end() || in mergeReplacements() 462 while ((Merged.mergeSecond() && SecondI != Second.end()) || in mergeReplacements()
|
/external/syzkaller/vendor/golang.org/x/oauth2/internal/ |
D | token.go | 69 return time.Now().Add(time.Duration(v) * time.Second) 72 return time.Now().Add(time.Duration(v) * time.Second) 229 token.Expiry = time.Now().Add(time.Duration(expires) * time.Second)
|
/external/syzkaller/pkg/rpctype/ |
D | rpc.go | 46 setupKeepAlive(conn, 10*time.Second) 67 if conn, err = net.DialTimeout("tcp", addr, 60*time.Second); err != nil { 88 cli.conn.SetDeadline(time.Now().Add(5 * 60 * time.Second))
|
/external/syzkaller/vm/vmimpl/ |
D | util.go | 31 SleepInterruptible(5 * time.Second) 33 if !SleepInterruptible(5 * time.Second) {
|
/external/syzkaller/vendor/github.com/golang/protobuf/ptypes/ |
D | duration.go | 80 d := time.Duration(p.Seconds) * time.Second 81 if int64(d/time.Second) != p.Seconds {
|
/external/markdown/docs/extensions/ |
D | Tables.txt | 20 First Header | Second Header 31 <th>Second Header</th>
|
/external/curl/tests/data/ |
D | test1436 | 23 Second 77 Second
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | BinaryStreamWriter.cpp | 76 WritableBinaryStreamRef Second = First.drop_front(Off); in split() local 79 BinaryStreamWriter W2{Second}; in split()
|
/external/syzkaller/vendor/github.com/googleapis/gax-go/ |
D | call_option.go | 118 bo.Initial = time.Second 124 bo.Max = 30 * time.Second
|