Home
last modified time | relevance | path

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

12345678910

/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/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/markdown/tests/markdown-test/
Dordered-and-unordered-list.txt59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
/external/markdown/MarkdownTest/Tests_2004/
DOrdered and unordered lists.text59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
/external/protobuf/src/google/protobuf/stubs/
Dhash.h202 template <typename First, typename Second>
203 struct hash<pair<First, Second> > {
204 inline size_t operator()(const pair<First, Second>& key) const {
206 size_t second_hash = hash<Second>()(key.second);
215 inline size_t operator()(const pair<First, Second>& a,
216 const pair<First, Second>& b) const {
/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/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/clang/unittests/Sema/
DExternalSemaSourceTest.cpp212 NamespaceTypoProvider Second("AAB", "CCC"); in TEST() local
216 Installer->PushSource(&Second); in TEST()
223 ASSERT_LE(1, Second.CallCount); in TEST()
251 CompleteTypeDiagnoser Second(true); in TEST() local
254 Installer->PushSource(&Second); in TEST()
261 ASSERT_EQ(1, Second.CallCount); in TEST()
/external/clang/lib/Tooling/Core/
DReplacement.cpp381 const Replacements &Second) { in mergeReplacements() argument
382 if (First.empty() || Second.empty()) in mergeReplacements()
383 return First.empty() ? Second : First; in mergeReplacements()
394 for (auto FirstI = First.begin(), SecondI = Second.begin(); in mergeReplacements()
395 FirstI != First.end() || SecondI != Second.end();) { in mergeReplacements()
396 bool NextIsFirst = SecondI == Second.end() || in mergeReplacements()
403 while ((Merged.mergeSecond() && SecondI != Second.end()) || in mergeReplacements()
/external/markdown/tests/extensions-x-tables/
Dtables.txt4 First Header | Second Header
9 | First Header | Second Header |
/external/markdown/docs/extensions/
DTables.txt20 First Header | Second Header
31 <th>Second Header</th>
/external/curl/tests/data/
Dtest143623 Second
77 Second
/external/llvm/test/tools/llvm-objdump/
Dmacho-unwind-info-x86_64.test25 # CHECK: Second level indices:
26 # CHECK: Second level index[0]: offset in section=0x00000050, base function offset=0x00000d70
Dmacho-unwind-info-arm64.test25 # CHECK: Second level indices:
26 # CHECK: Second level index[0]: offset in section=0x00000050, base function offset=0x00007d64
/external/llvm/test/CodeGen/Mips/
Dinlineasmmemop.ll26 ; "D": Second word of a double word. This works for any memory element
42 ; Second word:
/external/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp225 User *Second = dyn_cast<User>(Pair.second); in runOnUse() local
226 assert((!First || Second) && "translated from user to non-user!?"); in runOnUse()
229 Second->setOperand(i, BoolToIntMap[First->getOperand(i)]); in runOnUse()
/external/clang/unittests/Tooling/
DRefactoringTest.cpp505 const Replacements &Second) { in mergeAndTestRewrite() argument
508 std::string InSequenceRewrite = applyAllReplacements(AfterFirst, Second); in mergeAndTestRewrite()
512 tooling::Replacements Merged = mergeReplacements(First, Second); in mergeAndTestRewrite()
521 const Replacements &Second) { in mergeAndTestRewrite() argument
523 applyAllReplacements(applyAllReplacements(Code, First), Second); in mergeAndTestRewrite()
524 tooling::Replacements Merged = mergeReplacements(First, Second); in mergeAndTestRewrite()
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-08-02.data2 Second occurrence: *anchor
Dspec-08-11.data2 Second occurrence: *anchor
Dspec-08-02.canonical6 ? !!str "Second occurrence"
Dspec-08-11.canonical6 ? !!str "Second occurrence"
/external/llvm/test/YAMLParser/
Dspec-08-11.test4 Second occurrence: *anchor
Dspec-08-02.test4 Second occurrence: *anchor
/external/testng/src/test/java/test/classgroup/
DSecond.java6 public class Second { class

12345678910