HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 1 - 25 of 5241) 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
  /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);
  /external/libunwind_llvm/test/
unw_getcontext.pass.cpp 5 unw_context_t context; local
6 int ret = unw_getcontext(&context);
  /external/libxkbcommon/xkbcommon/test/
context.c 27 #include "context.h"
32 struct xkb_context *context = test_get_context(0); local
35 assert(context);
37 assert(xkb_context_num_include_paths(context) == 1);
38 assert(!xkb_context_include_path_append(context, "¡NONSENSE!"));
39 assert(xkb_context_num_include_paths(context) == 1);
41 atom = xkb_atom_intern(context, "HELLOjunkjunkjunk", 5);
43 assert(streq(xkb_atom_text(context, atom), "HELLO"));
45 atom = xkb_atom_intern_literal(context, "HELLOjunkjunkjunk");
47 assert(streq(xkb_atom_text(context, atom), "HELLOjunkjunkjunk"))
    [all...]
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_input.py 10 context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >") variable
21 if context.match(node.parent.parent):
  /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 31 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build(); local
40 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
45 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
60 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
96 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
114 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
145 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
183 ASSERT_TRUE(parser.Consume(context.get(), doc.get()));
189 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
201 ASSERT_TRUE(parser.Consume(context.get(), doc.get()))
    [all...]
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()));
  /frameworks/base/tools/aapt2/java/
ManifestClassGenerator_test.cpp 28 static ::testing::AssertionResult GetManifestClassText(IAaptContext* context, xml::XmlResource* res,
32 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build(); local
42 ASSERT_TRUE(GetManifestClassText(context.get(), manifest.get(), &actual));
77 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
94 ASSERT_TRUE(GetManifestClassText(context.get(), manifest.get(), &actual));
128 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
138 ASSERT_TRUE(GetManifestClassText(context.get(), manifest.get(), &actual));
145 std::unique_ptr<IAaptContext> context = test::ContextBuilder().Build();
152 ASSERT_TRUE(GetManifestClassText(context.get(), manifest.get(), &actual));
156 static ::testing::AssertionResult GetManifestClassText(IAaptContext* context, xml::XmlResource* res
    [all...]
  /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();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
DonutViewTest.java 3 import android.content.Context;
15 Context context = RuntimeEnvironment.application; local
17 DonutView.getPercentageStringSpannable(context.getResources(), "50%", "h");

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>