HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 1 - 25 of 13136) 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/core/v8/
ActiveDOMCallback.cpp 40 ActiveDOMCallback::ActiveDOMCallback(ExecutionContext* context)
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)->script()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
OESTextureFloat.cpp 32 OESTextureFloat::OESTextureFloat(WebGLRenderingContextBase* context)
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)
53 return adoptRefWillBeNoop(new OESTextureFloat(context));
56 bool OESTextureFloat::supported(WebGLRenderingContextBase* context)
58 return context->extensionsUtil()->supportsExtension("GL_OES_texture_float");
WebGLCompressedTextureATC.cpp 32 WebGLCompressedTextureATC::WebGLCompressedTextureATC(WebGLRenderingContextBase* context)
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)
51 return adoptRefWillBeNoop(new WebGLCompressedTextureATC(context));
54 bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context)
56 return context->extensionsUtil()->supportsExtension("GL_AMD_compressed_ATC_texture");
WebGLCompressedTexturePVRTC.cpp 34 WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContextBase* context)
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)
54 return adoptRefWillBeNoop(new WebGLCompressedTexturePVRTC(context));
57 bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context)
59 return context->extensionsUtil()->supportsExtension("GL_IMG_texture_compression_pvrtc")
    [all...]
WebGLCompressedTextureS3TC.cpp 34 WebGLCompressedTextureS3TC::WebGLCompressedTextureS3TC(WebGLRenderingContextBase* context)
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)
54 return adoptRefWillBeNoop(new WebGLCompressedTextureS3TC(context));
57 bool WebGLCompressedTextureS3TC::supported(WebGLRenderingContextBase* context)
59 Extensions3DUtil* extensionsUtil = context->extensionsUtil()
    [all...]
EXTBlendMinMax.cpp 11 EXTBlendMinMax::EXTBlendMinMax(WebGLRenderingContextBase* context)
12 : WebGLExtension(context)
14 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_blend_minmax");
26 PassRefPtrWillBeRawPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
28 return adoptRefWillBeNoop(new EXTBlendMinMax(context));
31 bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context)
33 return context->extensionsUtil()->supportsExtension("GL_EXT_blend_minmax");
EXTFragDepth.cpp 32 EXTFragDepth::EXTFragDepth(WebGLRenderingContextBase* context)
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_frag_depth");
47 PassRefPtrWillBeRawPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context)
49 return adoptRefWillBeNoop(new EXTFragDepth(context));
52 bool EXTFragDepth::supported(WebGLRenderingContextBase* context)
54 return context->extensionsUtil()->supportsExtension("GL_EXT_frag_depth");
EXTShaderTextureLOD.cpp 11 EXTShaderTextureLOD::EXTShaderTextureLOD(WebGLRenderingContextBase* context)
12 : WebGLExtension(context)
14 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_shader_texture_lod");
26 PassRefPtrWillBeRawPtr<EXTShaderTextureLOD> EXTShaderTextureLOD::create(WebGLRenderingContextBase* context)
28 return adoptRefWillBeNoop(new EXTShaderTextureLOD(context));
31 bool EXTShaderTextureLOD::supported(WebGLRenderingContextBase* context)
33 return context->extensionsUtil()->supportsExtension("GL_EXT_shader_texture_lod");
EXTTextureFilterAnisotropic.cpp 32 EXTTextureFilterAnisotropic::EXTTextureFilterAnisotropic(WebGLRenderingContextBase* context)
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_EXT_texture_filter_anisotropic");
47 PassRefPtrWillBeRawPtr<EXTTextureFilterAnisotropic> EXTTextureFilterAnisotropic::create(WebGLRenderingContextBase* context)
49 return adoptRefWillBeNoop(new EXTTextureFilterAnisotropic(context));
52 bool EXTTextureFilterAnisotropic::supported(WebGLRenderingContextBase* context)
54 return context->extensionsUtil()->supportsExtension("GL_EXT_texture_filter_anisotropic");
OESElementIndexUint.cpp 32 OESElementIndexUint::OESElementIndexUint(WebGLRenderingContextBase* context)
33 : WebGLExtension(context)
35 context->extensionsUtil()->ensureExtensionEnabled("GL_OES_element_index_uint");
47 PassRefPtrWillBeRawPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContextBase* context)
49 return adoptRefWillBeNoop(new OESElementIndexUint(context));
52 bool OESElementIndexUint::supported(WebGLRenderingContextBase* context)
54 return context->extensionsUtil()->supportsExtension("GL_OES_element_index_uint");
  /external/linux-tools-perf/perf-3.12.0/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/conscrypt/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_free(context);
40 return context;
OpenSSLNativeReference.java 24 final long context; field in class:OpenSSLNativeReference
31 this.context = ctx;
  /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);
  /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/angle/src/compiler/translator/
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);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
ValidationCheck.java 10 private ValidatorContext context; field in class:ValidationCheck
13 return context.getNodeText(node);
16 protected void setContext(ValidatorContext context) {
17 if (this.context != null) {
20 this.context = context;
  /external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViERenderer.java 13 import android.content.Context;
18 public static SurfaceView CreateRenderer(Context context) {
19 return CreateRenderer(context, false);
22 public static SurfaceView CreateRenderer(Context context,
24 if(useOpenGLES2 == true && ViEAndroidGLES20.IsSupported(context))
25 return new ViEAndroidGLES20(context);
27 return new SurfaceView(context);
  /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 */
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...]
  /external/icu/icu4c/source/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...]

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>