OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Contexts
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Format/
TokenAnnotator.cpp
77
Contexts
.push_back(Context(tok::unknown, 1, /*IsExpression=*/false));
92
if (Previous.Previous->is(tok::r_paren) &&
Contexts
.size() > 1 &&
99
Left->ParentBracket =
Contexts
.back().ContextKind;
104
bool InExprContext =
Contexts
.back().IsExpression;
106
Contexts
.back().IsExpression = false;
109
Contexts
.back().InTemplateArgument =
165
Contexts
[
Contexts
.size() - 2].IsExpression &&
210
Left->ParentBracket =
Contexts
.back().ContextKind;
214
Contexts
.back().ColonIsForRangeExpr
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinkerDeclContext.cpp
25
/// that. In that case, just do not unique anything that refers to the
contexts
54
// By default stop gathering child
contexts
.
76
// because of the way we identify
contexts
, and they won't be generated
161
auto ContextIter =
Contexts
.find(&Key);
163
if (ContextIter ==
Contexts
.end()) {
169
std::tie(ContextIter, Inserted) =
Contexts
.insert(NewContext);
179
assert(ContextIter !=
Contexts
.end());
DWARFLinker.cpp
315
DeclContext *CurrentDeclContext, DeclContextTree &
Contexts
,
366
auto PtrInvalidPair =
Contexts
.getChildDeclContext(
2331
// ODR
Contexts
for the optimize.
/src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp
91
void AnalysisDeclContextManager::clear() {
Contexts
.clear(); }
303
std::unique_ptr<AnalysisDeclContext> &AC =
Contexts
[D];
382
cast_or_null<StackFrameContext>(
Contexts
.FindNodeOrInsertPos(ID, InsertPos));
385
Contexts
.InsertNode(L, InsertPos);
397
cast_or_null<BlockInvocationContext>(
Contexts
.FindNodeOrInsertPos(ID,
401
Contexts
.InsertNode(L, InsertPos);
646
for (llvm::FoldingSet<LocationContext>::iterator I =
Contexts
.begin(),
647
E =
Contexts
.end(); I != E; ) {
652
Contexts
.clear();
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclBase.cpp
1285
DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &
Contexts
){
1286
Contexts
.clear();
1289
Contexts
.push_back(this);
1296
Contexts
.push_back(N);
1298
std::reverse(
Contexts
.begin(),
Contexts
.end());
1558
/// declarations in this DeclContext (and any other
contexts
linked
1559
/// to it or transparent
contexts
nested within it) and return it.
1571
SmallVector<DeclContext *, 2>
Contexts
;
1572
collectAllContexts(
Contexts
);
[
all
...]
Decl.cpp
1626
ContextsTy
Contexts
;
1628
// Collect named
contexts
.
1641
// Skip non-named
contexts
such as linkage specifications and ExportDecls.
1646
Contexts
.push_back(Ctx);
1650
for (unsigned I =
Contexts
.size(); I != 0; --I) {
1651
const DeclContext *DC =
Contexts
[I - 1];
1756
// name and kind in the same scope but different
contexts
; we should
/src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp
373
SmallVector<const DeclContext *, 2>
Contexts
;
377
Contexts
.push_back(DC);
387
for (unsigned I =
Contexts
.size(); I != 0; --I) {
394
const DeclContext *CurDC =
Contexts
[I - 1];
/src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinkerDeclContext.h
67
/// The
contexts
are conceptually organized as a tree (eg. a function scope is
144
DeclContext::Map
Contexts
;
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnalysisDeclContext.h
382
llvm::FoldingSet<LocationContext>
Contexts
;
423
ContextMap
Contexts
;
/src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp
285
/// Determine the set of code-completion
contexts
in which this
297
uint64_t
Contexts
= 0;
301
// Types can appear in these
contexts
.
303
Contexts
|= (1LL << CodeCompletionContext::CCC_TopLevel)
310
// In C++, types can appear in expressions
contexts
(for functional casts).
312
Contexts
|= (1LL << CodeCompletionContext::CCC_Expression);
317
Contexts
|= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
323
Contexts
|= (1LL << CodeCompletionContext::CCC_Expression);
324
Contexts
|= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName);
329
Contexts
|= (1LL << CodeCompletionContext::CCC_EnumTag)
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp
346
// Initialize the writer
contexts
.
347
SmallVector<std::unique_ptr<WriterContext>, 4>
Contexts
;
349
Contexts
.emplace_back(std::make_unique<WriterContext>(
354
loadInput(Input, Remapper,
Contexts
[0].get());
361
Pool.async(loadInput, Input, Remapper,
Contexts
[Ctx].get());
366
// Merge the writer
contexts
together (~ lg(NumThreads) serial steps).
367
unsigned Mid =
Contexts
.size() / 2;
368
unsigned End =
Contexts
.size();
372
Pool.async(mergeWriterContexts,
Contexts
[I].get(),
373
Contexts
[I + Mid].get())
[
all
...]
/src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexCodeCompletion.cpp
289
unsigned long long
Contexts
;
366
Contexts
(CXCompletionContext_Unknown),
387
unsigned long long
contexts
= 0;
local
392
contexts
= CXCompletionContext_MacroName;
399
contexts
= CXCompletionContext_AnyType |
402
contexts
|= CXCompletionContext_EnumTag |
411
contexts
= CXCompletionContext_AnyType |
415
contexts
|= CXCompletionContext_EnumTag |
424
contexts
= CXCompletionContext_AnyValue;
426
contexts
|= CXCompletionContext_AnyType
[
all
...]
/src/external/bsd/kyua-cli/dist/store/
schema_v1.sql
64
--
Contexts
.
68
-- Execution
contexts
.
74
CREATE TABLE
contexts
(
table
84
context_id INTEGER REFERENCES
contexts
,
105
context_id INTEGER REFERENCES
contexts
schema_v2.sql
66
--
Contexts
.
70
-- Execution
contexts
.
76
CREATE TABLE
contexts
(
table
86
context_id INTEGER REFERENCES
contexts
,
107
context_id INTEGER REFERENCES
contexts
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h
1331
/// can act as declaration
contexts
. These decls are (only the top classes
1967
/// Examples of transparent
contexts
include: enumerations (except for
2013
/// two entities are compatible. This skips through transparent
contexts
.
2039
/// Collects all of the declaration
contexts
that are semantically
2042
/// For declaration
contexts
that have multiple semantically connected but
2043
/// syntactically distinct
contexts
, such as C++ namespaces, this routine
2044
/// retrieves the complete set of such declaration
contexts
in source order.
2056
/// The \c
Contexts
parameter will contain both definitions of N.
2058
/// \param
Contexts
Will be cleared and set to the set of declaration
2059
///
contexts
that are semanticaly connected to this declaration context
[
all
...]
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml
381
(*===--
Contexts
----------------------------------------------------------===*)
llvm.mli
446
(** {6
Contexts
} *)
Completed in 59 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026