OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Declaration
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ExtractGV.cpp
99
// Make this a
declaration
and drop it's comdat.
117
// Make this a
declaration
and drop it's comdat.
136
llvm::Value *
Declaration
;
138
Declaration
= Function::Create(FTy, GlobalValue::ExternalLinkage,
143
Declaration
=
148
CurI->replaceAllUsesWith(
Declaration
);
OpenMPOpt.cpp
176
/// The
declaration
if available.
177
Function *
Declaration
= nullptr;
186
operator bool() const { return
Declaration
; }
302
/// Returns true if the function
declaration
\p F matches the runtime
328
// Helper to collect all uses of the
declaration
in the UsesMap.
331
if (!RFI.
Declaration
)
333
OMPBuilder.addAttributes(RFI.Kind, *RFI.
Declaration
);
337
NumOpenMPRuntimeFunctionUsesIdentified += RFI.
Declaration
->getNumUses();
341
for (Use &U : RFI.
Declaration
->uses()) {
407
RFI.
Declaration
= F;
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateArgumentVisitor.h
37
DISPATCH(
Declaration
);
59
VISIT_METHOD(
Declaration
);
TemplateBase.h
73
/// The template argument is a
declaration
that was provided for a pointer,
75
Declaration
,
161
///
declaration
, which is either an external
declaration
or a
162
/// template
declaration
.
165
DeclArg.Kind =
Declaration
;
274
/// Retrieve the
declaration
for a
declaration
non-type
277
assert(getKind() ==
Declaration
&& "Unexpected kind");
282
assert(getKind() ==
Declaration
&& "Unexpected kind")
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Linker/
LinkModules.cpp
272
// Link an available_externally over a
declaration
.
442
GlobalValue *
Declaration
;
444
Declaration
= Function::Create(FTy, GlobalValue::ExternalLinkage, "", &M);
446
Declaration
=
451
Declaration
->takeName(&Alias);
452
Alias.replaceAllUsesWith(
Declaration
);
/src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h
100
Declaration
= 1 << 0,
126
// constructor references the class
declaration
using that role.
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h
100
Declaration
,
271
/// FIXME: add condition that models 'expression or variable
declaration
'
355
/// A
declaration
that can appear at the top-level. Note that this does *not*
359
class
Declaration
: public Tree {
361
Declaration
(NodeKind K) : Tree(K) {}
365
///
Declaration
of an unknown kind, e.g. not yet supported in syntax trees.
366
class UnknownDeclaration final : public
Declaration
{
368
UnknownDeclaration() :
Declaration
(NodeKind::UnknownDeclaration) {}
373
class EmptyDeclaration final : public
Declaration
{
375
EmptyDeclaration() :
Declaration
(NodeKind::EmptyDeclaration) {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp
564
SmallString<128> &
Declaration
);
590
const DeclInfo *DI, SmallString<128> &
Declaration
) {
592
StringRef StringDecl(
Declaration
.c_str(),
Declaration
.size());
596
unsigned Length =
Declaration
.size();
604
Declaration
= *FormattedStringDecl;
944
// Pretty-print the
declaration
.
945
Result << "<
Declaration
>";
946
SmallString<128>
Declaration
;
947
getSourceTextOfDeclaration(DI,
Declaration
);
[
all
...]
/src/external/bsd/libevent/dist/
event_rpcgen.py
118
filep.write("/* Structure
declaration
for %s */\n" % self._name)
131
dcl = entry.
Declaration
()
621
def
Declaration
(self):
750
def
Declaration
(self):
871
def
Declaration
(self):
1051
def
Declaration
(self):
1179
def
Declaration
(self):
1453
def
Declaration
(self):
/src/external/bsd/ntp/dist/sntp/libevent/
event_rpcgen.py
118
filep.write("/* Structure
declaration
for %s */\n" % self._name)
131
dcl = entry.
Declaration
()
621
def
Declaration
(self):
750
def
Declaration
(self):
871
def
Declaration
(self):
1051
def
Declaration
(self):
1179
def
Declaration
(self):
1453
def
Declaration
(self):
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTDiagnostic.cpp
439
assert(DC && "Should never have a null
declaration
context");
539
/// Integer or
Declaration
, then use that diff type instead.
545
///
Declaration
difference, nullptr arguments are included here
546
Declaration
,
547
/// One argument being integer and the other being
declaration
673
FlatTree[CurrentNode].Kind =
Declaration
;
825
assert(FlatTree[ReadNode].Kind ==
Declaration
&& "Unexpected kind.");
1189
case TemplateArgument::
Declaration
: {
1219
case TemplateArgument::
Declaration
: {
1242
/// of DiffTemplatesTemplates, such as integer and
declaration
parameters
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
DebugInfo.cpp
517
DISubprogram *
Declaration
= nullptr;
531
MDS->getFlags(), MDS->getSPFlags(), Unit, TemplateParams,
Declaration
,
542
MDS->getSPFlags(), Unit, TemplateParams,
Declaration
, Variables);
LLVMContextImpl.h
692
Metadata *
Declaration
;
701
Metadata *
Declaration
, Metadata *RetainedNodes,
707
Unit(Unit), TemplateParams(TemplateParams),
Declaration
(
Declaration
),
718
Declaration
(N->getRawDeclaration()),
733
Declaration
== RHS->getRawDeclaration() &&
741
// If this is a
declaration
inside an ODR type, only hash the type and the
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
declaration.h
8
* https://github.com/dlang/dmd/blob/master/src/dmd/
declaration
.h
111
class
Declaration
: public Dsymbol
158
Declaration
*isDeclaration() { return this; }
164
class TupleDeclaration : public
Declaration
184
class AliasDeclaration : public
Declaration
206
class OverDeclaration : public
Declaration
226
class VarDeclaration : public
Declaration
314
class SymbolDeclaration : public
Declaration
528
class FuncDeclaration : public
Declaration
618
// Data for a function
declaration
that is needed for the Objective-
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h
1
//===--- DeclSpec.h - Parsed
declaration
specifiers -------------*- C++ -*-===//
11
///
declaration
-specifiers and declarators.
16
///
declaration
-specifiers \ | /
148
/// \param RD The
declaration
of the class in which nested-name-specifier
225
/// Captures information about "
declaration
specifiers".
227
/// "
Declaration
specifiers" encompasses storage-class-specifiers,
632
/// isEmpty - Return true if this
declaration
specifier is completely empty:
782
/// also allowed and equivalent to the previous
declaration
.
820
/// Captures information about "
declaration
specifiers" specific to
1258
///
declaration
of a member function), it will be stored here as
[
all
...]
Sema.h
367
/// the old
declaration
might not be visible and the new
declaration
might
374
// of the new
declaration
here.
419
/// CurContext - This is the current
declaration
context of parsing.
426
/// VAListTagName - The
declaration
name corresponding to __va_list_tag.
747
/// The
declaration
that is currently receiving an attribute from the
794
/// in a function
declaration
parameter type specifier in order to invent a
851
/// Look for a locally scoped extern "C"
declaration
by the given name.
869
/// and must warn if not used. Only contains the first
declaration
.
887
/// their exception spec checks delayed, plus the prior
declaration
the
[
all
...]
Completed in 54 milliseconds
Indexes created Tue Apr 28 00:22:25 UTC 2026