HomeSort by: relevance | last modified time | path
    Searched refs:Selection (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionCOFF.h 45 /// This is the Selection field for the section symbol, if it is a COMDAT
47 mutable int Selection;
53 MCSymbol *COMDATSymbol, int Selection, SectionKind K,
56 COMDATSymbol(COMDATSymbol), Selection(Selection) {
68 int getSelection() const { return Selection; }
70 void setSelection(int Selection) const;
MCContext.h 598 int Selection,
  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
20-cert-select.conf 5 test-0 = 0-ECDSA CipherString Selection
6 test-1 = 1-ECDSA CipherString Selection
7 test-2 = 2-ECDSA CipherString Selection
8 test-3 = 3-Ed25519 CipherString and Signature Algorithm Selection
9 test-4 = 4-Ed448 CipherString and Signature Algorithm Selection
11 test-6 = 6-RSA CipherString Selection
12 test-7 = 7-RSA-PSS Certificate CipherString Selection
13 test-8 = 8-P-256 CipherString and Signature Algorithm Selection
14 test-9 = 9-Ed25519 CipherString and Curves Selection
15 test-10 = 10-Ed448 CipherString and Curves Selection
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSectionCOFF.cpp 31 void MCSectionCOFF::setSelection(int Selection) const {
32 assert(Selection != 0 && "invalid COMDAT selection type");
33 this->Selection = Selection;
73 switch (Selection) {
96 assert(false && "unsupported COFF selection type");
WinCOFFObjectWriter.cpp 323 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
553 W.OS << char(i.Aux.SectionDefinition.Selection);
931 return Section.Symbol->Aux[0].Aux.SectionDefinition.Selection ==
1070 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
MCContext.cpp 616 StringRef COMDATSymName, int Selection,
627 COFFSectionKey T{Section, COMDATSymName, Selection, UniqueID};
639 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelectionRequirements.cpp 17 // FIXME: Memoize so that selection is evaluated only once.
23 Optional<SelectedASTNode> Selection =
25 if (!Selection)
28 return std::move(*Selection);
33 // FIXME: Memoize so that selection is evaluated only once.
ASTSelection.cpp 35 /// of the cursor or overlap with the selection range.
39 ASTSelectionFinder(SourceRange Selection, FileID TargetFile,
42 SelectionBegin(Selection.getBegin()),
43 SelectionEnd(Selection.getBegin() == Selection.getEnd()
45 : Selection.getEnd()),
65 // a meaningful selection tree.
105 // Stop early when we've reached a declaration after the selection.
147 // Do a quick check when the selection is of length 0.
159 // Ensure there's at least some overlap with the 'start'/'end' selection
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/
Random.h 35 std::remove_const_t<T> Selection = {};
46 return Selection;
67 Selection = Item;
  /src/external/mit/xorg/lib/libXfixes/
Makefile 11 SRCS= Cursor.c Disconnect.c Region.c SaveSet.c Selection.c Xfixes.c
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
ClangRefactor.cpp 52 /// Stores the parsed `-selection` argument.
57 /// Parse the `-selection` argument.
62 /// Prints any additional state associated with the selection argument to
79 /// Runs the give refactoring function for each specified selection.
87 /// Stores the parsed -selection=test:<filename> option.
100 /// Testing support: invokes the selection action for each selection range in
111 /// Stores the parsed -selection=filename:line:column[-line:column] option.
122 llvm::errs() << "error: -selection=" << Range.FileName
132 llvm::errs() << "error: -selection=" << Range.FileName << ':
    [all...]
  /src/external/mit/xorg/lib/libXt/
Makefile 18 Selection.c SetSens.c SetValues.c SetWMCW.c Shell.c \
  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
ClangFormatPackage.cs 10 // selection in a VS text editor.
285 /// Runs clang-format on the current selection
294 int start = view.Selection.Start.Position.GetContainingLine().Start.Position;
295 int end = view.Selection.End.Position.GetContainingLine().End.Position;
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
coff2yaml.cpp 263 YAMLASD.Selection = ObjSD->Selection;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Reader.cpp 139 if (SD && SD->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenInstruction.cpp 501 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd);
503 Selection = Selection.split('|').second;
504 Res += Selection.split('|').first;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 1572 int Selection = 0;
1577 Selection = getSelectionForCOFF(GO);
1579 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
1589 Selection = 0;
1594 Selection);
1625 int Selection = getSelectionForCOFF(GO);
1626 if (!Selection)
1627 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
1653 COMDATSymName, Selection, UniqueID);
1658 Selection, UniqueID)
    [all...]
  /src/external/gpl3/binutils/dist/include/coff/
pe.h 124 /* COMDAT selection codes. */
417 char Selection[1]; /* COMDAT selection number. */
  /src/external/gpl3/binutils.old/dist/include/coff/
pe.h 124 /* COMDAT selection codes. */
417 char Selection[1]; /* COMDAT selection number. */
  /src/external/gpl3/gdb/dist/include/coff/
pe.h 124 /* COMDAT selection codes. */
417 char Selection[1]; /* COMDAT selection number. */
  /src/external/gpl3/gdb.old/dist/include/coff/
pe.h 124 /* COMDAT selection codes. */
416 char Selection[1]; /* COMDAT selection number. */
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
COFF.h 451 uint8_t Selection;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
COFFDump.cpp 710 , unsigned(asd->Selection));
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 829 Aux->Selection = 0;
848 Aux->Selection = 0;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
COFFEmitter.cpp 581 << binary_le(i->SectionDefinition->Selection)

Completed in 46 milliseconds

1 2