OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Binding
(Results
1 - 11
of
11
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h
77
///
binding
is the value of sub-regions that were not initialized separately
80
/// some or all fields were later overwritten manually. Default
binding
may be
83
/// \param[in] R The region to find the default
binding
for.
85
///
binding
exists.
88
/// Return the default value bound to a LazyCompoundVal. The default
binding
91
/// explicitly separately from the whole structure. Default
binding
may be an
95
/// default
binding
exists.
101
/// \param[in] store The store in which to make the
binding
.
119
/// Create a new store with the specified
binding
removed.
121
/// \param L the location whose
binding
should be removed
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp
30
uint8_t
Binding
;
34
MangledSymbol(const std::string &ParentName, uint8_t Type, uint8_t
Binding
,
36
: ParentName(ParentName), Type(Type),
Binding
(
Binding
), Names(Names) {}
136
//
Binding
:
324
if (Symbol.
Binding
== llvm::ELF::STB_WEAK)
/src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
ELFObjHandler.cpp
477
uint8_t
Binding
= RawSym.getBinding();
478
if (
Binding
== STB_WEAK)
506
// If a symbol does not have global or weak
binding
, ignore it.
507
uint8_t
Binding
= RawSym.getBinding();
508
if (!(
Binding
== STB_GLOBAL ||
Binding
== STB_WEAK))
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELFObjectFile.h
353
unsigned char
Binding
= ESym->getBinding();
356
// A symbol is exported if its
binding
is either GLOBAL or WEAK, and its
360
(
Binding
== ELF::STB_GLOBAL ||
Binding
== ELF::STB_WEAK ||
361
Binding
== ELF::STB_GNU_UNIQUE) &&
/src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h
140
ELF_STB
Binding
;
/src/external/apache2/llvm/dist/llvm/lib/MC/
ELFObjectWriter.cpp
532
//
Binding
and Type share the same byte as upper and lower nibbles
533
uint8_t
Binding
= Symbol.getBinding();
540
uint8_t Info = (
Binding
<< 4) | Type;
1263
// Aliases defined with .symvar copy the
binding
from the symbol they alias.
1342
unsigned
Binding
= Sym->getBinding();
1343
switch(
Binding
) {
1345
llvm_unreachable("Invalid
Binding
");
/src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp
933
uint8_t
Binding
= SymI->getBinding();
934
if (
Binding
== ELF::STB_GNU_UNIQUE)
937
assert(
Binding
!= ELF::STB_WEAK && "STB_WEAK not tested in calling function");
938
if (
Binding
!= ELF::STB_GLOBAL &&
Binding
!= ELF::STB_LOCAL)
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h
628
uint8_t
Binding
;
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h
3820
/// A
binding
in a decomposition declaration. For instance, given:
3829
/// The declaration that this
binding
binds to part of.
3831
/// The
binding
represented by this declaration. References to this
3834
///
binding
).
3835
Expr *
Binding
= nullptr;
3838
: ValueDecl(Decl::
Binding
, DC, IdLoc, Id, QualType()) {}
3852
Expr *getBinding() const { return
Binding
; }
3854
/// Get the decomposition declaration that this
binding
represents a
3858
/// Get the variable (if any) that holds the value of evaluating the
binding
.
3862
/// Set the
binding
for this BindingDecl, along with its declared type (whic
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h
2656
// ::= DC <source-name>+ E # structured
binding
declaration
2669
Node *
Binding
= getDerived().parseSourceName(State);
2670
if (
Binding
== nullptr)
2672
Names.push_back(
Binding
);
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h
1704
struct
Binding
{
1714
Binding
*Bindings;
1739
ArrayRef<
Binding
> bindings() const {
1814
/// The C++17 structured
binding
, if any. This is an alternative to a Name.
1878
DecompositionDeclarator::
Binding
InlineBindings[16];
2177
///
binding
(which is not exactly a name, but occupies the same position).
2204
ArrayRef<DecompositionDeclarator::
Binding
> Bindings,
Completed in 46 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026