HomeSort by relevance Sort by last modified time
    Searched full:_context (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 141 _context = context;
143 CGContextRetain(_context);
151 CGImageRef image = CGBitmapContextCreateImage(_context);
165 CGAffineTransform ctm = CGContextGetCTM(_context);
166 CGContextSaveGState(_context);
172 CGContextTranslateCTM(_context, -offset_x, -offset_y);
173 CGContextConcatCTM(_context, CGAffineTransformMake(1, 0, 0, -1, offset_x,
180 CGContextRestoreGState(_context);
183 CGContextRestoreGState(_context);
185 if (_context) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
search_s.h 17 _CRTIMP void *__cdecl _lfind_s(const void *_Key,const void *_Base,unsigned int *_NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(void *,const void *,const void *),void *_Context);
18 _CRTIMP void *__cdecl _lsearch_s(const void *_Key,void *_Base,unsigned int *_NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(void *,const void *,const void *),void *_Context);
string_s.h 31 _CRTIMP char *__cdecl strtok_s(char *_Str,const char *_Delim,char **_Context);
32 _CRTIMP char *__cdecl _strtok_s_l(char *_Str,const char *_Delim,char **_Context,_locale_t _Locale);
38 _CRTIMP wchar_t *__cdecl wcstok_s(wchar_t *_Str,const wchar_t *_Delim,wchar_t **_Context);
55 _CRTIMP wchar_t *__cdecl _wcstok_s_l(wchar_t *_Str,const wchar_t *_Delim,wchar_t **_Context,_locale_t _Locale);
mbstring_s.h 39 _CRTIMP unsigned char *__cdecl _mbstok_s(unsigned char *_Str,const unsigned char *_Delim,unsigned char **_Context);
40 _CRTIMP unsigned char *__cdecl _mbstok_s_l(unsigned char *_Str,const unsigned char *_Delim,unsigned char **_Context,_locale_t _Locale);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
excpt.h 30 struct _CONTEXT;
32 EXCEPTION_DISPOSITION __cdecl _except_handler(struct _EXCEPTION_RECORD *_ExceptionRecord,void *_EstablisherFrame,struct _CONTEXT *_ContextRecord,void *_DispatcherContext);
37 struct _CONTEXT;
40 __MINGW_EXTENSION _CRTIMP EXCEPTION_DISPOSITION __cdecl __C_specific_handler (struct _EXCEPTION_RECORD *_ExceptionRecord,unsigned __int64 _MemoryStackFp,unsigned __int64 _BackingStoreFp,struct _CONTEXT *_ContextRecord,struct _DISPATCHER_CONTEXT *_DispatcherContext,unsigned __int64 _GlobalPointer);
44 struct _CONTEXT;
84 typedef EXCEPTION_DISPOSITION (*PEXCEPTION_HANDLER)(struct _EXCEPTION_RECORD*, void*, struct _CONTEXT*, void*);
93 EXCEPTION_DISPOSITION (*handler)(struct _EXCEPTION_RECORD*, void*, struct _CONTEXT*, void*);
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_view.mm 21 EAGLContext* _context;
92 _context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
94 if (!_context) {
98 if (![EAGLContext setCurrentContext:_context]) {
109 [_context renderbufferStorage:GL_RENDERBUFFER
133 if (![_context presentRenderbuffer:GL_RENDERBUFFER]) {
146 if (![EAGLContext setCurrentContext:_context]) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
AccountServiceProxy.java 31 public AccountServiceProxy(Context _context) {
32 super(_context, getIntentForEmailPackage(_context, "ACCOUNT_INTENT"));
PolicyServiceProxy.java 34 public PolicyServiceProxy(Context _context) {
35 super(_context, getIntentForEmailPackage(_context, "POLICY_INTENT"));
EmailServiceProxy.java 77 public EmailServiceProxy(Context _context, Class<?> _class) {
78 super(_context, new Intent(_context, _class));
79 TempDirectory.setTempDirectory(_context);
85 public EmailServiceProxy(Context _context, Intent _intent) {
86 super(_context, _intent);
88 Device.getDeviceId(_context);
91 TempDirectory.setTempDirectory(_context);
  /external/jetty/src/java/org/eclipse/jetty/continuation/
ContinuationFilter.java 60 ServletContext _context; field in class:ContinuationFilter
66 _context = filterConfig.getServletContext();
85 _faux=!(jetty_7_or_greater || _jetty6 || _context.getMajorVersion()>=3);
89 _context.log("ContinuationFilter "+
150 _context.log(string);
159 _context.log(string+":"+th);
161 _context.log(string,th);
Servlet3Continuation.java 47 private AsyncContext _context; field in class:Servlet3Continuation
111 if (_context!=null)
112 _context.addListener(wrapped);
120 AsyncContext context=_context;
123 _context.complete();
166 AsyncContext context=_context;
170 _context.dispatch();
177 if (_context!=null)
178 _context.setTimeout(timeoutMs);
188 _context=_request.startAsync()
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
ecmametadatapass.py 242 self._context = None
248 return EcmaContext(context_type, self._token, self._context)
260 self._context = self._CreateContext(context_type)
271 top_context = self._context
273 self._context = top_context.parent
274 if self._context:
296 if self._context.type == EcmaContext.IMPLIED_BLOCK:
313 if self._context.type in EcmaContext.BLOCK_TYPES:
319 parent = self._context.parent
323 elif self._context.type == EcmaContext.ARRAY_LITERAL
    [all...]
  /external/libunwind/doc/
unw_getcontext.tex 15 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*}\Var{ucp});\\
31 On IA-64, \Type{unw\_context\_t} has a layout that is compatible with
  /external/webrtc/webrtc/api/objc/
RTCOpenGLVideoRenderer.mm 146 EAGLContext *_context;
148 NSOpenGLContext *_context;
183 _context = context;
209 [_context flushBuffer];
253 NSAssert(_context, @"context shouldn't be nil");
255 if ([EAGLContext currentContext] != _context) {
256 [EAGLContext setCurrentContext:_context];
259 if ([NSOpenGLContext currentContext] != _context) {
260 [_context makeCurrentContext];
373 BOOL hasUnpackRowLength = _context.API == kEAGLRenderingAPIOpenGLES3
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
TagLibConfiguration.java 88 private WebAppContext _context; field in class:TagLibConfiguration.TagLibListener
91 _context = context;
116 ClassLoader loader = _context.getClassLoader();
123 Collection<Resource> tld_resources = (Collection<Resource>)_context.getAttribute(TLD_RESOURCES);
163 _context.addEventListener(l);
213 if (_context.getResourceAliases()!=null &&
214 _context.getBaseResource()!=null &&
215 _context.getBaseResource().exists())
217 Iterator<String> iter=_context.getResourceAliases().values().iterator();
225 Resource l=_context.getBaseResource().addPath(location)
    [all...]
WebAppClassLoader.java 65 private final Context _context; field in class:WebAppClassLoader
146 _context=context;
188 return _context;
226 Resource resource= _context.newResource(tokenizer.nextToken().trim());
297 PermissionCollection permissions=_context.getPermissions();
305 boolean system_class=_context.isSystemClass(name);
306 boolean server_class=_context.isServerClass(name);
311 if (_context.isParentLoaderPriority())
340 boolean system_class=_context.isSystemClass(name);
341 boolean server_class=_context.isServerClass(name)
    [all...]
DiscoveredAnnotation.java 37 protected WebAppContext _context; field in class:DiscoveredAnnotation
52 _context = context;
  /external/libchrome/base/debug/
stack_trace.h 22 struct _CONTEXT;
57 StackTrace(const _CONTEXT* context);
81 void InitTrace(const _CONTEXT* context_record);
  /external/mesa3d/src/gallium/drivers/trace/
tr_context.c     [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCOpenGLVideoRenderer.mm 167 EAGLContext* _context;
169 NSOpenGLContext* _context;
202 _context = context;
228 [_context flushBuffer];
272 NSAssert(_context, @"context shouldn't be nil");
274 if ([EAGLContext currentContext] != _context) {
275 [EAGLContext setCurrentContext:_context];
278 if ([NSOpenGLContext currentContext] != _context) {
279 [_context makeCurrentContext];
391 BOOL hasUnpackRowLength = _context.API == kEAGLRenderingAPIOpenGLES3
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
PutFilter.java 72 private ServletContext _context; field in class:PutFilter
82 _context=config.getServletContext();
84 _tmpdir=(File)_context.getAttribute("javax.servlet.context.tempdir");
86 if (_context.getRealPath("/")==null)
96 File base=new File(_context.getRealPath("/"));
160 _context.log(e.toString(),e);
248 _context.log(ex.toString(),ex);
262 _context.log(e.toString(),e);
286 _context.log(sex.toString(),sex);
ConcatServlet.java 69 ServletContext _context; field in class:ConcatServlet
75 _context=getServletContext();
102 String t = _context.getMimeType(parts[i]);
120 RequestDispatcher dispatcher=_context.getRequestDispatcher(parts[i]);
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_context.c 857 galahad_context_get_transfer(struct pipe_context *_context,
863 struct galahad_context *glhd_context = galahad_context(_context);
889 galahad_context_transfer_map(struct pipe_context *_context,
892 struct galahad_context *glhd_context = galahad_context(_context);
908 galahad_context_transfer_flush_region(struct pipe_context *_context,
912 struct galahad_context *glhd_context = galahad_context(_context);
924 galahad_context_transfer_unmap(struct pipe_context *_context,
927 struct galahad_context *glhd_context = galahad_context(_context);
946 galahad_context_transfer_inline_write(struct pipe_context *_context,
955 struct galahad_context *glhd_context = galahad_context(_context);
    [all...]
  /external/mesa3d/src/gallium/drivers/identity/
id_context.c 766 identity_context_get_transfer(struct pipe_context *_context,
772 struct identity_context *id_context = identity_context(_context);
798 identity_context_transfer_map(struct pipe_context *_context,
801 struct identity_context *id_context = identity_context(_context);
813 identity_context_transfer_flush_region(struct pipe_context *_context,
817 struct identity_context *id_context = identity_context(_context);
829 identity_context_transfer_unmap(struct pipe_context *_context,
832 struct identity_context *id_context = identity_context(_context);
843 identity_context_transfer_inline_write(struct pipe_context *_context,
852 struct identity_context *id_context = identity_context(_context);
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 1023 rbug_context_get_transfer(struct pipe_context *_context,
1029 struct rbug_context *rb_pipe = rbug_context(_context);
    [all...]

Completed in 858 milliseconds

1 2 3 4 5