HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 501 - 525 of 2559) sorted by null

<<21222324252627282930>>

  /external/chromium_org/v8/test/cctest/
test-macro-assembler-mips.cc 137 v8::Local<v8::Context> context = CcTest::NewContext(PRINT_EXTENSION); local
138 v8::Context::Scope context_scope(context);
test-thread-termination.cc 127 v8::Handle<v8::Context> context = local
128 v8::Context::New(CcTest::isolate(), NULL, global);
129 v8::Context::Scope context_scope(context);
147 v8::Handle<v8::Context> context = local
148 v8::Context::New(CcTest::isolate(), NULL, global);
149 v8::Context::Scope context_scope(context);
187 v8::Handle<v8::Context> context = local
256 v8::Handle<v8::Context> context = local
307 v8::Handle<v8::Context> context = local
353 v8::Handle<v8::Context> context = v8::Context::New(isolate, NULL, global); local
389 v8::Handle<v8::Context> context = local
    [all...]
test-threads.cc 54 v8::Handle<v8::Context> context = v8::Context::New(isolate); local
55 v8::Context::Scope context_scope(context);
97 v8::Handle<v8::Context> context = v8::Context::New(isolate); local
98 v8::Context::Scope context_scope(context);
    [all...]
test-weakmaps.cc 39 static Isolate* GetIsolateFrom(LocalContext* context) {
40 return reinterpret_cast<Isolate*>((*context)->GetIsolate());
82 LocalContext context; local
83 Isolate* isolate = GetIsolateFrom(&context);
143 LocalContext context; local
144 Isolate* isolate = GetIsolateFrom(&context);
185 LocalContext context; local
186 Isolate* isolate = GetIsolateFrom(&context);
225 LocalContext context; local
226 Isolate* isolate = GetIsolateFrom(&context);
    [all...]
test-weaksets.cc 39 static Isolate* GetIsolateFrom(LocalContext* context) {
40 return reinterpret_cast<Isolate*>((*context)->GetIsolate());
82 LocalContext context; local
83 Isolate* isolate = GetIsolateFrom(&context);
143 LocalContext context; local
144 Isolate* isolate = GetIsolateFrom(&context);
185 LocalContext context; local
186 Isolate* isolate = GetIsolateFrom(&context);
225 LocalContext context; local
226 Isolate* isolate = GetIsolateFrom(&context);
    [all...]
test-weaktypedarrays.cc 39 static Isolate* GetIsolateFrom(LocalContext* context) {
40 return reinterpret_cast<Isolate*>((*context)->GetIsolate());
89 LocalContext context; local
90 Isolate* isolate = GetIsolateFrom(&context);
94 v8::HandleScope s1(context->GetIsolate());
96 v8::ArrayBuffer::New(context->GetIsolate(), 256);
98 v8::HandleScope s2(context->GetIsolate());
100 v8::ArrayBuffer::New(context->GetIsolate(), 128);
125 LocalContext context; local
126 Isolate* isolate = GetIsolateFrom(&context);
187 LocalContext context; local
270 LocalContext context; local
    [all...]
  /external/chromium_org/v8/tools/
parser-shell.cc 49 v8::Handle<v8::Context> context) {
136 v8::Local<v8::Context> context = v8::Context::New(isolate, NULL, global); local
137 ASSERT(!context.IsEmpty());
139 v8::Context::Scope scope(context);
144 fnames[i].c_str(), encoding, repeat, isolate, context);
  /external/chromium_org/win8/metro_driver/
direct3d_helper.cc 73 mswr::ComPtr<ID3D11DeviceContext> context; local
85 &context));
87 CheckIfFailed(context.As(&d3d_context_));
  /external/deqp/modules/egl/
