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

1 2

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineEventOverview.js 46 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, 0, WebInspector.TimelineEventOverview._stripGradientHeight, categories[category]);
50 this._disabledCategoryFillStyle = WebInspector.TimelineUIUtils.createFillStyle(this._context, 0, WebInspector.TimelineEventOverview._stripGradientHeight,
81 this._context.fillStyle = "rgba(0, 0, 0, 0.05)";
83 this._context.fillRect(0.5, i * stripHeight + 0.5, this._canvas.width, stripHeight);
139 this._context.save();
140 this._context.translate(x, y);
141 this._context.beginPath();
142 this._context.scale(1, innerStripHeight / WebInspector.TimelineEventOverview._stripGradientHeight);
143 this._context.fillStyle = category.hidden ? this._disabledCategoryFillStyle : this._fillStyles[category.name];
144 this._context.fillRect(0, 0, width, WebInspector.TimelineEventOverview._stripGradientHeight)
    [all...]
TimelineFrameOverview.js 55 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, this._maxInnerBarWidth, 0, categories[category]);
57 this._frameTopShadeGradient = this._context.createLinearGradient(0, 0, 0, this._topPadding);
94 this._context.save();
97 this._context.fillStyle = this._frameTopShadeGradient;
98 this._context.fillRect(0, 0, this._canvas.width, this._topPadding);
100 this._context.restore();
194 this._context.save();
195 this._context.beginPath();
196 this._context.font = (10 * window.devicePixelRatio) + "px " + window.getComputedStyle(this.element, null).getPropertyValue("font-family");
197 this._context.textAlign = "right"
    [all...]
TimelineMemoryOverview.js 105 var ctx = this._context;
PaintProfilerView.js 49 this._context = this._canvas.getContext("2d");
168 this._context.fillStyle = categories[categoryName].color;
169 this._context.fillRect(x, y, this._innerBarWidth, heightByCategory[categoryName]);
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioTrack.java 26 private Context _context; field in class:WebRtcAudioTrack
96 if (_audioManager == null && _context != null) {
98 _context.getSystemService(Context.AUDIO_SERVICE);
215 if (_audioManager == null && _context != null) {
217 _context.getSystemService(Context.AUDIO_SERVICE);
265 if (_audioManager == null && _context != null) {
267 _context.getSystemService(Context.AUDIO_SERVICE);
285 if (_audioManager == null && _context != null) {
287 _context.getSystemService(Context.AUDIO_SERVICE);
WebRtcAudioRecord.java 26 private Context _context; field in class:WebRtcAudioRecord
  /external/chromium_org/third_party/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]) {
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmametadatapass.py 195 self._context = None
201 return EcmaContext(type, self._token, self._context)
213 self._context = self._CreateContext(type)
224 top_context = self._context
226 self._context = top_context.parent
227 if self._context:
249 if self._context.type == EcmaContext.IMPLIED_BLOCK:
266 if self._context.type in EcmaContext.BLOCK_TYPES:
272 parent = self._context.parent
276 elif self._context.type == EcmaContext.ARRAY_LITERAL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/screencast/
ScreencastView.js 89 this._context = this._canvasElement.getContext("2d");
90 this._checkerboardPattern = this._createCheckerboardPattern(this._context);
457 this._context.save();
458 this._context.scale(window.devicePixelRatio, window.devicePixelRatio);
461 this._context.save();
462 this._context.fillStyle = this._checkerboardPattern;
463 this._context.fillRect(0, 0, canvasWidth, this._screenOffsetTop * this._screenZoom);
464 this._context.fillRect(0, this._screenOffsetTop * this._screenZoom + this._imageElement.naturalHeight * this._imageZoom, canvasWidth, canvasHeight);
465 this._context.restore();
468 this._context.save()
    [all...]
  /external/chromium_org/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/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCOpenGLVideoRenderer.mm 163 EAGLContext* _context;
165 NSOpenGLContext* _context;
195 _context = context;
221 [_context flushBuffer];
265 NSAssert(_context, @"context shouldn't be nil");
267 if ([EAGLContext currentContext] != _context) {
268 [EAGLContext setCurrentContext:_context];
271 if ([NSOpenGLContext currentContext] != _context) {
272 [_context makeCurrentContext];
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.h 61 _EGL_DRIVER_TYPECAST(drvname ## _context, _EGLContext, obj) \
  /external/mesa3d/src/egl/main/
egldriver.h 61 _EGL_DRIVER_TYPECAST(drvname ## _context, _EGLContext, obj) \
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_context.c     [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_backend.py 36 self._context = context
77 if c['id'] == self._context['id']:
87 return self._context['webSocketDebuggerUrl']
222 return self._context['id'] in [c['id'] for c in contexts]
inspector_backend_list.py 41 def ShouldIncludeContext(self, _context):
  /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/mesa3d/src/gallium/drivers/trace/
tr_context.c     [all...]
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/jinja2/
runtime.py 258 self._context = context
266 return self._context.environment. \
269 return BlockReference(self.name, self._context, self._stack,
274 rv = concat(self._stack[self._depth](self._context))
275 if self._context.eval_ctx.autoescape:
  /external/chromium_org/third_party/mesa/src/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...]
  /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 1082 milliseconds

1 2