OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Contexts
(Results
1 - 8
of
8
) sorted by relevancy
/xsrc/external/mit/mesa-demos/dist/src/tests/
texobjshare.c
2
* Create several OpenGL rendering
contexts
, sharing textures, display
32
static struct context
Contexts
[MAX_CONTEXTS];
116
ctx = glXCreateContext(dpy, visinfo,
Contexts
[0].Context, True);
136
struct context *h = &
Contexts
[NumContexts];
142
return &
Contexts
[NumContexts-1];
150
if (!glXMakeCurrent(
Contexts
[i].Dpy,
Contexts
[i].Win,
Contexts
[i].Context)) {
160
XDestroyWindow(
Contexts
[i].Dpy,
Contexts
[i].Win)
[
all
...]
/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
;
/xsrc/external/mit/mesa-demos/dist/src/xdemos/
sharedtex.c
2
* Test sharing of texture objects by two rendering
contexts
.
48
static GLXContext
Contexts
[MAX_CONTEXTS];
133
if (Win && !glXMakeCurrent(Dpy, Win,
Contexts
[TexContext])) {
187
GLXContext share = i > 0 ?
Contexts
[0] : 0;
189
Contexts
[i] = glXCreateContext(Dpy, VisInfo, share, True);
190
if (!
Contexts
[i]) {
194
if (!glXMakeCurrent(Dpy, Win,
Contexts
[i])) {
216
if (Win && !glXMakeCurrent(Dpy, Win,
Contexts
[DrawContext])) {
/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/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/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
...]
/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/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
...]
Completed in 25 milliseconds
Indexes created Tue Aug 18 00:25:06 UTC 2026