OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Common
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.h
29
const CommonConfig &getCommonConfig() const override { return
Common
; }
40
CommonConfig
Common
;
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.h
83
class LLVM_LIBRARY_VISIBILITY
Common
: public Tool {
85
Common
(const char *Name, const char *ShortName, const ToolChain &TC)
103
class LLVM_LIBRARY_VISIBILITY Preprocessor : public
Common
{
106
:
Common
("gcc::Preprocessor", "gcc preprocessor", TC) {}
115
class LLVM_LIBRARY_VISIBILITY Compiler : public
Common
{
117
Compiler(const ToolChain &TC) :
Common
("gcc::Compiler", "gcc frontend", TC) {}
126
class LLVM_LIBRARY_VISIBILITY Linker : public
Common
{
128
Linker(const ToolChain &TC) :
Common
("gcc::Linker", "linker (via gcc)", TC) {}
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
SectionKind.h
101
///
Common
- Data with
common
linkage. These represent tentative
104
Common
,
167
bool isCommon() const { return K ==
Common
; }
205
static SectionKind getCommon() { return get(
Common
); }
/src/sys/arch/amiga/dev/
mscreg.h
132
struct msccommon
Common
; /* 0x0070-0x0077
common
flags */
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclTemplate.cpp
251
if (
Common
)
252
return
Common
;
255
// with a
common
pointer or we run out of previous declarations.
259
if (Prev->
Common
) {
260
Common
= Prev->
Common
;
267
// If we never found a
common
pointer, allocate one now.
268
if (!
Common
) {
270
// need an update record to add the
common
data.
272
Common
= newCommon(getASTContext())
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
701
/// DCA(A,B) is the deepest
common
ancestor of A and B.
879
unsigned
Common
= GetDeepestCommonScope(JumpScope, TargetScope);
882
// Walk out the scope chain until we reach the
common
ancestor.
883
for (unsigned I = JumpScope; I !=
Common
; I = Scopes[I].ParentScope)
892
for (unsigned I = TargetScope; I !=
Common
; I = Scopes[I].ParentScope)
925
//
Common
case: exactly the same scope, which is fine.
SemaLookup.cpp
74
// Sort by the pointer value of the
common
ancestor.
181
// Find the
common
ancestor between the effective context and
183
DeclContext *
Common
= UD->getNominatedNamespace();
184
while (!
Common
->Encloses(EffectiveDC))
185
Common
=
Common
->getParent();
186
Common
=
Common
->getPrimaryContext();
188
list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(),
Common
));
1198
// using directives whose
common
ancestor is this namespace
[
all
...]
SemaCodeComplete.cpp
85
/// a single (declaration, index) mapping (the
common
case) but
451
// Pointer difference is more
common
than subtracting an int from a pointer.
1362
// should remove all. But two overloads is by far the
common
case.
1911
///
common
type names.
4060
/// that invoke the functions we override, since it's
common
to invoke the
5202
// We only try to handle
common
expressions on the LHS of MemberExpr.
5231
const Type *
Common
= nullptr;
5242
if (
Common
&&
Common
!= Candidate)
5244
Common
= Candidate
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterDecl.cpp
197
/// Get the list of partial specializations from a template's
common
ptr.
199
decltype(T::PartialSpecializations) &getPartialSpecializations(T *
Common
) {
200
return
Common
->PartialSpecializations;
202
ArrayRef<Decl> getPartialSpecializations(FunctionTemplateDecl::
Common
*) {
208
auto *
Common
= D->getCommonPtr();
214
Common
->LazySpecializations) {
216
assert(!
Common
->LazySpecializations);
220
if (auto *LS =
Common
->LazySpecializations)
230
for (auto &Entry :
Common
->Specializations)
232
for (auto &Entry : getPartialSpecializations(
Common
))
[
all
...]
/src/sys/external/bsd/acpica/dist/include/
acobject.h
67
*
Common
Descriptors
72
*
Common
area for all objects.
129
* Fields
common
to both Strings and Buffers
246
* Objects that can be notified. All share a
common
NotifyInfo area.
251
*
Common
fields for objects that support ASL notifications
257
/*
COMMON
NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
310
* Fields. All share a
common
header/info field.
315
*
Common
bitfield for the field objects
330
/*
COMMON
FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
519
ACPI_OBJECT_COMMON
Common
;
[
all
...]
aclocal.h
831
ACPI_COMMON_STATE
Common
;
1087
ACPI_PARSE_OBJ_COMMON
Common
;
actbl2.h
136
/*
Common
Subtable header - one per Node Structure (Subtable) */
342
ACPI_AEST_NODE_INTERFACE_COMMON
Common
;
351
ACPI_AEST_NODE_INTERFACE_COMMON
Common
;
360
ACPI_AEST_NODE_INTERFACE_COMMON
Common
;
412
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header */
436
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header */
531
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header */
551
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header */
1037
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header */
1116
ACPI_TABLE_HEADER Header; /*
Common
ACPI table header *
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclTemplate.h
836
/// Pointer to the
common
data shared by all declarations of this
838
mutable CommonBase *
Common
= nullptr;
840
/// Retrieves the "
common
" pointer shared by all (re-)declarations of
842
/// for the
common
pointer.
978
/// Data that is
common
to all of the declarations of a given
980
struct
Common
: CommonBase {
994
Common
() = default;
1005
Common
*getCommonPtr() const {
1006
return static_cast<
Common
*>(RedeclarableTemplateDecl::getCommonPtr());
1113
/// Merge \p Prev with our RedeclarableTemplateDecl::
Common
[
all
...]
ExprCXX.h
366
/// Abstract class
common
to all of the C++ "named"/"keyword" casts.
2884
/// The
common
name of these declarations.
3334
/// evaluation. The most
common
source of expression-introduced
4686
enum SubExpr {
Common
, Ready, Suspend, Resume, Count };
4692
CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, Expr *
Common
,
4698
SubExprs[SubExpr::
Common
] =
Common
;
4706
Expr *
Common
)
4708
assert(
Common
->isTypeDependent() && Ty->isDependentType() &&
4710
SubExprs[SubExpr::
Common
] = Common
[
all
...]
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml
67
|
Common
/src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp
6951
unsigned
Common
= std::min(LHS, RHS);
6957
if (
Common
> SrcExtraBits)
6958
return (
Common
- SrcExtraBits);
6962
return
Common
;
Completed in 59 milliseconds
Indexes created Sat May 02 00:23:24 UTC 2026