HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 1 - 25 of 2558) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Bindings/OCaml/
ext_exc.ml 9 let context = Llvm.global_context () var
15 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
transform_utils.ml 12 let context = global_context () var
15 let m = create_module context "mod" in
bitreader.ml 13 let context = Llvm.global_context () var
19 let m = Llvm.create_module context "ocaml_test_module" in
29 let m = Llvm_bitreader.parse_bitcode context mb in
50 Llvm_bitreader.get_module context mb
70 Llvm_bitreader.get_module context mb
bitwriter.ml 13 let context = Llvm.global_context () var
41 let m = Llvm.create_module context "ocaml_test_module" in
irreader.ml 16 let context = global_context () var
38 let m = parse_ir context buf in
41 insist ((global_initializer foo) = (const_int (i32_type context) 42))
49 ignore (parse_ir context buf);
  /external/ppp/pppd/plugins/radius/
md5.c 8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
  /external/icu/icu4c/source/i18n/
regextxt.cpp 19 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
21 if (offset == context->lastOffset + 1) {
22 c = UTEXT_NEXT32(context->text);
23 context->lastOffset++;
24 } else if (offset == context->lastOffset) {
25 c = UTEXT_PREVIOUS32(context->text);
26 UTEXT_NEXT32(context->text);
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 c = UTEXT_NEXT32(context->text)
    [all...]
  /external/libunwind/src/unwind/
Backtrace.c 32 struct _Unwind_Context context; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
46 if (unw_step (&context.cursor) <= 0)
48 else if ((*trace) (&context, trace_parameter) != _URC_NO_REASON)
Resume.c 31 struct _Unwind_Context context; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
44 _Unwind_Phase2 (exception_object, &context, &destroy_map);
ForcedUnwind.c 33 struct _Unwind_Context context; local
46 if (_Unwind_InitContext (&context, &uc) < 0)
53 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
Resume_or_Rethrow.c 31 struct _Unwind_Context context; local
42 if (_Unwind_InitContext (&context, &uc) < 0)
45 ret = _Unwind_Phase2 (exception_object, &context, &destroy_map);
  /external/toybox/toys/android/
runcon.c 1 /* runcon.c - Run command in specified security context
12 usage: runcon CONTEXT COMMAND [ARGS...]
14 Run a command in a specified security context.
22 char *context = *toys.optargs; local
24 if (setexeccon(context)) perror_exit("Could not set context to %s", context);
  /libcore/benchmarks/src/benchmarks/regression/
SSLLoopbackBenchmark.java 39 TestSSLContext context = TestSSLContext.create( local
41 SSLSocket[] sockets = TestSSLSocketPair.connect(context, null, null);
42 context.close();
  /external/libunwind/android/tests/
local_test.cpp 27 unw_context_t* context; local
28 context = reinterpret_cast<unw_context_t*>(malloc(sizeof(unw_context_t) + EXTRA_CONTEXT_BYTES));
29 ASSERT_TRUE(context != NULL);
30 uint8_t* extra = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(context) + sizeof(unw_context_t));
34 ASSERT_TRUE(unw_getcontext(context) == 0);
40 free(context);
  /frameworks/compile/libbcc/lib/Renderscript/
RSScript.cpp 28 // Using the same context with the source in pScript.
29 BCCContext &context = pScript.getSource().getContext(); local
31 Source *libclcore_source = Source::CreateFromFile(context, core_lib);
  /ndk/sources/android/crazy_linker/tests/
test_load_library.cpp 19 crazy_context_t* context = crazy_context_create(); local
23 crazy_context_set_load_address(context, 0x20000000);
26 if (!crazy_library_open(&library, "libfoo.so", context)) {
27 Panic("Could not open library: %s\n", crazy_context_get_error(context));
44 crazy_context_destroy(context);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
input.h 11 CloogDomain *context; member in struct:clooginput
18 CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
input.h 11 CloogDomain *context; member in struct:clooginput
18 CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ProxyThisObjectTest.java 36 EventContext context = stopInProxyMethod(); local
44 packet.setNextValueAsThreadID(context.getThreadId());
45 packet.setNextValueAsLong(context.getFrameId());
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationInputInjector.java 28 private final UiAutomationContext context; field in class:UiAutomationInputInjector
30 public UiAutomationInputInjector(UiAutomationContext context) {
31 this.context = context;
36 return context.callUiAutomation(new UiAutomationCallable<Boolean>() {
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedMacro.java 57 public void render(RenderingContext context) throws IOException {
58 assert context == owningContext : "Cannot render macro defined in another context";
59 context.pushExecutionContext(this);
60 boolean doRuntimeAutoEscaping = !(context.isRuntimeAutoEscaping());
62 context.startRuntimeAutoEscaping();
66 context.stopRuntimeAutoEscaping();
68 context.popExecutionContext();
  /external/skia/tests/
GrSurfaceTest.cpp 22 GrContext* context = factory->get(GrContextFactory::kNull_GLContextType); local
23 if (context) {
30 GrSurface* texRT1 = context->textureProvider()->createTexture(desc, false, NULL, 0);
42 GrSurface* tex1 = context->textureProvider()->createTexture(desc, false, NULL, 0);
54 GrSurface* texRT2 = context->textureProvider()->wrapBackendTexture(backendDesc);
  /external/v8/test/cctest/compiler/
test-run-deopt.cc 24 Local<v8::Context> context = isolate->GetCurrentContext(); local
26 context->Global()->Set(v8_str("IsOptimized"), t->GetFunction());
test-run-jscalls.cc 209 Handle<JSObject> g(T.function->context()->global_object()->global_proxy());
233 Handle<JSObject> g(T.function->context()->global_object()->global_proxy());
257 // Disable context specialization.
259 v8::Local<v8::Context> context = v8::Context::New(CcTest::isolate()); local
260 v8::Context::Scope scope(context);
265 context->Global()->Set(v8_str("foo"), v8::Utils::ToLocal(jsfun));
278 // Disable context specialization
280 v8::Local<v8::Context> context = v8::Context::New(CcTest::isolate()); local
    [all...]
  /external/v8/test/cctest/
test-global-object.cc 39 LocalContext context; local
44 context->Global()->GetPrototype().As<v8::Object>();

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>