Searched refs:context (Results 26 - 50 of 2231) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/
H A DChromiumThreading.cpp41 void ChromiumThreading::callOnMainThread(void (*func)(void*), void* context) argument
43 WebKit::webKitClient()->callOnMainThread(func, context);
/external/v8/test/cctest/
H A Dtest-decls.cc158 DeclarationContext* context = GetInstance(info); local
159 context->get_count_++;
160 return context->Get(key);
167 DeclarationContext* context = GetInstance(info); local
168 context->set_count_++;
169 return context->Set(key, value);
175 DeclarationContext* context = GetInstance(info); local
176 context->query_count_++;
177 return context->Query(key);
207 { DeclarationContext context; local
215 { DeclarationContext context; local
223 { DeclarationContext context; local
231 { DeclarationContext context; local
239 { DeclarationContext context; local
262 { PresentPropertyContext context; local
270 { PresentPropertyContext context; local
278 { PresentPropertyContext context; local
286 { PresentPropertyContext context; local
294 { PresentPropertyContext context; local
316 { AbsentPropertyContext context; local
324 { AbsentPropertyContext context; local
332 { AbsentPropertyContext context; local
340 { AbsentPropertyContext context; local
348 { AbsentPropertyContext context; local
356 { AbsentPropertyContext context; local
406 { AppearingPropertyContext context; local
414 { AppearingPropertyContext context; local
422 { AppearingPropertyContext context; local
430 { AppearingPropertyContext context; local
438 { AppearingPropertyContext context; local
498 { ReappearingPropertyContext context; local
528 { ExistsInPrototypeContext context; local
536 { ExistsInPrototypeContext context; local
544 { ExistsInPrototypeContext context; local
552 { ExistsInPrototypeContext context; local
560 { ExistsInPrototypeContext context; local
588 { AbsentInPrototypeContext context; local
[all...]
/external/skia/src/gpu/
H A DSkGpuCanvas.cpp18 SkGpuCanvas::SkGpuCanvas(GrContext* context, GrRenderTarget* renderTarget) { argument
19 SkASSERT(context);
20 fContext = context;
23 this->setDevice(new SkGpuDevice(context, renderTarget))->unref();
/external/webkit/Source/JavaScriptCore/wtf/chromium/
H A DChromiumThreading.h39 static void callOnMainThread(void (*func)(void*), void* context);
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapeContainerCheckContextInfo.h39 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context;
42 - (void*)context;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DExceptionWithContext.java23 * Exception which carries around structured context.
27 /** {@code non-null;} human-oriented context of the exception */
28 private StringBuffer context; field in class:ExceptionWithContext
31 * Augments the given exception with the given context, and return the
37 * @param str {@code non-null;} context to add
83 String ctx = ((ExceptionWithContext) cause).context.toString();
84 context = new StringBuffer(ctx.length() + 200);
85 context.append(ctx);
87 context = new StringBuffer(200);
95 out.println(context);
[all...]
/external/libselinux/src/
H A Dfsetfilecon.c10 int fsetfilecon(int fd, const security_context_t context) argument
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const security_context_t context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const security_context_t context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/libvpx/
H A Dmd5_utils.h37 void MD5Init(struct MD5Context *context);
38 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
39 void MD5Final(unsigned char digest[16], struct MD5Context *context);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DExceptionWithContext.java31 * Exception which carries around structured context.
35 /** non-null; human-oriented context of the exception */
36 private StringBuffer context; field in class:ExceptionWithContext
39 * Augments the given exception with the given context, and return the
45 * @param str non-null; context to add
91 String ctx = ((ExceptionWithContext) cause).context.toString();
92 context = new StringBuffer(ctx.length() + 200);
93 context.append(ctx);
95 context = new StringBuffer(200);
103 out.println(context);
[all...]
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNode.h33 extern JSObjectRef JSNode_new(JSContextRef context, Node* node);
34 extern JSClassRef JSNode_class(JSContextRef context);
35 extern JSObjectRef JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
/external/webkit/Source/WebCore/dom/
H A DMessageChannel.cpp35 MessageChannel::MessageChannel(ScriptExecutionContext* context) argument
36 : m_port1(MessagePort::create(*context))
37 , m_port2(MessagePort::create(*context))
/external/webkit/Source/WebCore/platform/
H A DLanguage.h37 typedef void (*LanguageChangeObserverFunction)(void* context);
38 void addLanguageChangeObserver(void* context, LanguageChangeObserverFunction);
39 void removeLanguageChangeObserver(void* context);
/external/webkit/Source/WebCore/platform/graphics/
H A DGeneratedImage.cpp37 void GeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp) argument
39 context->save();
40 context->setCompositeOperation(compositeOp);
41 context->clip(dstRect);
42 context->translate(dstRect.x(), dstRect.y());
44 context->scale(FloatSize(dstRect.width() / srcRect.width(), dstRect.height() / srcRect.height()));
45 context->translate(-srcRect.x(), -srcRect.y());
46 context->fillRect(FloatRect(FloatPoint(), m_size), *m_generator.get());
47 context->restore();
50 void GeneratedImage::drawPattern(GraphicsContext* context, cons argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DIconChromium.cpp48 void Icon::paint(GraphicsContext* context, const IntRect& rect) argument
50 if (context->paintingDisabled())
55 context->drawImage(m_icon.get(), ColorSpaceDeviceRGB, rect);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DBicubicShader.cpp41 BicubicShader::BicubicShader(GraphicsContext3D* context, unsigned program) argument
42 : Shader(context, program)
43 , m_matrixLocation(context->getUniformLocation(program, "matrix"))
44 , m_texMatrixLocation(context->getUniformLocation(program, "texMatrix"))
45 , m_coefficientsLocation(context->getUniformLocation(program, "coefficients"))
46 , m_imageIncrementLocation(context->getUniformLocation(program, "imageIncrement"))
47 , m_imageLocation(context->getUniformLocation(program, "image"))
48 , m_alphaLocation(context->getUniformLocation(program, "alpha"))
49 , m_positionLocation(context->getAttribLocation(program, "position"))
53 PassOwnPtr<BicubicShader> BicubicShader::create(GraphicsContext3D* context) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/wpa_supplicant_8/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5_i.h18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
H A Dsha1_i.h18 void SHA1Init(struct SHA1Context *context);
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
20 void SHA1Final(unsigned char digest[20], struct SHA1Context *context);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java206 * @param context The context node if this iteration.
211 public int next(int context, int current) argument
220 * @param context The context node of this iteration.
226 public int next(int context, int current, int expandedTypeID) argument
248 * By the nature of the stateless traversal, the context node can not be
252 * @param context The context node of this traversal.
256 public int first(int context) argument
273 first(int context, int expandedTypeID) argument
294 next(int context, int current) argument
310 next(int context, int current, int expandedTypeID) argument
408 first(int context) argument
427 first(int context, int expandedTypeID) argument
460 next(int context, int current) argument
475 next(int context, int current, int expandedTypeID) argument
679 first(int context, int expandedTypeID) argument
701 next(int context, int current) argument
730 next(int context, int current, int expandedTypeID) argument
785 first(int context) argument
805 next(int context, int current) argument
840 first(int context) argument
878 first(int context, int expandedTypeID) argument
926 next(int context, int current) argument
958 next(int context, int current, int expandedTypeID) argument
994 next(int context, int current) argument
1009 next(int context, int current, int expandedTypeID) argument
1036 next(int context, int current) argument
1054 next(int context, int current, int expandedTypeID) argument
1087 next(int context, int current) argument
1105 next(int context, int current, int expandedTypeID) argument
1141 first(int context) argument
1183 next(int context, int current) argument
1201 next(int context, int current, int expandedTypeID) argument
1245 next(int context, int current) argument
1274 next(int context, int current, int expandedTypeID) argument
1309 next(int context, int current) argument
1337 next(int context, int current, int expandedTypeID) argument
1370 next(int context, int current) argument
1385 next(int context, int current, int expandedTypeID) argument
1413 first(int context) argument
1430 first(int context, int expandedTypeID) argument
1443 next(int context, int current) argument
1458 next(int context, int current, int expandedTypeID) argument
1477 first(int context) argument
1490 first(int context, int expandedTypeID) argument
1504 next(int context, int current) argument
1530 next(int context, int current, int expandedTypeID) argument
1564 first(int context, int expandedTypeID) argument
1579 next(int context, int current) argument
1594 next(int context, int current, int expandedTypeID) argument
1638 first(int context) argument
1657 first(int context, int expandedTypeID) argument
1709 first(int context) argument
1728 first(int context, int expandedTypeID) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Dglslang.y29 #define YYLEX_PARAM context->scanner
34 %parse-param {TParseContext* context}
70 extern void yyerror(TParseContext* context, const char* reason);
73 if (context->shaderType != SH_FRAGMENT_SHADER && \
74 context->shaderType != SH_VERTEX_SHADER) { \
75 context->error(L, " supported in vertex/fragment shaders only ", S, "", ""); \
76 context->recover(); \
81 if (context->shaderType != SH_VERTEX_SHADER) { \
82 context->error(L, " supported in vertex shaders only ", S, "", ""); \
83 context
[all...]

Completed in 402 milliseconds

1234567891011>>