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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 48 * 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)
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, int extendedTypeID
    [all...]
  /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);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
VerticalSlider.java 3 import android.content.Context;
7 public VerticalSlider(Context context) {
8 super(context);
9 initSliderView(context, true);
12 public VerticalSlider(Context context, AttributeSet attrs) {
13 super(context, attrs);
14 initSliderView(context, true);
  /external/icu4c/i18n/
decContext.c 2 /* Decimal Context module */
20 /* context structures. */
25 #include "decContext.h" /* context and base types */
47 /* context is the context structure to be queried */
50 /* returns context */
54 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) {
55 context->status&=~mask;
56 return context;
60 /* decContextDefault -- initialize a context structure *
    [all...]
regextxt.cpp 18 struct URegexUTextUnescapeCharContext *context = (struct URegexUTextUnescapeCharContext *)ct; local
20 if (offset == context->lastOffset + 1) {
21 c = UTEXT_NEXT32(context->text);
22 context->lastOffset++;
23 } else if (offset == context->lastOffset) {
24 c = UTEXT_PREVIOUS32(context->text);
25 UTEXT_NEXT32(context->text);
27 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
28 c = UTEXT_NEXT32(context->text)
    [all...]
  /dalvik/libdex/
sha1.h 15 void SHA1Init(SHA1_CTX* context);
16 void SHA1Update(SHA1_CTX* context, const unsigned char* data,
18 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
  /external/webkit/WebCore/loader/
ThreadableLoader.cpp 43 PassRefPtr<ThreadableLoader> ThreadableLoader::create(ScriptExecutionContext* context, ThreadableLoaderClient* client, const ResourceRequest& request, const ThreadableLoaderOptions& options)
46 ASSERT(context);
49 if (context->isWorkerContext())
50 return WorkerThreadableLoader::create(static_cast<WorkerContext*>(context), client, WorkerRunLoop::defaultMode(), request, options);
53 ASSERT(context->isDocument());
54 return DocumentThreadableLoader::create(static_cast<Document*>(context), client, request, options);
57 void ThreadableLoader::loadResourceSynchronously(ScriptExecutionContext* context, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options)
59 ASSERT(context);
62 if (context->isWorkerContext()) {
63 WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(context), request, client, options)
    [all...]
  /cts/tests/src/android/view/cts/
MockViewStub.java 19 import android.content.Context;
24 public MockViewStub(Context context) {
25 super(context);
28 public MockViewStub(Context context, AttributeSet attrs) {
29 super(context, attrs);
32 public MockViewStub(Context context, AttributeSet attrs, int defStyle) {
33 super(context, attrs, defStyle)
    [all...]
TestButton.java 19 import android.content.Context;
25 public TestButton(Context context) {
26 super(context);
29 public TestButton(Context context, AttributeSet attrs) {
30 super(context, attrs);
33 public TestButton(Context context, AttributeSet attrs, int defStyle) {
34 super(context, attrs, defStyle)
    [all...]
  /frameworks/base/core/java/android/widget/
CheckBox.java 19 import android.content.Context;
57 public CheckBox(Context context) {
58 this(context, null);
61 public CheckBox(Context context, AttributeSet attrs) {
62 this(context, attrs, com.android.internal.R.attr.checkboxStyle);
65 public CheckBox(Context context, AttributeSet attrs, int defStyle) {
66 super(context, attrs, defStyle)
    [all...]
RadioButton.java 19 import android.content.Context;
50 public RadioButton(Context context) {
51 this(context, null);
54 public RadioButton(Context context, AttributeSet attrs) {
55 this(context, attrs, com.android.internal.R.attr.radioButtonStyle);
58 public RadioButton(Context context, AttributeSet attrs, int defStyle) {
59 super(context, attrs, defStyle)
    [all...]
  /development/host/windows/usb/legacy/driver/
android_usb_wdf_object.cpp 75 AndroidUsbWdfObjectContext* context =
77 ASSERT(NULL != context);
78 if (NULL == context)
82 ASSERT((0 == context->object_type) && (NULL == context->wdf_object_ext));
83 if ((0 != context->object_type) || (NULL != context->wdf_object_ext))
86 context->object_type = object_type();
87 context->wdf_object_ext = this;
117 AndroidUsbWdfObjectContext* context = GetAndroidUsbWdfObjectContext(wdf_obj);
    [all...]
  /external/dbus/bus/
dir-watch.h 30 void bus_watch_directory (const char *directory, BusContext *context);
bus.h 2 /* bus.h message bus context object
77 dbus_bool_t bus_context_reload_config (BusContext *context,
79 void bus_context_shutdown (BusContext *context);
80 BusContext* bus_context_ref (BusContext *context);
81 void bus_context_unref (BusContext *context);
82 const char* bus_context_get_type (BusContext *context);
83 const char* bus_context_get_address (BusContext *context);
84 BusRegistry* bus_context_get_registry (BusContext *context);
85 BusConnections* bus_context_get_connections (BusContext *context);
86 BusActivation* bus_context_get_activation (BusContext *context);
    [all...]
  /external/libnfc-nxp/src/
phLibNfc_discovery.h 34 phLibNfc_config_discovery_cb(void *context,
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetContainerView.java 19 import android.content.Context;
25 public AppWidgetContainerView(Context context) {
26 super(context);
29 public AppWidgetContainerView(Context context, AttributeSet attrs) {
30 super(context, attrs);
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 44 private final HttpContext context; field in class:ClientContextConfigurer
46 public ClientContextConfigurer (final HttpContext context) {
47 if (context == null)
48 throw new IllegalArgumentException("HTTP context may not be null");
49 this.context = context;
53 this.context.setAttribute(COOKIESPEC_REGISTRY, registry);
57 this.context.setAttribute(AUTHSCHEME_REGISTRY, registry);
61 this.context.setAttribute(COOKIE_STORE, store);
65 this.context.setAttribute(CREDS_PROVIDER, provider)
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
WKCACFContextFlusher.cpp 51 void WKCACFContextFlusher::addContext(CACFContextRef context)
53 ASSERT(context);
55 m_contexts.add(context);
56 CFRetain(context);
59 void WKCACFContextFlusher::removeContext(CACFContextRef context)
61 ASSERT(context);
63 ContextSet::iterator found = m_contexts.find(context);
80 CACFContextRef context = *it; local
81 CACFContextFlush(context);
82 CFRelease(context);
    [all...]
  /external/webkit/WebCore/bindings/v8/specialization/
V8BindingDOMWindow.h 48 v8::Local<v8::Context> context = V8Proxy::context(newFrame); local
49 if (!context.IsEmpty()) {
50 v8::Context::Scope scope(context);
51 context->Global()->Set(v8::String::New("dialogArguments"), dialogArgs);
  /external/chromium/third_party/icu/public/common/unicode/
uclean.h 137 * @param context user supplied value, obtained from from u_setMutexFunctions().
147 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
154 * @param context user supplied value, obtained from from u_setMutexFunctions().
159 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
170 * @param context This pointer value will be saved, and then (later) passed as
182 u_setMutexFunctions(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
188 * @param context user supplied value, obtained from from u_setAtomicIncDecFunctions().
194 typedef int32_t U_CALLCONV UMtxAtomicFn(const void *context, int32_t *p);
202 * @param context This pointer value will be saved, and then (later) passed as
212 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn *dec
    [all...]
  /external/icu4c/common/unicode/
uclean.h 121 * @param context user supplied value, obtained from from u_setMutexFunctions().
131 typedef void U_CALLCONV UMtxInitFn (const void *context, UMTX *mutex, UErrorCode* status);
138 * @param context user supplied value, obtained from from u_setMutexFunctions().
143 typedef void U_CALLCONV UMtxFn (const void *context, UMTX *mutex);
154 * @param context This pointer value will be saved, and then (later) passed as
166 u_setMutexFunctions(const void *context, UMtxInitFn *init, UMtxFn *destroy, UMtxFn *lock, UMtxFn *unlock,
172 * @param context user supplied value, obtained from from u_setAtomicIncDecFunctions().
178 typedef int32_t U_CALLCONV UMtxAtomicFn(const void *context, int32_t *p);
186 * @param context This pointer value will be saved, and then (later) passed as
196 u_setAtomicIncDecFunctions(const void *context, UMtxAtomicFn *inc, UMtxAtomicFn *dec
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetProvider.java 22 import android.content.Context;
34 public void onUpdate(Context context, AppWidgetManager mngr, int[] ids) {
35 context.startService(new Intent(BookmarkWidgetService.UPDATE, null,
36 context, BookmarkWidgetService.class));
40 public void onEnabled(Context context) {
41 context.startService(new Intent(context, BookmarkWidgetService.class));
45 public void onDisabled(Context context)
    [all...]
  /libcore/luni/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ClientSessionContextTest.java 29 ClientSessionContext context = new ClientSessionContext(null, null); local
34 context.putSession(a);
35 context.putSession(b);
37 assertSame(a, context.getSession("a".getBytes()));
38 assertSame(b, context.getSession("b".getBytes()));
40 assertSame(a, context.getSession("a", 443));
41 assertSame(b, context.getSession("b", 443));
43 assertEquals(2, context.sessions.size());
46 Enumeration ids = context.getIds();
48 sessions.add(context.getSession((byte[]) ids.nextElement()))
59 ClientSessionContext context = new ClientSessionContext(null, null); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
ExtractButton.java 19 import android.content.Context;
27 public ExtractButton(Context context) {
28 super(context, null);
31 public ExtractButton(Context context, AttributeSet attrs) {
32 super(context, attrs, com.android.internal.R.attr.buttonStyle);
35 public ExtractButton(Context context, AttributeSet attrs, int defStyle) {
36 super(context, attrs, defStyle)
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceCategory.java 21 import android.content.Context;
31 public PreferenceCategory(Context context, AttributeSet attrs, int defStyle) {
32 super(context, attrs, defStyle);
35 public PreferenceCategory(Context context, AttributeSet attrs) {
36 this(context, attrs, com.android.internal.R.attr.preferenceCategoryStyle);
39 public PreferenceCategory(Context context) {
40 this(context, null)
    [all...]

Completed in 697 milliseconds

1 2 3 4 5 6 7 8 91011>>