HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 1 - 25 of 9407) 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/chromium_org/third_party/WebKit/Source/bindings/v8/
ActiveDOMCallback.cpp 40 ActiveDOMCallback::ActiveDOMCallback(ScriptExecutionContext* context)
41 : ContextLifecycleObserver(context)
51 ScriptExecutionContext* context = scriptExecutionContext(); local
52 return context && !context->activeDOMObjectsAreSuspended() && !context->activeDOMObjectsAreStopped();
57 ScriptExecutionContext* context = scriptExecutionContext(); local
58 if (context && context->isWorkerGlobalScope()) {
59 WorkerScriptController* scriptController = toWorkerGlobalScope(context)->script()
    [all...]
  /external/chromium_org/cc/output/
program_binding.cc 31 void ProgramBindingBase::Init(WebGraphicsContext3D* context,
35 vertex_shader_id_ = LoadShader(context, GL_VERTEX_SHADER, vertex_shader);
37 if (!IsContextLost(context))
43 LoadShader(context, GL_FRAGMENT_SHADER, fragment_shader);
45 GLC(context, context->deleteShader(vertex_shader_id_));
47 if (!IsContextLost(context))
53 CreateShaderProgram(context, vertex_shader_id_, fragment_shader_id_);
54 DCHECK(program_ || IsContextLost(context));
57 void ProgramBindingBase::Link(WebGraphicsContext3D* context) {
    [all...]
  /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/chromium_org/chrome/browser/profiles/
incognito_helpers.cc 12 content::BrowserContext* context) {
13 return static_cast<Profile*>(context)->GetOriginalProfile();
17 content::BrowserContext* context) {
18 return 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);
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLCipherContext.java 20 private final long context; field in class:OpenSSLCipherContext
27 this.context = ctx;
33 NativeCrypto.EVP_CIPHER_CTX_cleanup(context);
40 return context;
OpenSSLDigestContext.java 20 private final long context; field in class:OpenSSLDigestContext
27 this.context = ctx;
33 NativeCrypto.EVP_MD_CTX_destroy(context);
40 return context;
  /external/chromium_org/remoting/host/
chromoting_host_context_unittest.cc 13 // A simple test that starts and stop the context. This tests the context
19 scoped_ptr<ChromotingHostContext> context = local
23 EXPECT_TRUE(context);
24 if (!context)
26 EXPECT_TRUE(context->audio_task_runner().get());
27 EXPECT_TRUE(context->video_capture_task_runner().get());
28 EXPECT_TRUE(context->video_encode_task_runner().get());
29 EXPECT_TRUE(context->file_task_runner().get());
30 EXPECT_TRUE(context->input_task_runner().get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLExtension.cpp 32 WebGLExtension::WebGLExtension(WebGLRenderingContext* context)
33 : m_context(context)
WebGLCompressedTexturePVRTC.cpp 35 WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContext* context)
36 : WebGLExtension(context)
39 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_RGB_PVRTC_4BPPV1_IMG);
40 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_RGB_PVRTC_2BPPV1_IMG);
41 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_RGBA_PVRTC_4BPPV1_IMG);
42 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_RGBA_PVRTC_2BPPV1_IMG);
54 PassRefPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContext* context)
56 return adoptRef(new WebGLCompressedTexturePVRTC(context));
59 bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContext* context)
61 Extensions3D* extensions = context->graphicsContext3D()->getExtensions()
    [all...]
WebGLCompressedTextureATC.cpp 34 WebGLCompressedTextureATC::WebGLCompressedTextureATC(WebGLRenderingContext* context)
35 : WebGLExtension(context)
38 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_ATC_RGB_AMD);
39 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_ATC_RGBA_EXPLICIT_ALPHA_AMD);
40 context->addCompressedTextureFormat(Extensions3D::COMPRESSED_ATC_RGBA_INTERPOLATED_ALPHA_AMD);
52 PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContext* context)
54 return adoptRef(new WebGLCompressedTextureATC(context));
57 bool WebGLCompressedTextureATC::supported(WebGLRenderingContext* context)
59 Extensions3D* extensions = context->graphicsContext3D()->getExtensions();
  /external/chromium_org/third_party/angle_dx11/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);
  /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);
  /frameworks/support/v4/kitkat/android/support/v4/content/
ContextCompatKitKat.java 19 import android.content.Context;
24 public static File[] getExternalCacheDirs(Context context) {
25 return context.getExternalCacheDirs();
28 public static File[] getExternalFilesDirs(Context context, String type) {
29 return context.getExternalFilesDirs(type);
32 public static File[] getObbDirs(Context context) {
33 return context.getObbDirs()
    [all...]
  /external/chromium_org/third_party/icu/source/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...]
  /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...]
  /external/chromium_org/ui/gl/
gl_context_win.cc 30 scoped_refptr<GLContext> context(new GLContextOSMesa(share_group));
31 if (!context->Initialize(compatible_surface, gpu_preference))
34 return context;
37 scoped_refptr<GLContext> context(new GLContextEGL(share_group));
38 if (!context->Initialize(compatible_surface, gpu_preference))
41 return context;
44 scoped_refptr<GLContext> context(new GLContextWGL(share_group));
45 if (!context->Initialize(compatible_surface, gpu_preference))
48 return context;
gl_context_x11.cc 32 scoped_refptr<GLContext> context(new GLContextOSMesa(share_group));
33 if (!context->Initialize(compatible_surface, gpu_preference))
36 return context;
39 scoped_refptr<GLContext> context(new GLContextGLX(share_group));
40 if (!context->Initialize(compatible_surface, gpu_preference))
43 return context;
46 scoped_refptr<GLContext> context(new GLContextEGL(share_group));
47 if (!context->Initialize(compatible_surface, gpu_preference))
50 return context;
  /external/chromium_org/third_party/WebKit/Source/modules/performance/
WorkerPerformance.cpp 40 WorkerPerformance::WorkerPerformance(ScriptExecutionContext* context)
41 : ContextLifecycleObserver(context)
51 ScriptExecutionContext* context = scriptExecutionContext(); local
52 ASSERT(context);
53 WorkerGlobalScope* workerGlobalScope = toWorkerGlobalScope(context);
  /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...]

Completed in 368 milliseconds

1 2 3 4 5 6 7 8 91011>>