Searched refs:context (Results 1 - 25 of 6625) 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/core/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/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DOESTextureFloat.cpp32 OESTextureFloat::OESTextureFloat(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 if (context->extensionsUtil()->ensureExtensionEnabled("GL_OES_texture_float")) {
37 context->extensionsUtil()->ensureExtensionEnabled("GL_CHROMIUM_color_buffer_float_rgba");
38 context->extensionsUtil()->ensureExtensionEnabled("GL_CHROMIUM_color_buffer_float_rgb");
51 PassRefPtrWillBeRawPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContextBase* context) argument
53 return adoptRefWillBeNoop(new OESTextureFloat(context));
56 bool OESTextureFloat::supported(WebGLRenderingContextBase* context) argument
58 return context->extensionsUtil()->supportsExtension("GL_OES_texture_float");
H A DWebGLCompressedTextureATC.cpp32 WebGLCompressedTextureATC::WebGLCompressedTextureATC(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 context->addCompressedTextureFormat(GC3D_COMPRESSED_ATC_RGB_AMD);
36 context->addCompressedTextureFormat(GC3D_COMPRESSED_ATC_RGBA_EXPLICIT_ALPHA_AMD);
37 context->addCompressedTextureFormat(GC3D_COMPRESSED_ATC_RGBA_INTERPOLATED_ALPHA_AMD);
49 PassRefPtrWillBeRawPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context) argument
51 return adoptRefWillBeNoop(new WebGLCompressedTextureATC(context));
54 bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context) argument
56 return context->extensionsUtil()->supportsExtension("GL_AMD_compressed_ATC_texture");
H A DWebGLCompressedTexturePVRTC.cpp34 WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContextBase* context) argument
35 : WebGLExtension(context)
37 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG);
38 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG);
39 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG);
40 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG);
52 PassRefPtrWillBeRawPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context) argument
54 return adoptRefWillBeNoop(new WebGLCompressedTexturePVRTC(context));
57 bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context) argument
59 return context
[all...]
H A DWebGLCompressedTextureS3TC.cpp34 WebGLCompressedTextureS3TC::WebGLCompressedTextureS3TC(WebGLRenderingContextBase* context) argument
35 : WebGLExtension(context)
37 context->addCompressedTextureFormat(GL_COMPRESSED_RGB_S3TC_DXT1_EXT);
38 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT1_EXT);
39 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT3_EXT);
40 context->addCompressedTextureFormat(GL_COMPRESSED_RGBA_S3TC_DXT5_EXT);
52 PassRefPtrWillBeRawPtr<WebGLCompressedTextureS3TC> WebGLCompressedTextureS3TC::create(WebGLRenderingContextBase* context) argument
54 return adoptRefWillBeNoop(new WebGLCompressedTextureS3TC(context));
57 bool WebGLCompressedTextureS3TC::supported(WebGLRenderingContextBase* context) argument
59 Extensions3DUtil* extensionsUtil = context
[all...]
H A DEXTBlendMinMax.cpp11 EXTBlendMinMax::EXTBlendMinMax(WebGLRenderingContextBase* context) argument
12 : WebGLExtension(context)
14 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_blend_minmax");
26 PassRefPtrWillBeRawPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context) argument
28 return adoptRefWillBeNoop(new EXTBlendMinMax(context));
31 bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context) argument
33 return context->extensionsUtil()->supportsExtension("GL_EXT_blend_minmax");
H A DEXTFragDepth.cpp32 EXTFragDepth::EXTFragDepth(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_frag_depth");
47 PassRefPtrWillBeRawPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context) argument
49 return adoptRefWillBeNoop(new EXTFragDepth(context));
52 bool EXTFragDepth::supported(WebGLRenderingContextBase* context) argument
54 return context->extensionsUtil()->supportsExtension("GL_EXT_frag_depth");
H A DEXTShaderTextureLOD.cpp11 EXTShaderTextureLOD::EXTShaderTextureLOD(WebGLRenderingContextBase* context) argument
12 : WebGLExtension(context)
14 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_shader_texture_lod");
26 PassRefPtrWillBeRawPtr<EXTShaderTextureLOD> EXTShaderTextureLOD::create(WebGLRenderingContextBase* context) argument
28 return adoptRefWillBeNoop(new EXTShaderTextureLOD(context));
31 bool EXTShaderTextureLOD::supported(WebGLRenderingContextBase* context) argument
33 return context->extensionsUtil()->supportsExtension("GL_EXT_shader_texture_lod");
H A DEXTTextureFilterAnisotropic.cpp32 EXTTextureFilterAnisotropic::EXTTextureFilterAnisotropic(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_texture_filter_anisotropic");
47 PassRefPtrWillBeRawPtr<EXTTextureFilterAnisotropic> EXTTextureFilterAnisotropic::create(WebGLRenderingContextBase* context) argument
49 return adoptRefWillBeNoop(new EXTTextureFilterAnisotropic(context));
52 bool EXTTextureFilterAnisotropic::supported(WebGLRenderingContextBase* context) argument
54 return context->extensionsUtil()->supportsExtension("GL_EXT_texture_filter_anisotropic");
H A DOESElementIndexUint.cpp32 OESElementIndexUint::OESElementIndexUint(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_OES_element_index_uint");
47 PassRefPtrWillBeRawPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContextBase* context) argument
49 return adoptRefWillBeNoop(new OESElementIndexUint(context));
52 bool OESElementIndexUint::supported(WebGLRenderingContextBase* context) argument
54 return context->extensionsUtil()->supportsExtension("GL_OES_element_index_uint");
H A DOESStandardDerivatives.cpp32 OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContextBase* context) argument
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_OES_standard_derivatives");
47 PassRefPtrWillBeRawPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContextBase* context) argument
49 return adoptRefWillBeNoop(new OESStandardDerivatives(context));
52 bool OESStandardDerivatives::supported(WebGLRenderingContextBase* context) argument
54 return context->extensionsUtil()->supportsExtension("GL_OES_standard_derivatives");
/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_free(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/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 */
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...]
/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 3110 milliseconds

1234567891011>>