Home
last modified time | relevance | path

Searched full:this (Results 1 – 25 of 19816) sorted by relevance

12345678910>>...793

/external/curl/tests/data/
Dtest106016 # this is returned first since we get no proxy-auth
23 And you should ignore this data. aaaaaaaaaaaaaaaa
24 And you should ignore this data. aaaaaaaaaaaaaaaa
25 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
Dtest106117 # this is returned first since we get no proxy-auth
25 And you should ignore this data. aaaaaaaaaaaaaaaa
26 And you should ignore this data. aaaaaaaaaaaaaaaa
27 And you should ignore this data. aaaaaaaaaaaaaaaa
28 And you should ignore this data. aaaaaaaaaaaaaaaa
29 And you should ignore this data. aaaaaaaaaaaaaaaa
30 And you should ignore this data. aaaaaaaaaaaaaaaa
31 And you should ignore this data. aaaaaaaaaaaaaaaa
32 And you should ignore this data. aaaaaaaaaaaaaaaa
33 And you should ignore this data. aaaaaaaaaaaaaaaa
[all …]
/external/llvm/unittests/ADT/
DTinyPtrVectorTest.cpp5 // This file is distributed under the University of Illinois Open Source
85 this->expectValues(this->V, this->testArray(0)); in TYPED_TEST()
89 this->V.push_back(this->TestPtrs[0]); in TYPED_TEST()
90 this->expectValues(this->V, this->testArray(1)); in TYPED_TEST()
91 this->V.push_back(this->TestPtrs[1]); in TYPED_TEST()
92 this->expectValues(this->V, this->testArray(2)); in TYPED_TEST()
93 this->V.push_back(this->TestPtrs[2]); in TYPED_TEST()
94 this->expectValues(this->V, this->testArray(3)); in TYPED_TEST()
95 this->V.push_back(this->TestPtrs[3]); in TYPED_TEST()
96 this->expectValues(this->V, this->testArray(4)); in TYPED_TEST()
[all …]
/external/skia/src/gpu/gl/
DGrGLTestInterface.cpp4 * Use of this source code is governed by a BSD-style license that can be
19 fFunctions.fActiveTexture = bind_to_member(this, &GrGLTestInterface::activeTexture); in GrGLTestInterface()
20 fFunctions.fAttachShader = bind_to_member(this, &GrGLTestInterface::attachShader); in GrGLTestInterface()
21 fFunctions.fBeginQuery = bind_to_member(this, &GrGLTestInterface::beginQuery); in GrGLTestInterface()
22 fFunctions.fBindAttribLocation = bind_to_member(this, &GrGLTestInterface::bindAttribLocation); in GrGLTestInterface()
23 fFunctions.fBindBuffer = bind_to_member(this, &GrGLTestInterface::bindBuffer); in GrGLTestInterface()
24 fFunctions.fBindFramebuffer = bind_to_member(this, &GrGLTestInterface::bindFramebuffer); in GrGLTestInterface()
25 fFunctions.fBindRenderbuffer = bind_to_member(this, &GrGLTestInterface::bindRenderbuffer); in GrGLTestInterface()
26 fFunctions.fBindTexture = bind_to_member(this, &GrGLTestInterface::bindTexture); in GrGLTestInterface()
27 … fFunctions.fBindFragDataLocation = bind_to_member(this, &GrGLTestInterface::bindFragDataLocation); in GrGLTestInterface()
[all …]
/external/libvncserver/webclients/novnc/include/
Drfb.js25 this._rfb_host = '';
26 this._rfb_port = 5900;
27 this._rfb_password = '';
28 this._rfb_path = '';
30 this._rfb_state = 'disconnected';
31 this._rfb_version = 0;
32 this._rfb_max_version = 3.8;
33 this._rfb_auth_scheme = '';
35 this._rfb_tightvnc = false;
36 this._rfb_xvp_ver = 0;
[all …]
Dwebsock.js8 * via websockify. This is accomplished by base64 encoding the data
53 this._websocket = null; // WebSocket object
54 this._rQ = []; // Receive queue
55 this._rQi = 0; // Receive queue index
56 this._rQmax = 10000; // Max receive queue size before compacting
57 this._sQ = []; // Send queue
59 this._mode = 'base64'; // Current WebSocket mode: 'binary', 'base64'
60 this.maxBufferedAmount = 200;
62 this._eventHandlers = {
75 return this._sQ;
[all …]
/external/mesa3d/src/gallium/state_trackers/nine/
Dvolume9.c5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
38 NineVolume9_AllocateData( struct NineVolume9 *This ) in NineVolume9_AllocateData() argument
40 unsigned size = This->layer_stride * This->desc.Depth; in NineVolume9_AllocateData()
42 DBG("(%p(This=%p),level=%u) Allocating 0x%x bytes of system memory.\n", in NineVolume9_AllocateData()
43 This->base.container, This, This->level, size); in NineVolume9_AllocateData()
45 This->data = (uint8_t *)align_calloc(size, 32); in NineVolume9_AllocateData()
46 if (!This->data) in NineVolume9_AllocateData()
52 NineVolume9_ctor( struct NineVolume9 *This, in NineVolume9_ctor() argument
63 DBG("This=%p pContainer=%p pDevice=%p pResource=%p Level=%u pDesc=%p\n", in NineVolume9_ctor()
[all …]
Dsurface9.c5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
48 NineSurface9_CreatePipeSurfaces( struct NineSurface9 *This );
51 NineSurface9_ctor( struct NineSurface9 *This, in NineSurface9_ctor() argument
65 DBG("This=%p pDevice=%p pResource=%p Level=%u Layer=%u pDesc=%p\n", in NineSurface9_ctor()
66 This, pParams->device, pResource, Level, Layer, pDesc); in NineSurface9_ctor()
68 /* Mark this as a special surface held by another internal resource. */ in NineSurface9_ctor()
82 This->data = (uint8_t *)user_buffer; in NineSurface9_ctor()
96 /* TODO: this is (except width and height) duplicate from in NineSurface9_ctor()
99 This->base.info.screen = pParams->device->screen; in NineSurface9_ctor()
[all …]
Dbasetexture9.c5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
41 NineBaseTexture9_ctor( struct NineBaseTexture9 *This, in NineBaseTexture9_ctor() argument
53 DBG("This=%p, pParams=%p initResource=%p Type=%d format=%d Pool=%d Usage=%d\n", in NineBaseTexture9_ctor()
54 This, pParams, initResource, Type, format, Pool, Usage); in NineBaseTexture9_ctor()
62 hr = NineResource9_ctor(&This->base, pParams, initResource, alloc, Type, Pool, Usage); in NineBaseTexture9_ctor()
66 This->format = format; in NineBaseTexture9_ctor()
67 This->mipfilter = (Usage & D3DUSAGE_AUTOGENMIPMAP) ? in NineBaseTexture9_ctor()
69 This->managed.lod = 0; in NineBaseTexture9_ctor()
70 This->managed.lod_resident = -1; in NineBaseTexture9_ctor()
[all …]
Dswapchain9.c5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
43 NineSwapChain9_ctor( struct NineSwapChain9 *This, in NineSwapChain9_ctor() argument
54 DBG("This=%p pDevice=%p pPresent=%p pCTX=%p hFocusWindow=%p\n", in NineSwapChain9_ctor()
55 This, pParams->device, pPresent, pCTX, hFocusWindow); in NineSwapChain9_ctor()
57 hr = NineUnknown_ctor(&This->base, pParams); in NineSwapChain9_ctor()
61 This->screen = NineDevice9_GetScreen(This->base.device); in NineSwapChain9_ctor()
62 This->implicit = implicit; in NineSwapChain9_ctor()
63 This->actx = pCTX; in NineSwapChain9_ctor()
64 This->present = pPresent; in NineSwapChain9_ctor()
[all …]
Dbuffer9.c6 * copy of this software and associated documentation files (the "Software"),
12 * The above copyright notice and this permission notice (including the next
41 NineBuffer9_ctor( struct NineBuffer9 *This, in NineBuffer9_ctor() argument
48 struct pipe_resource *info = &This->base.info; in NineBuffer9_ctor()
51 DBG("This=%p Size=0x%x Usage=%x Pool=%u\n", This, Size, Usage, Pool); in NineBuffer9_ctor()
55 This->maps = MALLOC(sizeof(struct NineTransfer)); in NineBuffer9_ctor()
56 if (!This->maps) in NineBuffer9_ctor()
58 This->nmaps = 0; in NineBuffer9_ctor()
59 This->maxmaps = 1; in NineBuffer9_ctor()
60 This->size = Size; in NineBuffer9_ctor()
[all …]
/external/pdfium/testing/resources/javascript/
Ddocument_props_expected.txt2 Alert: this.ADBE is undefined undefined
3 Alert: this.author is string Joe Random Author
4 Alert: this.baseURL is string
5 Alert: this.bookmarkRoot is undefined undefined
6 Alert: this.calculate is boolean true
7 Alert: this.Collab is undefined undefined
8 Alert: this.creationDate is string
9 Alert: this.creator is string Joe Random Creator
10 Alert: this.delay is boolean false
11 Alert: this.dirty is boolean false
[all …]
Ddocument_methods_expected.txt2 Alert: PASS: typeof this.addAnnot = function
3 Alert: PASS: this.addAnnot() = undefined
4 Alert: PASS: this.addAnnot(1, 2, "clams", [1, 2, 3]) = undefined
5 Alert: PASS: typeof this.addField = function
6 Alert: PASS: this.addField() = undefined
7 Alert: PASS: this.addField(1, 2, "clams", [1, 2, 3]) = undefined
8 Alert: PASS: typeof this.addLink = function
9 Alert: PASS: this.addLink() = undefined
10 Alert: PASS: this.addLink(1, 2, "clams", [1, 2, 3]) = undefined
11 Alert: PASS: typeof this.closeDoc = function
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dpa.h5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
69 // 1. We call this the current and previous simd vertex.
75 // This optimized PA is not cut aware, so only should be used by non-indexed draws or draws without
117 return (this->numPrimsComplete < this->numPrims) ? true : false; in HasWork()
130 return this->pfnPaFunc(*this, slot, verts); in Assemble()
136 return this->pfnPaSingleFunc(*this, slot, primIndex, verts); in AssembleSingle()
141 this->pfnPaFunc = this->pfnPaNextFunc; in NextPrim()
142 this->numSimdPrims = this->nextNumSimdPrims; in NextPrim()
143 this->numPrimsComplete += this->nextNumPrimsIncrement; in NextPrim()
[all …]
/external/mesa3d/src/compiler/glsl/
Dir_hierarchical_visitor.cpp5 * copy of this software and associated documentation files (the "Software"),
11 * The above copyright notice and this permission notice (including the next
29 this->base_ir = NULL; in ir_hierarchical_visitor()
30 this->callback_enter = NULL; in ir_hierarchical_visitor()
31 this->callback_leave = NULL; in ir_hierarchical_visitor()
32 this->data_enter = NULL; in ir_hierarchical_visitor()
33 this->data_leave = NULL; in ir_hierarchical_visitor()
34 this->in_assignee = false; in ir_hierarchical_visitor()
40 if (this->callback_enter != NULL) in visit()
41 this->callback_enter(ir, this->data_enter); in visit()
[all …]
/external/okhttp/website/static/
Dbootstrap.min.js6this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this)…
/external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
Dloopback.html46 this.videoCodec = videoCodec;
47 this.localStream = null;
48 this.remoteStream = null;
49 this.results = {cameraType: '', peerConnectionStats: [],
52 this.inFps = [];
53 this.outFps = [];
55 this.previousFrame = [];
56 this.identicalFrameSsimThreshold = 0.985;
57 this.frameComparator = new Ssim();
59 this.remoteVideo = document.getElementById("remoteVideo");
[all …]
/external/autotest/client/deps/webgl_mpd/src/resources/
DJ3DIMath.js8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 This class implements a 4x4 matrix. It has functions which duplicate the
127 this.$matrix = new WebKitCSSMatrix;
129 this.$matrix = new Object;
133 this.load(m);
137 this.load(m);
141 this.makeIdentity();
[all …]
/external/ImageMagick/www/js/
Dmagick.js6this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.tr…
7this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrol…
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the SmallVector class.
36 /// This is all the non-templated stuff common to all SmallVectors.
45 /// This is an implementation of the grow() method which only works
50 /// This returns size()*sizeof(T).
55 /// capacity_in_bytes - This returns capacity()*sizeof(T).
63 /// This is the part of SmallVectorTemplateBase which does not depend on whether
85 /// Return true if this is a smallvector which has not had dynamic
91 /// Put this vector in a state of being small.
96 void setEnd(T *P) { this->EndX = P; } in setEnd()
[all …]
/external/llvm/include/llvm/ADT/
DSmallVector.h5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the SmallVector class.
33 /// This is all the non-templated stuff common to all SmallVectors.
42 /// This is an implementation of the grow() method which only works
47 /// This returns size()*sizeof(T).
52 /// capacity_in_bytes - This returns capacity()*sizeof(T).
62 /// This is the part of SmallVectorTemplateBase which does not depend on whether
84 /// Return true if this is a smallvector which has not had dynamic
90 /// Put this vector in a state of being small.
95 void setEnd(T *P) { this->EndX = P; } in setEnd()
[all …]
/external/v8/benchmarks/
Drichards.js7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 // This is a JavaScript implementation of the Richards
100 this.queueCount = 0;
101 this.holdCount = 0;
102 this.blocks = new Array(NUMBER_OF_IDS);
103 this.list = null;
[all …]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DCommonTreeNodeStream.js3 * This node stream sucks all nodes out of the tree specified in
8 * This stream knows how to mark/release for backtracking.
10 * This stream is most suitable for tree interpreters that need to
30 /** Reuse same DOWN, UP navigation nodes unless this is true */
31 this.uniqueNavigationNodes = false;
36 this.p = -1;
39 this.root = tree;
40 this.adaptor = adaptor;
41 this.nodes = []; //new ArrayList(initialBufferSize);
42 this.down = this.adaptor.create(Token.DOWN, "DOWN");
[all …]
/external/fmtlib/doc/_static/
Dbootstrap.min.js6this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.tr…
7this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.…
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DLexer.js2 * lexer grammars result in a subclass of this object. A Lexer object
8 org.antlr.runtime.Lexer.superclass.constructor.call(this, state);
11 this.input = input;
18 org.antlr.runtime.Lexer.superclass.reset.call(this);
19 if ( org.antlr.lang.isValue(this.input) ) {
20 this.input.seek(0); // rewind the input
22 if ( !org.antlr.lang.isValue(this.state) ) {
25 this.state.token = null;
26 this.state.type = org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
27 this.state.channel = org.antlr.runtime.Token.DEFAULT_CHANNEL;
[all …]

12345678910>>...793