Searched refs:context (Results 1 - 25 of 2854) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context) argument
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, in argument
97 next(int context, int current) argument
115 next(int context, int current, int extendedTypeID) argument
[all...]
/external/clang/test/Sema/
H A Dfreemain.c7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiClassifier.java49 protected Object context; field in class:BidiClassifier
52 * @param context Context for this classifier instance.
56 public BidiClassifier(Object context) { argument
57 this.context = context;
61 * Sets classifier context, which can be used either by a caller or
64 * @param context Context for this classifier instance.
68 public void setContext(Object context) { argument
69 this.context = context;
[all...]
/external/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/
H A DContext.xs32 common_pc(context)
33 struct scripting_context * context
36 common_flags(context)
37 struct scripting_context * context
40 common_lock_depth(context)
41 struct scripting_context * context
/external/toybox/toys/android/
H A Druncon.c1 /* runcon.c - Run command in specified security context
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);
/external/ppp/pppd/plugins/radius/
H A Dmd5.c8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DAbstractConfiguration.java23 public void preConfigure(WebAppContext context) throws Exception argument
27 public void configure(WebAppContext context) throws Exception argument
31 public void postConfigure(WebAppContext context) throws Exception argument
35 public void deconfigure(WebAppContext context) throws Exception argument
39 public void destroy(WebAppContext context) throws Exception argument
43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception argument
H A DConfiguration.java34 * @param context The context to configure
37 public void preConfigure (WebAppContext context) throws Exception; argument
45 * @param context The context to configure
48 public void configure (WebAppContext context) throws Exception; argument
53 * @param context The context to configure
56 public void postConfigure (WebAppContext context) throws Exception; argument
61 * called to allow the context t
65 deconfigure(WebAppContext context) argument
74 destroy(WebAppContext context) argument
86 cloneConfigure(WebAppContext template, WebAppContext context) argument
[all...]
H A DWebXmlConfiguration.java45 public void preConfigure (WebAppContext context) throws Exception argument
48 String defaultsDescriptor = context.getDefaultsDescriptor();
53 dftResource = context.newResource(defaultsDescriptor);
54 context.getMetaData().setDefaults (dftResource);
58 Resource webxml = findWebXml(context);
61 context.getMetaData().setWebXml(webxml);
62 context.getServletContext().setEffectiveMajorVersion(context.getMetaData().getWebXml().getMajorVersion());
63 context.getServletContext().setEffectiveMinorVersion(context
85 configure(WebAppContext context) argument
98 findWebXml(WebAppContext context) argument
122 deconfigure(WebAppContext context) argument
[all...]
/external/icu/icu4c/source/i18n/
H A DdecContext.c20 /* context structures. */
25 #include "decContext.h" /* context and base types */
38 /* context is the context structure to be queried */
41 /* returns context */
45 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) { argument
46 context->status&=~mask;
47 return context;
51 /* decContextDefault -- initialize a context structure */
53 /* context i
63 uprv_decContextDefault(decContext *context, Int kind) argument
128 uprv_decContextGetRounding(decContext *context) argument
140 uprv_decContextGetStatus(decContext *context) argument
156 uprv_decContextRestoreStatus(decContext *context, uInt newstatus, uInt mask) argument
173 uprv_decContextSaveStatus(decContext *context, uInt mask) argument
186 uprv_decContextSetRounding(decContext *context, enum rounding newround) argument
202 uprv_decContextSetStatus(decContext *context, uInt status) argument
223 uprv_decContextSetStatusFromString(decContext *context, const char *string) argument
274 uprv_decContextSetStatusFromStringQuiet(decContext *context, const char *string) argument
320 uprv_decContextSetStatusQuiet(decContext *context, uInt status) argument
332 uprv_decContextStatusToString(const decContext *context) argument
414 uprv_decContextTestStatus(decContext *context, uInt mask) argument
426 uprv_decContextZeroStatus(decContext *context) argument
[all...]
H A Dregextxt.cpp19 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
42 uregex_ucstr_unescape_charAt(int32_t offset, void *context) argument
[all...]
/external/libvncserver/common/
H A Dsha1.c80 * context: [in/out]
81 * The context to reset.
87 int SHA1Reset(SHA1Context *context) argument
89 if (!context)
94 context->Length_Low = 0;
95 context->Length_High = 0;
96 context->Message_Block_Index = 0;
98 context->Intermediate_Hash[0] = 0x67452301;
99 context->Intermediate_Hash[1] = 0xEFCDAB89;
100 context
128 SHA1Result( SHA1Context *context, uint8_t Message_Digest[SHA1HashSize]) argument
185 SHA1Input( SHA1Context *context, const uint8_t *message_array, unsigned length) argument
256 SHA1ProcessMessageBlock(SHA1Context *context) argument
366 SHA1PadMessage(SHA1Context *context) argument
[all...]
/external/skia/experimental/SkV8Example/js/
H A Dpath.js11 function f(context) {
12 context.translate(10, 10);
14 context.strokeStyle = '#0000' + toHex(i);
15 context.stroke(p);
16 context.translate(1, 0);
18 context.fillStyle = '#ff0000';
19 print(context.width, context.height);
20 context.resetTransform();
21 context
[all...]
H A Dsample.js10 function f(context) {
13 context.translate(context.width/2, context.height/2);
14 context.rotate(ticks/10);
15 context.drawPath(p);
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSessionContextImplTest.java41 SSLSessionContextImpl context = new SSLSessionContextImpl();
42 context.putSession(ses1);
43 context.putSession(ses2);
44 context.putSession(ses3);
46 for (Enumeration en = context.getIds(); en.hasMoreElements(); ) {
48 assertTrue(context.getSession(id) != null);
51 SSLSession ses = context.getSession(ses1.getId());
54 ses = context.getSession(ses3.getId());
59 SSLSessionContextImpl context = new SSLSessionContextImpl();
60 assertEquals(0, context
[all...]
/external/libunwind/src/unwind/
H A DSetIP.c29 _Unwind_SetIP (struct _Unwind_Context *context, unsigned long new_value) argument
31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value);
H A DGetTextRelBase.c29 _Unwind_GetTextRelBase (struct _Unwind_Context *context) argument
/external/deqp/modules/gles3/functional/
H A Des3fAttribLocationTests.cpp40 TestCaseGroup* createAttributeLocationTests (Context& context) argument
88 TestCaseGroup* const root = new TestCaseGroup (context, "attribute_location", "Attribute location tests");
92 TestCaseGroup* const bindAttributeGroup = new TestCaseGroup(context, "bind", "Basic bind attribute location tests.");
99 bindAttributeGroup->addChild(new gls::BindAttributeTest(context.getTestContext(), context.getRenderContext(), type));
105 TestCaseGroup* const bindMaxAttributeGroup = new TestCaseGroup(context, "bind_max_attributes", "Use bind with maximum number of attributes.");
112 bindMaxAttributeGroup->addChild(new gls::BindMaxAttributesTest(context.getTestContext(), context.getRenderContext(), type));
118 TestCaseGroup* const aliasingGroup = new TestCaseGroup(context, "bind_aliasing", "Test binding aliasing locations.");
127 aliasingGroup->addChild(new gls::BindAliasingAttributeTest(context
[all...]
/external/deqp/modules/gles2/
H A Dtes2TestCase.hpp38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType type, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description) argument
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
61 , m_context (context)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
67 , m_context (context)
71 TestCase(Context& context, const char* name, const char* description) argument
77 TestCase(Context& context, tcu::TestNodeType type, const char* name, const char* description) argument
[all...]
/external/deqp/modules/gles3/
H A Dtes3TestCase.hpp38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description) argument
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
61 , m_context (context)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
67 , m_context (context)
71 TestCase(Context& context, const char* name, const char* description) argument
77 TestCase(Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
[all...]
/external/deqp/modules/gles31/
H A Dtes31TestCase.hpp38 TestCaseGroup (Context& context, const char* name, const char* description);
39 TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children);
51 TestCase (Context& context, const char* name, const char* description);
52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
59 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description) argument
60 : tcu::TestCaseGroup (context.getTestContext(), name, description)
61 , m_context (context)
65 inline TestCaseGroup::TestCaseGroup (Context& context, const char* name, const char* description, const std::vector<TestNode*>& children) argument
66 : tcu::TestCaseGroup (context.getTestContext(), name, description, children)
67 , m_context (context)
71 TestCase(Context& context, const char* name, const char* description) argument
77 TestCase(Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
[all...]
/external/libnfc-nxp/src/
H A DphLibNfc_discovery.h34 phLibNfc_config_discovery_cb(void *context,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestBroadcastReceiver.java8 public Context context; field in class:TestBroadcastReceiver
12 public void onReceive(Context context, Intent intent) { argument
13 this.context = context;
/external/ltrace/
H A Dfetch.c34 struct fetch_context *context);
44 void arch_fetch_arg_done(struct fetch_context *context);
47 int arch_fetch_param_pack_start(struct fetch_context *context,
50 void arch_fetch_param_pack_end(struct fetch_context *context);
71 arch_fetch_arg_clone(struct process *proc, struct fetch_context *context) argument
76 return memcpy(ret, context, sizeof(*ret));
80 arch_fetch_arg_next(struct fetch_context *context, enum tof type, argument
84 long l = gimme_arg(type, proc, context->argnum++, info);
90 arch_fetch_retval(struct fetch_context *context, enum tof type, argument
100 arch_fetch_arg_done(struct fetch_context *context) argument
108 arch_fetch_param_pack_start(struct fetch_context *context, enum param_pack_flavor ppflavor) argument
115 arch_fetch_param_pack_end(struct fetch_context *context) argument
128 fetch_arg_clone(struct process *proc, struct fetch_context *context) argument
134 fetch_arg_next(struct fetch_context *context, enum tof type, struct process *proc, struct arg_type_info *info, struct value *valuep) argument
142 fetch_retval(struct fetch_context *context, enum tof type, struct process *proc, struct arg_type_info *info, struct value *valuep) argument
150 fetch_arg_done(struct fetch_context *context) argument
156 fetch_param_pack_start(struct fetch_context *context, enum param_pack_flavor ppflavor) argument
163 fetch_param_pack_end(struct fetch_context *context) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_context.c42 XvMCContext context = {0}; local
70 /* Test NULL context */
75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort);
77 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch);
79 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, -1, &context) == BadValue);
81 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, height, XVMC_DIRECT, &context) == BadValue);
83 assert(XvMCCreateContext(display, port_num, surface_type_id, width, 16384, XVMC_DIRECT, &context) == BadValue);
85 assert(XvMCCreateContext(display, port_num, surface_type_id, 16384, 16384, XVMC_DIRECT, &context) == BadValue);
87 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success);
88 /* Test context i
[all...]

Completed in 1326 milliseconds

1234567891011>>