Searched refs:context (Results 1 - 25 of 6370) 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/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DActiveDOMCallback.cpp40 ActiveDOMCallback::ActiveDOMCallback(ExecutionContext* context) argument
41 : ContextLifecycleObserver(context)
51 ExecutionContext* context = executionContext(); local
52 return context && !context->activeDOMObjectsAreSuspended() && !context->activeDOMObjectsAreStopped();
57 ExecutionContext* context = executionContext(); local
58 if (context && context->isWorkerGlobalScope()) {
59 WorkerScriptController* scriptController = toWorkerGlobalScope(context)
[all...]
/external/linux-tools-perf/perf-3.12.0/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/chromium_org/chrome/browser/profiles/
H A Dincognito_helpers.cc12 content::BrowserContext* context) {
13 return static_cast<Profile*>(context)->GetOriginalProfile();
17 content::BrowserContext* context) {
18 return context;
11 GetBrowserContextRedirectedInIncognito( content::BrowserContext* context) argument
16 GetBrowserContextOwnInstanceInIncognito( content::BrowserContext* context) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipherContext.java20 private final long context; field in class:OpenSSLCipherContext
27 this.context = ctx;
33 NativeCrypto.EVP_CIPHER_CTX_cleanup(context);
40 return context;
H A DOpenSSLNativeReference.java24 final long context; field in class:OpenSSLNativeReference
31 this.context = ctx;
/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/chromium_org/remoting/host/
H A Dchromoting_host_context_unittest.cc13 // 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
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_base.cc13 content::BrowserContext* context) {
15 static_cast<Profile*>(context));
12 FromBrowserContext( content::BrowserContext* context) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAddConsoleMessageTask.cpp34 void AddConsoleMessageTask::performTask(ExecutionContext* context) argument
36 context->addConsoleMessage(m_source, m_level, m_message);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLExtension.cpp32 WebGLExtension::WebGLExtension(WebGLRenderingContextBase* context) argument
33 : m_context(context)
H A DWebGLCompressedTexturePVRTC.cpp34 WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContextBase* context) argument
35 : WebGLExtension(context)
38 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG);
39 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG);
40 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG);
41 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG);
53 PassRefPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context) argument
55 return adoptRef(new WebGLCompressedTexturePVRTC(context));
58 bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context) argument
60 return context
[all...]
H A DWebGLCompressedTextureS3TC.cpp34 WebGLCompressedTextureS3TC::WebGLCompressedTextureS3TC(WebGLRenderingContextBase* context) argument
35 : WebGLExtension(context)
38 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_S3TC_DXT1_EXT);
39 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT1_EXT);
40 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT3_EXT);
41 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT5_EXT);
53 PassRefPtr<WebGLCompressedTextureS3TC> WebGLCompressedTextureS3TC::create(WebGLRenderingContextBase* context) argument
55 return adoptRef(new WebGLCompressedTextureS3TC(context));
58 bool WebGLCompressedTextureS3TC::supported(WebGLRenderingContextBase* context) argument
60 Extensions3DUtil* extensionsUtil = context
[all...]
H A DEXTBlendMinMax.cpp11 EXTBlendMinMax::EXTBlendMinMax(WebGLRenderingContextBase* context) argument
12 : WebGLExtension(context)
15 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_blend_minmax");
27 PassRefPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context) argument
29 return adoptRef(new EXTBlendMinMax(context));
32 bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context) argument
34 return context->extensionsUtil()->supportsExtension("GL_EXT_blend_minmax");
H A DEXTFragDepth.cpp32 EXTFragDepth::EXTFragDepth(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
36 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_frag_depth");
48 PassRefPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context) argument
50 return adoptRef(new EXTFragDepth(context));
53 bool EXTFragDepth::supported(WebGLRenderingContextBase* context) argument
55 return context->extensionsUtil()->supportsExtension("GL_EXT_frag_depth");
H A DEXTShaderTextureLOD.cpp11 EXTShaderTextureLOD::EXTShaderTextureLOD(WebGLRenderingContextBase* context) argument
12 : WebGLExtension(context)
15 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_shader_texture_lod");
27 PassRefPtr<EXTShaderTextureLOD> EXTShaderTextureLOD::create(WebGLRenderingContextBase* context) argument
29 return adoptRef(new EXTShaderTextureLOD(context));
32 bool EXTShaderTextureLOD::supported(WebGLRenderingContextBase* context) argument
34 return context->extensionsUtil()->supportsExtension("GL_EXT_shader_texture_lod");
H A DEXTTextureFilterAnisotropic.cpp32 EXTTextureFilterAnisotropic::EXTTextureFilterAnisotropic(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
36 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_texture_filter_anisotropic");
48 PassRefPtr<EXTTextureFilterAnisotropic> EXTTextureFilterAnisotropic::create(WebGLRenderingContextBase* context) argument
50 return adoptRef(new EXTTextureFilterAnisotropic(context));
53 bool EXTTextureFilterAnisotropic::supported(WebGLRenderingContextBase* context) argument
55 return context->extensionsUtil()->supportsExtension("GL_EXT_texture_filter_anisotropic");
H A DOESElementIndexUint.cpp32 OESElementIndexUint::OESElementIndexUint(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
36 context->extensionsUtil()->ensureExtensionEnabled("GL_OES_element_index_uint");
48 PassRefPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContextBase* context) argument
50 return adoptRef(new OESElementIndexUint(context));
53 bool OESElementIndexUint::supported(WebGLRenderingContextBase* context) argument
55 return context->extensionsUtil()->supportsExtension("GL_OES_element_index_uint");
H A DOESStandardDerivatives.cpp32 OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
36 context->extensionsUtil()->ensureExtensionEnabled("GL_OES_standard_derivatives");
48 PassRefPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContextBase* context) argument
50 return adoptRef(new OESStandardDerivatives(context));
53 bool OESStandardDerivatives::supported(WebGLRenderingContextBase* context) argument
55 return context->extensionsUtil()->supportsExtension("GL_OES_standard_derivatives");
/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dglslang.h8 extern int glslang_initialize(TParseContext* context);
9 extern int glslang_finalize(TParseContext* context);
14 TParseContext* context);
15 extern int glslang_parse(TParseContext* context);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DValidationCheck.java10 private ValidatorContext context; field in class:ValidationCheck
13 return context.getNodeText(node);
16 protected void setContext(ValidatorContext context) { argument
17 if (this.context != null) {
20 this.context = context;
/external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViERenderer.java18 public static SurfaceView CreateRenderer(Context context) { argument
19 return CreateRenderer(context, false);
22 public static SurfaceView CreateRenderer(Context context, argument
24 if(useOpenGLES2 == true && ViEAndroidGLES20.IsSupported(context))
25 return new ViEAndroidGLES20(context);
27 return new SurfaceView(context);
/external/chromium_org/third_party/icu/source/i18n/
H A DdecContext.c20 /* 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) { argument
55 context->status&=~mask;
56 return context;
60 /* decContextDefault -- initialize a context structure */
62 /* context i
72 uprv_decContextDefault(decContext *context, Int kind) argument
137 uprv_decContextGetRounding(decContext *context) argument
149 uprv_decContextGetStatus(decContext *context) argument
165 uprv_decContextRestoreStatus(decContext *context, uInt newstatus, uInt mask) argument
182 uprv_decContextSaveStatus(decContext *context, uInt mask) argument
195 uprv_decContextSetRounding(decContext *context, enum rounding newround) argument
211 uprv_decContextSetStatus(decContext *context, uInt status) argument
230 uprv_decContextSetStatusFromString(decContext *context, const char *string) argument
281 uprv_decContextSetStatusFromStringQuiet(decContext *context, const char *string) argument
327 uprv_decContextSetStatusQuiet(decContext *context, uInt status) argument
339 uprv_decContextStatusToString(const decContext *context) argument
419 uprv_decContextTestStatus(decContext *context, uInt mask) argument
431 uprv_decContextZeroStatus(decContext *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...]

Completed in 912 milliseconds

1234567891011>>