OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurrentContext
(Results
1 - 10
of
10
) sorted by null
/external/ImageMagick/MagickWand/
drawing-wand.c
62
#define
CurrentContext
(wand->graphic_context[wand->index])
339
current=
CurrentContext
->affine;
340
CurrentContext
->affine.sx=affine->sx*current.sx+affine->ry*current.rx;
341
CurrentContext
->affine.rx=affine->rx*current.sx+affine->sy*current.rx;
342
CurrentContext
->affine.ry=affine->sx*current.ry+affine->ry*current.sy;
343
CurrentContext
->affine.sy=affine->rx*current.ry+affine->sy*current.sy;
344
CurrentContext
->affine.tx=affine->sx*current.tx+affine->ry*current.ty+
346
CurrentContext
->affine.ty=affine->rx*current.tx+affine->sy*current.ty+
386
CurrentContext
=DestroyDrawInfo(
CurrentContext
);
[
all
...]
/external/mesa3d/src/egl/main/
eglcontext.c
513
if (draw && draw->
CurrentContext
&& draw->
CurrentContext
!= ctx) {
514
if (draw->
CurrentContext
->Binding != t ||
515
draw->
CurrentContext
->ClientAPI != ctx->ClientAPI)
518
if (read && read->
CurrentContext
&& read->
CurrentContext
!= ctx) {
519
if (read->
CurrentContext
->Binding != t ||
520
read->
CurrentContext
->ClientAPI != ctx->ClientAPI)
584
prev_draw->
CurrentContext
= NULL;
586
prev_read->
CurrentContext
= NULL
[
all
...]
eglsurface.h
48
_EGLContext *
CurrentContext
;
/external/llvm/lib/Support/
CrashRecoveryContext.cpp
24
sys::ThreadLocal<const CrashRecoveryContextImpl> >
CurrentContext
;
29
// per CrashRecoveryContext and
CurrentContext
is a thread-local, so only one
43
Next =
CurrentContext
->get();
44
CurrentContext
->set(this);
48
CurrentContext
->set(Next);
52
/// indicate that we don't need to clear the thread-local
CurrentContext
.
62
CurrentContext
->set(Next);
110
const CrashRecoveryContextImpl *CRCI =
CurrentContext
->get();
169
const CrashRecoveryContextImpl *CRCI =
CurrentContext
->get();
252
const CrashRecoveryContextImpl *CRCI =
CurrentContext
->get()
[
all
...]
/external/v8/src/debug/
debug-scopes.cc
137
if (HasContext() &&
CurrentContext
()->closure() != NULL) {
139
Handle<JSFunction>(
CurrentContext
()->closure()));
239
return Handle<JSObject>(
CurrentContext
()->global_proxy());
249
return handle(JSObject::cast(
CurrentContext
()->extension_receiver()));
315
Handle<Context> ScopeIterator::
CurrentContext
() {
356
CurrentContext
()->Print(os);
362
if (!
CurrentContext
().is_null()) {
363
CurrentContext
()->Print(os);
364
if (
CurrentContext
()->has_extension()) {
365
Handle<HeapObject> extension(
CurrentContext
()->extension(), isolate_)
[
all
...]
debug-scopes.h
73
Handle<Context>
CurrentContext
();
debug-evaluate.cc
167
it.HasContext() ? it.
CurrentContext
() : outer_context;
195
isolate->factory()->CopyFixedArray(it.
CurrentContext
()));
198
context_chain_element.original_context = it.
CurrentContext
();
209
isolate->factory()->CopyFixedArray(it.
CurrentContext
()));
214
context_chain_element.original_context = it.
CurrentContext
();
/external/mesa3d/src/mesa/drivers/x11/
glxapi.c
162
PUBLIC __thread void *
CurrentContext
167
static GLXContext
CurrentContext
= 0;
175
CurrentContext
= c;
179
CurrentContext
= c;
273
return
CurrentContext
;
277
return
CurrentContext
;
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp
528
const StackFrameContext *
CurrentContext
= LCtx->getCurrentStackFrame();
530
if (VarContext ==
CurrentContext
) {
559
return VarContext->isParentOf(
CurrentContext
);
/external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d_api.c
734
if (gsurf->base.
CurrentContext
) {
735
gctx = egl_g3d_context(gsurf->base.
CurrentContext
);
Completed in 329 milliseconds