/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
D | Selection.java | 12 public final class Selection { class 30 public Selection set(Selection other) { in set() 37 public Selection set(int anchor, int caret, boolean clickAfter) { in set() 45 Selection other2 = (Selection)other; in equals() 51 public boolean isLessThan(Selection other) { in isLessThan() 55 public Selection pin(String text) { in pin() 71 public Selection swap(Selection after) { in swap() 84 public Selection fixAfterReplace(int start, int end, int len) { in fixAfterReplace() 109 public Selection nextBound(BreakIterator breaker, in nextBound()
|
/external/llvm-project/clang/unittests/Tooling/ |
D | RefactoringActionRulesTest.cpp | 60 std::pair<SourceRange, int> Selection; in TEST_F() member in __anon30afe9f50111::TEST_F::ReplaceAWithB 63 ReplaceAWithB(std::pair<SourceRange, int> Selection) in TEST_F() argument 64 : Selection(Selection) {} in TEST_F() 68 std::pair<SourceRange, int> Selection) { in TEST_F() argument 69 return ReplaceAWithB(Selection); in TEST_F() 76 Selection.first.getBegin().getLocWithOffset(Selection.second); in TEST_F() 200 SourceRange Selection; in TEST_F() member in __anon30afe9f50111::TEST_F::FindOccurrences 203 FindOccurrences(SourceRange Selection) : Selection(Selection) {} in TEST_F() argument 206 SourceRange Selection) { in TEST_F() argument 207 return FindOccurrences(Selection); in TEST_F() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 48 mutable int Selection; variable 53 MCSymbol *COMDATSymbol, int Selection, SectionKind K, in MCSectionCOFF() argument 57 Selection(Selection) { in MCSectionCOFF() 72 int getSelection() const { return Selection; } in getSelection() 74 void setSelection(int Selection) const;
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 47 mutable int Selection; variable 53 MCSymbol *COMDATSymbol, int Selection, SectionKind K, in MCSectionCOFF() argument 56 COMDATSymbol(COMDATSymbol), Selection(Selection) { in MCSectionCOFF() 68 int getSelection() const { return Selection; } in getSelection() 70 void setSelection(int Selection) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 50 mutable int Selection; variable 55 MCSymbol *COMDATSymbol, int Selection, SectionKind K, in MCSectionCOFF() argument 59 Selection(Selection) { in MCSectionCOFF() 72 int getSelection() const { return Selection; } in getSelection() 74 void setSelection(int Selection) const;
|
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/ |
D | DumpAST.cpp | 36 bool prepare(const Selection &Inputs) override { in prepare() 43 Expected<Effect> apply(const Selection &Inputs) override; 62 llvm::Expected<Tweak::Effect> DumpAST::apply(const Selection &Inputs) { in REGISTER_TWEAK() 89 bool prepare(const Selection &Inputs) override { return true; } in prepare() 90 Expected<Effect> apply(const Selection &Inputs) override { in apply() 108 bool prepare(const Selection &Inputs) override { return true; } in prepare() 109 Expected<Effect> apply(const Selection &Inputs) override { in apply() 138 bool prepare(const Selection &Inputs) override { in prepare() 145 Expected<Effect> apply(const Selection &Inputs) override { in apply()
|
D | ObjCLocalizeStringLiteral.cpp | 42 bool prepare(const Selection &Inputs) override; 43 Expected<Tweak::Effect> apply(const Selection &Inputs) override; 52 bool ObjCLocalizeStringLiteral::prepare(const Selection &Inputs) { in REGISTER_TWEAK() 67 ObjCLocalizeStringLiteral::apply(const Selection &Inputs) { in apply()
|
D | RawStringLiteral.cpp | 41 bool prepare(const Selection &Inputs) override; 42 Expected<Effect> apply(const Selection &Inputs) override; 82 bool RawStringLiteral::prepare(const Selection &Inputs) { in prepare() 92 Expected<Tweak::Effect> RawStringLiteral::apply(const Selection &Inputs) { in apply()
|
D | SwapIfBranches.cpp | 39 bool prepare(const Selection &Inputs) override; 40 Expected<Effect> apply(const Selection &Inputs) override; 53 bool SwapIfBranches::prepare(const Selection &Inputs) { in REGISTER_TWEAK() 67 Expected<Tweak::Effect> SwapIfBranches::apply(const Selection &Inputs) { in apply()
|
D | ExpandAutoType.cpp | 43 bool prepare(const Selection &Inputs) override; 44 Expected<Effect> apply(const Selection &Inputs) override; 85 bool ExpandAutoType::prepare(const Selection& Inputs) { in prepare() 102 Expected<Tweak::Effect> ExpandAutoType::apply(const Selection& Inputs) { in apply()
|
D | ExpandMacro.cpp | 38 bool prepare(const Selection &Inputs) override; 39 Expected<Tweak::Effect> apply(const Selection &Inputs) override; 90 bool ExpandMacro::prepare(const Selection &Inputs) { in prepare() 108 Expected<Tweak::Effect> ExpandMacro::apply(const Selection &Inputs) { in apply()
|
D | AnnotateHighlightings.cpp | 27 bool prepare(const Selection &Inputs) override { return true; } in prepare() 28 Expected<Effect> apply(const Selection &Inputs) override; 38 Expected<Tweak::Effect> AnnotateHighlightings::apply(const Selection &Inputs) { in REGISTER_TWEAK()
|
D | RemoveUsingNamespace.cpp | 39 bool prepare(const Selection &Inputs) override; 40 Expected<Effect> apply(const Selection &Inputs) override; 107 bool RemoveUsingNamespace::prepare(const Selection &Inputs) { in prepare() 132 Expected<Tweak::Effect> RemoveUsingNamespace::apply(const Selection &Inputs) { in apply()
|
/external/llvm-project/clang-tools-extra/clangd/refactor/ |
D | Tweak.h | 49 struct Selection { struct 50 Selection(const SymbolIndex *Index, ParsedAST &AST, unsigned RangeBegin, 105 virtual bool prepare(const Selection &Sel) = 0; 108 virtual Expected<Effect> apply(const Selection &Sel) = 0; 130 prepareTweaks(const Tweak::Selection &S, 137 const Tweak::Selection &S);
|
D | Tweak.cpp | 48 Tweak::Selection::Selection(const SymbolIndex *Index, ParsedAST &AST, in Selection() function in clang::clangd::Tweak::Selection 59 prepareTweaks(const Tweak::Selection &S, in prepareTweaks() 78 const Tweak::Selection &S) { in prepareTweak()
|
/external/llvm/lib/MC/ |
D | MCSectionCOFF.cpp | 34 void MCSectionCOFF::setSelection(int Selection) const { in setSelection() 35 assert(Selection != 0 && "invalid COMDAT selection type"); in setSelection() 36 this->Selection = Selection; in setSelection() 71 switch (Selection) { in PrintSwitchToSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSectionCOFF.cpp | 31 void MCSectionCOFF::setSelection(int Selection) const { in setSelection() 32 assert(Selection != 0 && "invalid COMDAT selection type"); in setSelection() 33 this->Selection = Selection; in setSelection() 73 switch (Selection) { in PrintSwitchToSection()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCSectionCOFF.cpp | 31 void MCSectionCOFF::setSelection(int Selection) const { in setSelection() 32 assert(Selection != 0 && "invalid COMDAT selection type"); in setSelection() 33 this->Selection = Selection; in setSelection() 73 switch (Selection) { in PrintSwitchToSection()
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | debuginfo-properties.m | 10 @class Selection; 13 @property (nonatomic, retain) Selection* selection; 17 Selection *_selection; 32 Selection *_selection;
|
/external/llvm/test/MC/COFF/ |
D | seh-section-2.s | 61 # CHECK: Selection: Any (0x2) 78 # CHECK: Selection: Associative (0x5) 96 # CHECK: Selection: Associative (0x5) 114 # CHECK: Selection: Associative (0x5) 132 # CHECK: Selection: Associative (0x5) 150 # CHECK: Selection: Associative (0x5)
|
/external/llvm-project/llvm/test/MC/COFF/ |
D | seh-section-2.s | 61 # CHECK: Selection: Any (0x2) 78 # CHECK: Selection: Associative (0x5) 96 # CHECK: Selection: Associative (0x5) 114 # CHECK: Selection: Associative (0x5) 132 # CHECK: Selection: Associative (0x5) 150 # CHECK: Selection: Associative (0x5)
|
/external/clang/test/CodeGenObjC/ |
D | debuginfo-properties.m | 10 @class Selection; 13 @property (nonatomic, retain) Selection* selection; 30 Selection *_selection; 39 Selection *_selection;
|
/external/llvm-project/lld/test/COFF/ |
D | icf-associative.test | 47 Selection: IMAGE_COMDAT_SELECT_ANY 61 Selection: IMAGE_COMDAT_SELECT_ASSOCIATIVE 75 Selection: IMAGE_COMDAT_SELECT_ANY 89 Selection: IMAGE_COMDAT_SELECT_ASSOCIATIVE
|
/external/llvm-project/clang/lib/Tooling/Refactoring/ |
D | ASTSelectionRequirements.cpp | 23 Optional<SelectedASTNode> Selection = in evaluate() local 25 if (!Selection) in evaluate() 28 return std::move(*Selection); in evaluate()
|
/external/llvm-project/llvm/docs/GlobalISel/ |
D | Resources.rst | 6 * `Global Instruction Selection - A Proposal by Quentin Colombet @LLVMDevMeeting 2015 <https://www.… 7 * `Global Instruction Selection - Status by Quentin Colombet, Ahmed Bougacha, and Tim Northover @LL… 8 * `GlobalISel - LLVM's Latest Instruction Selection Framework by Diana Picus @FOSDEM17 <https://www…
|