Home
last modified time | relevance | path

Searched refs:this (Results 1 – 25 of 12384) sorted by relevance

12345678910>>...496

/external/grpc-grpc/src/php/tests/unit_tests/
DChannelTest.php28 if (!empty($this->channel)) {
29 $this->channel->close();
35 $this->channel = new Grpc\Channel('localhost:50000',
37 $this->assertSame('Grpc\Channel', get_class($this->channel));
42 $this->channel = new Grpc\Channel('localhost:50001',
44 $state = $this->channel->getConnectivityState();
45 $this->assertEquals(0, $state);
50 $this->channel = new Grpc\Channel('localhost:50002',
52 $state = $this->channel->getConnectivityState(123);
53 $this->assertEquals(0, $state);
[all …]
/external/protobuf/php/tests/
Dtest_base.php22 $this->assertSame(-42, $m->getOptionalInt32());
23 $this->assertSame(42, $m->getOptionalUint32());
24 $this->assertSame(-44, $m->getOptionalSint32());
25 $this->assertSame(46, $m->getOptionalFixed32());
26 $this->assertSame(-46, $m->getOptionalSfixed32());
27 $this->assertSame(1.5, $m->getOptionalFloat());
28 $this->assertSame(1.6, $m->getOptionalDouble());
29 $this->assertSame(true, $m->getOptionalBool());
30 $this->assertSame('a', $m->getOptionalString());
31 $this->assertSame('bbbb', $m->getOptionalBytes());
[all …]
Darray_test.php23 $this->assertSame(MAX_INT32, $arr[0]);
25 $this->assertSame(MIN_INT32, $arr[1]);
28 $this->assertSame(1, $arr[2]);
30 $this->assertSame(MAX_INT32, $arr[3]);
32 $this->assertSame(MAX_INT32, $arr[4]);
35 $this->assertSame(2, $arr[5]);
37 $this->assertSame(3, $arr[6]);
39 $this->assertSame(MAX_INT32, $arr[7]);
41 $this->assertEquals(8, count($arr));
45 $this->assertSame(0, $arr[$i]);
[all …]
Dmap_field_test.php21 $this->assertSame(MAX_INT32, $arr[MAX_INT32]);
23 $this->assertSame(MIN_INT32, $arr[MIN_INT32]);
24 $this->assertEquals(2, count($arr));
25 $this->assertTrue(isset($arr[MAX_INT32]));
26 $this->assertTrue(isset($arr[MIN_INT32]));
29 $this->assertEquals(0, count($arr));
34 $this->assertSame(1, $arr[1]);
35 $this->assertSame(2, $arr[2]);
37 $this->assertSame(MAX_INT32, $arr[MAX_INT32]);
39 $this->assertSame(MIN_INT32, $arr[MIN_INT32]);
[all …]
Dphp_implementation_test.php26 $this->markTestSkipped();
37 $this->assertSame(1, $value);
42 $this->assertSame(-1, $value);
47 $this->assertSame(-1, $value);
57 $this->assertSame(1, $value);
62 $this->assertSame(-1, $value);
67 $this->assertSame(-1, $value);
77 $this->assertEquals(1, $value);
82 $this->assertEquals(-1, $value);
87 $this->assertEquals(-1, $value);
[all …]
/external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/
DPersistentChannelTest.php46 $this->assertTrue(false);
50 $this->assertTrue($state == GRPC\CHANNEL_CONNECTING ||
64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]);
65 $channel1_info = $this->channel1->getChannelInfo();
66 $plist_info = $this->channel1->getPersistentList();
67 $this->assertEquals($channel1_info['target'], 'localhost:1');
68 $this->assertEquals($channel1_info['ref_count'], 1);
69 $this->assertEquals($channel1_info['connectivity_status'],
71 $this->assertEquals(count($plist_info), 0);
72 $this->channel1->close();
[all …]
/external/flatbuffers/php/
DFlatbufferBuilder.php94 $this->space = $initial_size;
95 $this->bb = $this->newByteBuffer($initial_size);
117 return $this->bb->capacity() - $this->space;
128 $this->bb->putByte(--$this->space, "\0");
141 if ($size > $this->minalign) {
142 $this->minalign = $size;
145 … $align_size = ((~($this->bb->capacity() - $this->space + $additional_bytes)) + 1) & ($size - 1);
146 while ($this->space < $align_size + $size + $additional_bytes) {
147 $old_buf_size = $this->bb->capacity();
148 $this->bb = $this->growByteBuffer($this->bb);
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dpa.h194 bool HasWork() { return (this->numPrimsComplete < this->numPrims) ? true : false; } in HasWork()
216 bool Assemble(uint32_t slot, simdvector verts[]) { return this->pfnPaFunc(*this, slot, verts); } in Assemble()
221 return this->pfnPaFunc_simd16(*this, slot, verts); in Assemble()
228 return this->pfnPaSingleFunc(*this, slot, primIndex, verts); in AssembleSingle()
233 this->pfnPaFunc = this->pfnPaNextFunc; in NextPrim()
235 this->pfnPaFunc_simd16 = this->pfnPaNextFunc_simd16; in NextPrim()
237 this->numSimdPrims = this->nextNumSimdPrims; in NextPrim()
238 this->numPrimsComplete += this->nextNumPrimsIncrement; in NextPrim()
239 this->reset = this->nextReset; in NextPrim()
241 if (this->isStreaming) in NextPrim()
[all …]
/external/angle/src/libANGLE/renderer/metal/
Dmtl_format_table_autogen.mm5 // Use of this source code is governed by a BSD-style license that can be
304 this->intendedFormatId = intendedFormatId_;
309 switch (this->intendedFormatId)
313 this->metalFormat = MTLPixelFormatA8Unorm;
314 this->actualFormatId = angle::FormatID::A8_UNORM;
315 this->initFunction = nullptr;
317 this->swizzled = false;
322 this->metalFormat = MTLPixelFormatBGR10A2Unorm;
323 this->actualFormatId = angle::FormatID::B10G10R10A2_UNORM;
324 this->initFunction = nullptr;
[all …]
/external/protobuf/php/src/Google/Protobuf/Internal/
DFileOptions.php310 return $this->java_package;
326 $this->java_package = $var;
327 $this->has_java_package = true;
329 return $this;
334 return $this->has_java_package;
349 return $this->java_outer_classname;
366 $this->java_outer_classname = $var;
367 $this->has_java_outer_classname = true;
369 return $this;
374 return $this->has_java_outer_classname;
[all …]
DCodedInputStream.php59 $this->buffer = $buffer;
60 $this->buffer_size_after_limit = 0;
61 $this->buffer_end = $end;
62 $this->current = $start;
63 $this->current_limit = $end;
64 $this->legitimate_message_end = false;
65 $this->recursion_budget = self::DEFAULT_RECURSION_LIMIT;
66 $this->recursion_limit = self::DEFAULT_RECURSION_LIMIT;
67 $this->total_bytes_limit = self::DEFAULT_TOTAL_BYTES_LIMIT;
68 $this->total_bytes_read = $end - $start;
[all …]
DFileDescriptorProto.php148 return $this->name;
161 $this->name = $var;
162 $this->has_name = true;
164 return $this;
169 return $this->has_name;
180 return $this->package;
193 $this->package = $var;
194 $this->has_package = true;
196 return $this;
201 return $this->has_package;
[all …]
DFieldDescriptorProto.php146 return $this->name;
157 $this->name = $var;
158 $this->has_name = true;
160 return $this;
165 return $this->has_name;
174 return $this->number;
185 $this->number = $var;
186 $this->has_number = true;
188 return $this;
193 return $this->has_number;
[all …]
/external/llvm/include/llvm/ADT/
DSmallVector.h95 void setEnd(T *P) { this->EndX = P; } in setEnd()
113 iterator begin() { return (iterator)this->BeginX; } in begin()
115 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
117 iterator end() { return (iterator)this->EndX; } in end()
119 const_iterator end() const { return (const_iterator)this->EndX; } in end()
121 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr()
122 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr()
209 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back()
210 this->grow(); in push_back()
211 ::new ((void*) this->end()) T(Elt); in push_back()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h96 void setEnd(T *P) { this->EndX = P; } in setEnd()
115 iterator begin() { return (iterator)this->BeginX; } in begin()
117 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
119 iterator end() { return (iterator)this->EndX; } in end()
121 const_iterator end() const { return (const_iterator)this->EndX; } in end()
124 iterator capacity_ptr() { return (iterator)this->CapacityX; } in capacity_ptr()
125 const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;} in capacity_ptr()
212 if (LLVM_UNLIKELY(this->EndX >= this->CapacityX)) in push_back()
213 this->grow(); in push_back()
214 ::new ((void*) this->end()) T(Elt); in push_back()
[all …]
/external/curl/tests/data/
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 …]
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 …]
/external/llvm-project/llvm/include/llvm/ADT/
DSmallVector.h117 reinterpret_cast<const char *>(this) + in getFirstEl()
131 bool isSmall() const { return this->BeginX == getFirstEl(); } in isSmall()
135 this->BeginX = getFirstEl(); in resetToSmall()
136 this->Size = this->Capacity = 0; // FIXME: Setting Capacity to 0 is suspect. in resetToSmall()
143 if (LLVM_LIKELY(Elt < this->begin() || Elt >= this->end())) in isSafeToReferenceAfterResize()
147 if (NewSize <= this->size()) in isSafeToReferenceAfterResize()
148 return Elt < this->begin() + NewSize; in isSafeToReferenceAfterResize()
151 return NewSize <= this->capacity(); in isSafeToReferenceAfterResize()
164 this->assertSafeToReferenceAfterResize(Elt, this->size() + N);
171 this->assertSafeToReferenceAfterResize(From, 0); in assertSafeToReferenceAfterClear()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallVector.h88 reinterpret_cast<const char *>(this) + in getFirstEl()
127 iterator begin() { return (iterator)this->BeginX; } in begin()
128 const_iterator begin() const { return (const_iterator)this->BeginX; } in begin()
212 if (LLVM_UNLIKELY(this->size() >= this->capacity())) in push_back()
213 this->grow(); in push_back()
214 ::new ((void*) this->end()) T(Elt); in push_back()
215 this->set_size(this->size() + 1); in push_back()
219 if (LLVM_UNLIKELY(this->size() >= this->capacity())) in push_back()
220 this->grow(); in push_back()
221 ::new ((void*) this->end()) T(::std::move(Elt)); in push_back()
[all …]
/external/pdfium/testing/resources/javascript/
Ddocument_properties_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/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DScenarioResultSummary.php127 return $this->qps;
140 $this->qps = $var;
142 return $this;
153 return $this->qps_per_server_core;
166 $this->qps_per_server_core = $var;
168 return $this;
179 return $this->server_system_time;
192 $this->server_system_time = $var;
194 return $this;
205 return $this->server_user_time;
[all …]
DClientConfig.php120 return $this->server_targets;
133 $this->server_targets = $arr;
135 return $this;
144 return $this->client_type;
155 $this->client_type = $var;
157 return $this;
166 return $this->security_params;
177 $this->security_params = $var;
179 return $this;
191 return $this->outstanding_rpcs_per_channel;
[all …]
/external/grpc-grpc/src/php/tests/qps/
Dhistogram.php33 return (int)(log($value) / log($this->multiplier));
37 $this->resolution = $resolution;
38 $this->max_possible = $max_possible;
39 $this->sum = 0;
40 $this->sum_of_squares = 0;
41 $this->multiplier = 1+$resolution;
42 $this->count = 0;
43 $this->min_seen = $max_possible;
44 $this->max_seen = 0;
45 $this->buckets = array_fill(0, $this->bucket_for($max_possible)+1, 0);
[all …]
/external/skqp/src/utils/
DSkJSONWriter.h61 this->flush(); in ~SkJSONWriter()
86 SkASSERT(Scope::kObject == this->scope()); in appendName()
89 this->write(",", 1); in appendName()
91 this->separator(this->multiline()); in appendName()
92 this->write("\"", 1); in appendName()
93 this->write(name, strlen(name)); in appendName()
94 this->write("\":", 2); in appendName()
107 this->appendName(name);
108 this->beginValue(true);
109 this->write("{", 1);
[all …]

12345678910>>...496