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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
ext_exc.ml 5 let context = Llvm.global_context () var
10 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
  /external/llvm/test/Bindings/OCaml/
ext_exc.ml 9 let context = Llvm.global_context () var
16 Llvm.set_diagnostic_handler context (Some diagnostic_handler);
18 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
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/webrtc/webrtc/modules/video_render/ios/
video_render_ios_view.h 30 @property(nonatomic, retain) EAGLContext* context; variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /external/icu/icu4c/source/i18n/
regextxt.cpp 21 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
23 if (offset == context->lastOffset + 1) {
24 c = UTEXT_NEXT32(context->text);
25 context->lastOffset++;
26 } else if (offset == context->lastOffset) {
27 c = UTEXT_PREVIOUS32(context->text);
28 UTEXT_NEXT32(context->text);
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
31 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/libunwind_llvm/test/
unw_getcontext.pass.cpp 5 unw_context_t context; local
6 int ret = unw_getcontext(&context);
  /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);
  /frameworks/base/tools/aapt2/compile/
InlineXmlFormatParser_test.cpp 24 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build(); local
33 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
38 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
52 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
89 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
107 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
XmlIdCollector_test.cpp 26 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build(); local
37 ASSERT_TRUE(collector.Consume(context.get(), doc.get()));
56 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
62 ASSERT_TRUE(collector.Consume(context.get(), doc.get()));
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
initsid.py 22 from . import context
45 def context(self): member in class:InitialSID
46 """The context for this initial SID."""
47 return context.context_factory(self.policy, self.qpol_symbol.context(self.policy))
50 return "sid {0} {0.context}".format(self)
  /external/testng/src/test/java/test/guice/
GuiceParentModuleTest.java 18 ITestContext context; field in class:GuiceParentModuleTest
24 Assert.assertNotNull(context);
25 Assert.assertEquals(context.getName(), "Guice");
26 Assert.assertEquals(context.getSuite().getName(), "parent-module-suite");
  /libcore/benchmarks/src/benchmarks/regression/
SSLLoopbackBenchmark.java 28 TestSSLContext context = TestSSLContext.create( local
30 SSLSocket[] sockets = TestSSLSocketPair.connect(context, null, null);
31 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);
  /external/skia/tests/
SkSLMemoryLayoutTest.cpp 16 SkSL::Context context; local
20 REPORTER_ASSERT(r, 4 == layout.size(*context.fFloat_Type));
21 REPORTER_ASSERT(r, 8 == layout.size(*context.fVec2_Type));
22 REPORTER_ASSERT(r, 12 == layout.size(*context.fVec3_Type));
23 REPORTER_ASSERT(r, 16 == layout.size(*context.fVec4_Type));
24 REPORTER_ASSERT(r, 4 == layout.size(*context.fInt_Type));
25 REPORTER_ASSERT(r, 8 == layout.size(*context.fIVec2_Type));
26 REPORTER_ASSERT(r, 12 == layout.size(*context.fIVec3_Type));
27 REPORTER_ASSERT(r, 16 == layout.size(*context.fIVec4_Type))
97 SkSL::Context context; local
    [all...]

Completed in 1304 milliseconds

1 2 3 4 5 6 7 8 91011>>