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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/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/clang/test/Sema/
freemain.c 7 void* main(void* context, long size) {
8 if (context) return allocate(size);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang.h 8 extern int glslang_initialize(TParseContext* context);
9 extern int glslang_finalize(TParseContext* context);
14 TParseContext* context);
15 extern int glslang_parse(TParseContext* context);
  /external/linux-tools-perf/scripts/perl/Perf-Trace-Util/
Context.xs 2 * Context.xs. XS interfaces for perf script.
28 MODULE = Perf::Trace::Context PACKAGE = Perf::Trace::Context
32 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/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 */
38 /* context is the context structure to be queried */
41 /* returns context */
45 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) {
46 context->status&=~mask;
47 return context;
51 /* decContextDefault -- initialize a context structure *
    [all...]
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...]
  /frameworks/base/core/java/android/nfc/
NfcManager.java 19 import android.content.Context;
24 * Use {@link android.content.Context#getSystemService(java.lang.String)}
25 * with {@link Context#NFC_SERVICE} to create an {@link NfcManager},
29 * {@link NfcAdapter#getDefaultAdapter(android.content.Context)}.
37 * @see Context#getSystemService
38 * @see NfcAdapter#getDefaultAdapter(android.content.Context)
46 public NfcManager(Context context) {
48 context = context.getApplicationContext()
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
TransactionContextTest.java 33 TransactionContext context = new TransactionContext(false); local
34 context.markRawContactDirtyAndChanged(1L, false);
35 context.rawContactUpdated(1L);
36 context.rawContactInserted(1L, 1L);
37 context.syncStateUpdated(1L, new Object());
39 context.clearExceptSearchIndexUpdates();
41 Set<Long> newDirty = context.getDirtyRawContactIds();
42 Set<Long> newChanged = context.getChangedRawContactIds();
43 Set<Long> newInserted = context.getInsertedRawContactIds();
44 Set<Long> newUpdated = context.getUpdatedRawContactIds()
55 TransactionContext context = new TransactionContext(false); local
64 TransactionContext context = new TransactionContext(false); local
73 TransactionContext context = new TransactionContext(false); local
86 TransactionContext context = new TransactionContext(false); local
    [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/Source/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...]
  /external/webkit/Source/WebCore/platform/
Language.h 37 typedef void (*LanguageChangeObserverFunction)(void* context);
38 void addLanguageChangeObserver(void* context, LanguageChangeObserverFunction);
39 void removeLanguageChangeObserver(void* context);
  /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...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemView.java 19 import android.content.Context;
27 public CallLogListItemView(Context context) {
28 super(context);
31 public CallLogListItemView(Context context, AttributeSet attrs) {
32 super(context, attrs);
35 public CallLogListItemView(Context context, AttributeSet attrs, int defStyle) {
36 super(context, attrs, defStyle)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
Version.java 19 import android.content.Context;
26 static String getVersionName(Context context) {
27 return getPackageInfo(context).versionName;
30 static int getVersionCode(Context context) {
31 return getPackageInfo(context).versionCode;
34 static PackageInfo getPackageInfo(Context context) {
36 PackageManager packageManager = context.getPackageManager()
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionContextImplTest.java 42 SSLSessionContextImpl context = new SSLSessionContextImpl(); local
43 context.putSession(ses1);
44 context.putSession(ses2);
45 context.putSession(ses3);
47 for (Enumeration en = context.getIds(); en.hasMoreElements();) {
49 assertTrue(context.getSession(id) != null);
52 SSLSession ses = context.getSession(ses1.getId());
55 ses = context.getSession(ses3.getId());
60 SSLSessionContextImpl context = new SSLSessionContextImpl(); local
61 assertEquals(0, context.getSessionCacheSize())
74 SSLSessionContextImpl context = new SSLSessionContextImpl(); local
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioSourceNode.h 38 AudioSourceNode(AudioContext* context, double sampleRate)
39 : AudioNode(context, sampleRate)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
FallbackAccountType.java 19 import android.content.Context;
29 private FallbackAccountType(Context context, String resPackageName) {
40 addDataKindStructuredName(context);
41 addDataKindDisplayName(context);
42 addDataKindPhoneticName(context);
43 addDataKindNickname(context);
44 addDataKindPhone(context);
45 addDataKindEmail(context);
46 addDataKindStructuredPostal(context);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServReqTestSuite.java 21 import android.content.Context;
27 public static ArrayList<ReqTestCase> getTestSuite(Context context) {
28 initialize(context);
32 public static ReqTestCase getTestCase(Context context,
34 initialize(context);
44 private static void initialize(Context context) {
50 sTestSuite.add(new ServReqAllTestCase01(context));
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetProvider.java 23 import android.content.Context;
39 public void onReceive(Context context, Intent intent) {
44 AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
45 performUpdate(context, appWidgetManager,
46 appWidgetManager.getAppWidgetIds(getComponentName(context)));
48 super.onReceive(context, intent);
53 public void onUpdate(Context context, AppWidgetManager mngr, int[] ids) {
54 performUpdate(context, mngr, ids)
    [all...]
  /external/libnfc-nxp/src/
phLibNfc_discovery.h 34 phLibNfc_config_discovery_cb(void *context,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestBroadcastReceiver.java 4 import android.content.Context;
8 public Context context; field in class:TestBroadcastReceiver
12 public void onReceive(Context context, Intent intent) {
13 this.context = context;
  /external/webkit/Source/JavaScriptCore/wtf/chromium/
ChromiumThreading.h 39 static void callOnMainThread(void (*func)(void*), void* context);

Completed in 1095 milliseconds

1 2 3 4 5 6 7 8 91011>>