teglCreateContextTests.cpp 21 * \brief Simple Context construction test.
94 log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id << TestLog::EndMessage;
99 EGLContext context = eglCreateContext(display.getEGLDisplay(), config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs); local
102 if (context == EGL_NO_CONTEXT || err != EGL_SUCCESS)
104 log << TestLog::Message << " Fail, context: " << tcu::toHex(context) << ", error: " << eglu::getErrorName(err) << TestLog::EndMessage;
105 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Failed to create context");
110 TCU_CHECK_EGL_CALL(eglDestroyContext(display.getEGLDisplay(), context));
teglSurfacelessContextTests.cpp 109 log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id << TestLog::EndMessage;
114 EGLContext context = eglCreateContext(display.getEGLDisplay(), config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs); local
117 if (!eglMakeCurrent(display.getEGLDisplay(), EGL_NO_SURFACE, EGL_NO_SURFACE, context))
123 log << TestLog::Message << " eglMakeCurrent() failed with EGL_BAD_MATCH. Context doesn't support surfaceless mode." << TestLog::EndMessage;
124 TCU_CHECK_EGL_CALL(eglDestroyContext(display.getEGLDisplay(), context));
129 log << TestLog::Message << " Fail, context: " << tcu::toHex(context) << ", error: " << eglu::getErrorName(err) << TestLog::EndMessage;
130 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Failed to make context current");
138 TCU_CHECK_EGL_CALL(eglDestroyContext(display.getEGLDisplay(), context));
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
InstrumentationDriver.java 36 private final DroidDriverContext<View, ViewElement> context; field in class:InstrumentationDriver
41 context = new DroidDriverContext<View, ViewElement>(instrumentation, this);
43 uiDevice = new InstrumentationUiDevice(context);
53 return context.newRootElement(findRootView());
58 return new ViewElement(context, rawElement, parent);
90 context.runOnMainSync(findRootViewRunnable);
InstrumentationUiDevice.java 32 private final DroidDriverContext<View, ViewElement> context; field in class:InstrumentationUiDevice
34 InstrumentationUiDevice(DroidDriverContext<View, ViewElement> context) {
35 this.context = context;
41 new ScreenshotRunnable(context.getDriver().getRootElement().getRawElement());
42 context.runOnMainSync(screenshotRunnable);
48 return context;
  /external/glide/library/src/main/java/com/bumptech/glide/
GlideBuilder.java 3 import android.content.Context;
24 private Context context; field in class:GlideBuilder
32 public GlideBuilder(Context context) {
33 this.context = context.getApplicationContext();
81 requestQueue = RequestQueueWrapper.getRequestQueue(context);
84 MemorySizeCalculator calculator = new MemorySizeCalculator(context);
98 File cacheDir = Glide.getPhotoCacheDir(context);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
LocalUriFetcher.java 4 import android.content.Context;
19 private final WeakReference<Context> contextRef;
28 * @param context A context (this will be weakly referenced and the load will fail if the weak reference
33 public LocalUriFetcher(Context context, Uri uri) {
34 contextRef = new WeakReference<Context>(context);
40 Context context = contextRef.get() local
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifResourceDecoder.java 3 import android.content.Context;
21 private Context context; field in class:GifResourceDecoder
24 public GifResourceDecoder(Context context) {
25 this(context, Glide.get(context).getBitmapPool());
28 public GifResourceDecoder(Context context, BitmapPool bitmapPool) {
29 this.context = context
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
uoptions.h 45 typedef int UOptionFn(void *context, UOption *option);
55 void *context; /* parameter for the function */ member in struct:UOption
  /external/kernel-headers/original/uapi/drm/
sis_drm.h 53 int context; member in struct:__anon26653
  /external/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 63 _Unwind_GetDataRelBase(struct _Unwind_Context *context) {
64 (void)context;
65 _LIBUNWIND_TRACE_API("_Unwind_GetDataRelBase(context=%p)\n", context);
73 _Unwind_GetTextRelBase(struct _Unwind_Context *context) {
74 (void)context;
75 _LIBUNWIND_TRACE_API("_Unwind_GetTextRelBase(context=%p)\n", context);
130 struct _Unwind_Context *context = (struct _Unwind_Context *)&cursor; local
139 result = _Unwind_VRS_Interpret(context, unwindInfo, off, len)
    [all...]
  /external/libsepol/src/
genusers.c 186 context_struct_t context; local
227 context_init(&context);
228 if (mls_context_to_sid(policydb, oldc, &r, &context) <
237 memcpy(&usrdatum->dfltlevel, &context.range.level[0],
273 context_init(&context);
274 if (mls_context_to_sid(policydb, oldc, &r, &context) <
282 memcpy(&usrdatum->range, &context.range,
  /external/libxml2/include/libxml/
xmlIO.h 41 * Returns an Input context or NULL in case or error
46 * @context: an Input context
54 typedef int (XMLCALL *xmlInputReadCallback) (void * context, char * buffer, int len);
57 * @context: an Input context
63 typedef int (XMLCALL *xmlInputCloseCallback) (void * context);
87 * Returns an Output context or NULL in case or error
92 * @context: an Output context
126 void* context; member in struct:_xmlParserInputBuffer
142 void* context; member in struct:_xmlOutputBuffer
    [all...]
  /external/ltrace/sysdeps/linux-gnu/m68k/
fetch.c 46 fetch_register_banks(struct process *proc, struct fetch_context *context,
49 if (ptrace(PTRACE_GETREGS, proc->pid, 0, &context->regs) < 0)
53 && ptrace(PTRACE_GETFPREGS, proc->pid, 0, &context->fpregs) < 0)
63 struct fetch_context *context = malloc(sizeof(*context)); local
64 if (context == NULL)
68 if (fetch_register_banks(proc, context, type == LT_TOF_FUNCTION) < 0) {
70 free(context);
74 context->arg_num = 0;
75 context->stack_pointer = (arch_addr_t)context->regs[PT_USP] + 4
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.h 110 struct pipe_context *context; member in struct:cso_blend
117 struct pipe_context *context; member in struct:cso_depth_stencil_alpha
124 struct pipe_context *context; member in struct:cso_rasterizer
131 struct pipe_context *context; member in struct:cso_sampler
143 struct pipe_context *context; member in struct:cso_velements
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_printf.c 49 LLVMContextRef context = gallivm->context; local
56 assert(LLVMTypeOf(args[0]) == LLVMPointerType(LLVMInt8TypeInContext(context), 0));
63 args[i] = LLVMBuildFPExt(builder, args[i], LLVMDoubleTypeInContext(context), "");
66 printf_type = LLVMFunctionType(LLVMInt32TypeInContext(context), NULL, 0, 1);
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_shader.h 47 rbug_context_t context; member in struct:rbug_proto_shader_list
53 rbug_context_t context; member in struct:rbug_proto_shader_info
60 rbug_context_t context; member in struct:rbug_proto_shader_disable
68 rbug_context_t context; member in struct:rbug_proto_shader_replace
94 rbug_context_t context,
98 rbug_context_t context,
103 rbug_context_t context,
109 rbug_context_t context,
  /external/mesa3d/src/gallium/include/pipe/
p_video_decoder.h 48 struct pipe_context *context; member in struct:pipe_video_decoder
107 struct pipe_context *context; member in struct:pipe_video_buffer

Completed in 1452 milliseconds

<<21222324252627282930>>