OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Alias
(Results
1 - 25
of
75
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/llvm/lib/Option/
Option.cpp
34
assert(getAlias().isValid() && "Only
alias
options can have
alias
args.");
35
assert(getKind() == FlagClass && "Only Flag aliases can have
alias
args.");
37
"Cannot provide
alias
args to a flag option.");
77
const Option
Alias
= getAlias();
78
if (
Alias
.isValid()) {
79
O << "
Alias
:";
80
Alias
.print(O);
95
const Option
Alias
= getAlias();
96
if (
Alias
.isValid()
[
all
...]
Option.cpp
34
assert(getAlias().isValid() && "Only
alias
options can have
alias
args.");
35
assert(getKind() == FlagClass && "Only Flag aliases can have
alias
args.");
37
"Cannot provide
alias
args to a flag option.");
77
const Option
Alias
= getAlias();
78
if (
Alias
.isValid()) {
79
O << "
Alias
:";
80
Alias
.print(O);
95
const Option
Alias
= getAlias();
96
if (
Alias
.isValid()
[
all
...]
Option.cpp
34
assert(getAlias().isValid() && "Only
alias
options can have
alias
args.");
35
assert(getKind() == FlagClass && "Only Flag aliases can have
alias
args.");
37
"Cannot provide
alias
args to a flag option.");
77
const Option
Alias
= getAlias();
78
if (
Alias
.isValid()) {
79
O << "
Alias
:";
80
Alias
.print(O);
95
const Option
Alias
= getAlias();
96
if (
Alias
.isValid()
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Option/
Arg.h
61
/// If this arg was created through an
alias
, this is the original
alias
arg.
62
/// For example, *this might be "-finput-charset=utf-8" and
Alias
might
64
std::unique_ptr<Arg>
Alias
;
99
/// came from an
alias
, this returns the
alias
the arg was produced from.
100
const Arg* getAlias() const { return
Alias
.get(); }
101
void setAlias(std::unique_ptr<Arg>
Alias
) { this->
Alias
= std::move(
Alias
); }
[
all
...]
Arg.h
61
/// If this arg was created through an
alias
, this is the original
alias
arg.
62
/// For example, *this might be "-finput-charset=utf-8" and
Alias
might
64
std::unique_ptr<Arg>
Alias
;
99
/// came from an
alias
, this returns the
alias
the arg was produced from.
100
const Arg* getAlias() const { return
Alias
.get(); }
101
void setAlias(std::unique_ptr<Arg>
Alias
) { this->
Alias
= std::move(
Alias
); }
[
all
...]
Arg.h
61
/// If this arg was created through an
alias
, this is the original
alias
arg.
62
/// For example, *this might be "-finput-charset=utf-8" and
Alias
might
64
std::unique_ptr<Arg>
Alias
;
99
/// came from an
alias
, this returns the
alias
the arg was produced from.
100
const Arg* getAlias() const { return
Alias
.get(); }
101
void setAlias(std::unique_ptr<Arg>
Alias
) { this->
Alias
= std::move(
Alias
); }
[
all
...]
Option.h
47
/// of (if any), if the option is an
alias
, and a number of
115
/// Get the
alias
arguments as a \0 separated list.
187
/// aliases (itself, if the option has no
alias
).
189
const Option
Alias
= getAlias();
190
if (
Alias
.isValid()) return
Alias
.getUnaliasedOption();
203
/// Note that matches against options which are an
alias
should never be
Option.h
47
/// of (if any), if the option is an
alias
, and a number of
115
/// Get the
alias
arguments as a \0 separated list.
187
/// aliases (itself, if the option has no
alias
).
189
const Option
Alias
= getAlias();
190
if (
Alias
.isValid()) return
Alias
.getUnaliasedOption();
203
/// Note that matches against options which are an
alias
should never be
/src/external/apache2/llvm/dist/llvm/lib/Object/
RecordStreamer.cpp
154
// for each
alias
.
210
// Set the detected binding on each
alias
with this aliasee.
221
MCSymbol *
Alias
= getContext().getOrCreateSymbol(AliasName);
226
markDefined(*
Alias
);
227
// Don't use EmitAssignment override as it always marks
alias
as defined.
228
MCStreamer::emitAssignment(
Alias
, Value);
230
emitSymbolAttribute(
Alias
, Attr);
RecordStreamer.cpp
154
// for each
alias
.
210
// Set the detected binding on each
alias
with this aliasee.
221
MCSymbol *
Alias
= getContext().getOrCreateSymbol(AliasName);
226
markDefined(*
Alias
);
227
// Don't use EmitAssignment override as it always marks
alias
as defined.
228
MCStreamer::emitAssignment(
Alias
, Value);
230
emitSymbolAttribute(
Alias
, Attr);
RecordStreamer.cpp
154
// for each
alias
.
210
// Set the detected binding on each
alias
with this aliasee.
221
MCSymbol *
Alias
= getContext().getOrCreateSymbol(AliasName);
226
markDefined(*
Alias
);
227
// Don't use EmitAssignment override as it always marks
alias
as defined.
228
MCStreamer::emitAssignment(
Alias
, Value);
230
emitSymbolAttribute(
Alias
, Attr);
/src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiInstPrinter.cpp
39
StringRef
Alias
, unsigned OpNo0,
41
OS << "\t" <<
Alias
<< " ";
LanaiInstPrinter.cpp
39
StringRef
Alias
, unsigned OpNo0,
41
OS << "\t" <<
Alias
<< " ";
LanaiInstPrinter.cpp
39
StringRef
Alias
, unsigned OpNo0,
41
OS << "\t" <<
Alias
<< " ";
/src/external/apache2/llvm/dist/clang/lib/AST/
FormatString.cpp
543
std::string
Alias
;
546
Alias
= Name;
549
Alias
+= (
Alias
[
Alias
.size()-1] == '*') ? "*" : " *";
551
// If
Alias
is the same as the underlying type, e.g. wchar_t, then drop it.
552
if (S ==
Alias
)
553
Alias
.clear();
556
if (!
Alias
.empty())
557
return std::string("'") +
Alias
+ "' (aka '" + S + "')"
[
all
...]
FormatString.cpp
543
std::string
Alias
;
546
Alias
= Name;
549
Alias
+= (
Alias
[
Alias
.size()-1] == '*') ? "*" : " *";
551
// If
Alias
is the same as the underlying type, e.g. wchar_t, then drop it.
552
if (S ==
Alias
)
553
Alias
.clear();
556
if (!
Alias
.empty())
557
return std::string("'") +
Alias
+ "' (aka '" + S + "')"
[
all
...]
FormatString.cpp
543
std::string
Alias
;
546
Alias
= Name;
549
Alias
+= (
Alias
[
Alias
.size()-1] == '*') ? "*" : " *";
551
// If
Alias
is the same as the underlying type, e.g. wchar_t, then drop it.
552
if (S ==
Alias
)
553
Alias
.clear();
556
if (!
Alias
.empty())
557
return std::string("'") +
Alias
+ "' (aka '" + S + "')"
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Format/
SortJavaScriptImports.cpp
42
StringRef
Alias
;
48
return Symbol == RHS.Symbol &&
Alias
== RHS.
Alias
;
410
<< Reference.Symbols[I].
Alias
;
504
// {sym as
alias
, sym2 as ...} from '...';
524
Symbol.
Alias
= Current->TokenText;
SortJavaScriptImports.cpp
42
StringRef
Alias
;
48
return Symbol == RHS.Symbol &&
Alias
== RHS.
Alias
;
410
<< Reference.Symbols[I].
Alias
;
504
// {sym as
alias
, sym2 as ...} from '...';
524
Symbol.
Alias
= Current->TokenText;
/src/external/apache2/llvm/dist/llvm/lib/Linker/
LinkModules.cpp
138
"': COMDAT key involves incomputable
alias
size.");
439
auto &
Alias
= cast<GlobalAlias>(GV);
440
Module &M = *
Alias
.getParent();
441
PointerType &Ty = *cast<PointerType>(
Alias
.getType());
443
if (auto *FTy = dyn_cast<FunctionType>(
Alias
.getValueType())) {
451
Declaration->takeName(&
Alias
);
452
Alias
.replaceAllUsesWith(Declaration);
453
Alias
.eraseFromParent();
484
//
Alias
have to go first, since we are not able to find their comdats
LinkModules.cpp
138
"': COMDAT key involves incomputable
alias
size.");
439
auto &
Alias
= cast<GlobalAlias>(GV);
440
Module &M = *
Alias
.getParent();
441
PointerType &Ty = *cast<PointerType>(
Alias
.getType());
443
if (auto *FTy = dyn_cast<FunctionType>(
Alias
.getValueType())) {
451
Declaration->takeName(&
Alias
);
452
Alias
.replaceAllUsesWith(Declaration);
453
Alias
.eraseFromParent();
484
//
Alias
have to go first, since we are not able to find their comdats
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCWinCOFFStreamer.cpp
312
auto *
Alias
= cast<MCSymbolCOFF>(AliasS);
313
emitSymbolAttribute(
Alias
, MCSA_Weak);
316
Alias
->setVariableValue(MCSymbolRefExpr::create(
MCWinCOFFStreamer.cpp
312
auto *
Alias
= cast<MCSymbolCOFF>(AliasS);
313
emitSymbolAttribute(
Alias
, MCSA_Weak);
316
Alias
->setVariableValue(MCSymbolRefExpr::create(
/src/sys/external/bsd/acpica/dist/debugger/
dbnames.c
903
BOOLEAN
Alias
= TRUE;
910
while (
Alias
)
929
Alias
= FALSE;
dbnames.c
903
BOOLEAN
Alias
= TRUE;
910
while (
Alias
)
929
Alias
= FALSE;
Completed in 133 milliseconds
1
2
3
Indexes created Tue Aug 11 00:25:38 UTC 2026