Home
last modified time | relevance | path

Searched refs:getValue (Results 1 - 25 of 962) sorted by relevance

12345678910>>...39

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DAnyTest.java47 assertTrue(container.getValue().is(TestAllTypes.class)); in testAnyGeneratedApi()
48 assertFalse(container.getValue().is(TestAny.class)); in testAnyGeneratedApi()
50 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
56 container.getValue().unpack(TestAny.class); in testAnyGeneratedApi()
67 container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
82 "xxx.com/" + TestAllTypes.getDescriptor().getFullName(), container.getValue().getTypeUrl()); in testCustomTypeUrls()
84 assertTrue(container.getValue().is(TestAllTypes.class)); in testCustomTypeUrls()
85 assertFalse(container.getValue().is(TestAny.class)); in testCustomTypeUrls()
87 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testCustomTypeUrls()
93 "yyy.com/" + TestAllTypes.getDescriptor().getFullName(), container.getValue() in testCustomTypeUrls()
[all...]
H A DLazyFieldLiteTest.java50 assertEquals(message, lazyField.getValue(TestAllTypes.getDefaultInstance())); in testGetValue()
52 assertNotEqual(message, lazyField.getValue(TestAllTypes.getDefaultInstance())); in testGetValue()
58 assertEquals(message, lazyField.getValue(TestAllExtensions.getDefaultInstance())); in testGetValueEx()
60 assertNotEqual(message, lazyField.getValue(TestAllExtensions.getDefaultInstance())); in testGetValueEx()
67 assertNotEqual(message, lazyField.getValue(TestAllTypes.getDefaultInstance())); in testSetValue()
68 message = lazyField.getValue(TestAllTypes.getDefaultInstance()); in testSetValue()
70 assertEquals(message, lazyField.getValue(TestAllTypes.getDefaultInstance())); in testSetValue()
77 assertNotEqual(message, lazyField.getValue(TestAllExtensions.getDefaultInstance())); in testSetValueEx()
78 MessageLite value = lazyField.getValue(TestAllExtensions.getDefaultInstance()); in testSetValueEx()
80 assertEquals(value, lazyField.getValue(TestAllExtension in testSetValueEx()
[all...]
H A DWrappersLiteOfMethodTest.java51 assertTrue(2.333 == message.getFieldDouble().getValue()); in testOf()
52 assertTrue(2.333f == message.getFieldFloat().getValue()); in testOf()
53 assertTrue(2333 == message.getFieldInt32().getValue()); in testOf()
54 assertTrue(23333333333333L == message.getFieldInt64().getValue()); in testOf()
55 assertTrue(2333 == message.getFieldUint32().getValue()); in testOf()
56 assertTrue(23333333333333L == message.getFieldUint64().getValue()); in testOf()
57 assertTrue(true == message.getFieldBool().getValue()); in testOf()
58 assertTrue(message.getFieldString().getValue().equals("23333")); in testOf()
59 assertTrue(message.getFieldBytes().getValue().toStringUtf8().equals("233")); in testOf()
H A DWrappersOfMethodTest.java51 assertTrue(2.333 == message.getFieldDouble().getValue()); in testOf()
52 assertTrue(2.333f == message.getFieldFloat().getValue()); in testOf()
53 assertTrue(2333 == message.getFieldInt32().getValue()); in testOf()
54 assertTrue(23333333333333L == message.getFieldInt64().getValue()); in testOf()
55 assertTrue(2333 == message.getFieldUint32().getValue()); in testOf()
56 assertTrue(23333333333333L == message.getFieldUint64().getValue()); in testOf()
57 assertTrue(true == message.getFieldBool().getValue()); in testOf()
58 assertTrue(message.getFieldString().getValue().equals("23333")); in testOf()
59 assertTrue(message.getFieldBytes().getValue().toStringUtf8().equals("233")); in testOf()
H A DLazyFieldTest.java47 lazyField.getValue(); in testHashCode()
58 lazyField.getValue(); in testHashCodeEx()
68 assertEquals(message, lazyField.getValue()); in testGetValue()
70 assertNotEqual(message, lazyField.getValue()); in testGetValue()
76 assertEquals(message, lazyField.getValue()); in testGetValueEx()
78 assertNotEqual(message, lazyField.getValue()); in testGetValueEx()
87 assertFalse(message.equals(lazyField.getValue())); in testEqualsObject()
97 assertFalse(message.equals(lazyField.getValue())); in testEqualsObjectEx()
/third_party/vk-gl-cts/framework/common/
H A DtcuEither.cpp71 int getValue (void) const in getValue() function in tcu::__anon30170::TestClassWithConstructor
202 TCU_CHECK(either.getFirst().getValue() == testObject.getValue()); in Either_selfTest()
203 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue()); in Either_selfTest()
217 TCU_CHECK(either.getSecond().getValue() == testObject.getValue()); in Either_selfTest()
218 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue()); in Either_selfTest()
235 TCU_CHECK(either.getFirst().getValue() in Either_selfTest()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionSchemaLite.java307 (List<Double>) extension.getValue(), in serializeExtension()
314 (List<Float>) extension.getValue(), in serializeExtension()
321 (List<Long>) extension.getValue(), in serializeExtension()
328 (List<Long>) extension.getValue(), in serializeExtension()
335 (List<Integer>) extension.getValue(), in serializeExtension()
342 (List<Long>) extension.getValue(), in serializeExtension()
349 (List<Integer>) extension.getValue(), in serializeExtension()
356 (List<Boolean>) extension.getValue(), in serializeExtension()
362 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension()
367 (List<Integer>) extension.getValue(), in serializeExtension()
[all...]
H A DExtensionSchemaFull.java321 (List<Double>) extension.getValue(), in serializeExtension()
328 (List<Float>) extension.getValue(), in serializeExtension()
335 (List<Long>) extension.getValue(), in serializeExtension()
342 (List<Long>) extension.getValue(), in serializeExtension()
349 (List<Integer>) extension.getValue(), in serializeExtension()
356 (List<Long>) extension.getValue(), in serializeExtension()
363 (List<Integer>) extension.getValue(), in serializeExtension()
370 (List<Boolean>) extension.getValue(), in serializeExtension()
376 descriptor.getNumber(), (List<ByteString>) extension.getValue(), writer); in serializeExtension()
381 (List<Integer>) extension.getValue(), in serializeExtension()
[all...]
H A DLazyField.java66 public MessageLite getValue() { in getValue() method in LazyField
67 return getValue(defaultInstance); in getValue()
72 return getValue().hashCode(); in hashCode()
77 return getValue().equals(obj); in equals()
82 return getValue().toString(); in toString()
104 public Object getValue() { in getValue() method in LazyField.LazyEntry
105 LazyField field = entry.getValue(); in getValue()
109 return field.getValue(); in getValue()
113 return entry.getValue(); in getField()
123 return entry.getValue() in setValue()
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsVertexArrayTests.hpp246 inline Type getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::WrappedType
248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); } in operator +()
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); } in operator *()
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); } in operator /()
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); } in operator %()
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); } in operator -()
254 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; } in operator +=()
255 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; } in operator *=()
256 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; } in operator /=()
257 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value -= other.getValue(); retur in operator /=()
279 inline Type getValue (void) const { return m_value; } getValue() function in deqp::gls::GLValue::WrappedFloatType
323 inline deFloat16 getValue (void) const { return m_value; } getValue() function in deqp::gls::GLValue::Half
357 inline deInt32 getValue (void) const { return m_value; } getValue() function in deqp::gls::GLValue::Fixed
[all...]
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgExpression.hpp31 * + R-values: Nodes must implement getValue() in some way. Value
61 virtual ExecConstValueAccess getValue (void) const = DE_NULL;
77 ExecConstValueAccess getValue (void) const { return m_valueAccess; } in getValue() function in rsg::VariableAccess
119 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_FLOAT)); } in getValue() function in rsg::FloatLiteral
137 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_INT)); } in getValue() function in rsg::IntLiteral
156 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_BOOL)); } in getValue() function in rsg::BoolLiteral
174 ExecConstValueAccess getValue (voi function in rsg::ConstructorOp
199 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); } getValue() function in rsg::AssignOp
222 ExecConstValueAccess getValue (void) const { return m_child->getValue(); } getValue() function in rsg::ParenOp
241 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_outValueRange.getType()); } getValue() function in rsg::SwizzleOp
263 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueType); } getValue() function in rsg::TexLookup
[all...]
H A DrsgExecutionContext.cpp35 ExecValueAccess ExecMaskStorage::getValue (void) in getValue() function in rsg::ExecMaskStorage
40 ExecConstValueAccess ExecMaskStorage::getValue (void) const in getValue() function in rsg::ExecMaskStorage
51 pushExecutionMask(initVal.getValue()); in ExecutionContext()
61 ExecValueAccess ExecutionContext::getValue (const Variable* variable) in getValue() function in rsg::ExecutionContext
71 return storage->getValue(variable->getType()); in getValue()
78 int samplerNdx = samplerVal->getValue(sampler->getType()).asInt(0); in getSampler2D()
87 int samplerNdx = samplerVal->getValue(sampler->getType()).asInt(0); in getSamplerCube()
95 ExecValueAccess newValue = tmp.getValue(); in andExecutionMask()
107 tmp.getValue() = value.value(); in pushExecutionMask()
118 return m_execMaskStack[m_execMaskStack.size()-1].getValue(); in getExecutionMask()
[all...]
H A DrsgProgramExecutor.cpp50 ValueAccess getValue (const VariableType& type, int vtxNdx);
51 ConstValueAccess getValue (const VariableType& type, int vtxNdx) const;
62 ValueAccess VaryingStorage::getValue (const VariableType& type, int vtxNdx) in getValue() function in rsg::VaryingStorage
67 ConstValueAccess VaryingStorage::getValue (const VariableType& type, int vtxNdx) const in getValue() function in rsg::VaryingStorage
230 execCtx.getValue(uniformIter->getVariable()) = uniformIter->getValue().value(); in execute()
241 ExecValueAccess access = execCtx.getValue(input->getVariable()); in execute()
265 ExecConstValueAccess access = execCtx.getValue(output); in execute()
270 ValueAccess varyingAccess = dst->getValue(output->getType(), vtxNdx); in execute()
283 execCtx.getValue( in execute()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp50 if (!MapEntry.getValue().isIndexed()) in getIndexedEntry()
51 MapEntry.getValue().Index = NumIndexedStrings++; in getIndexedEntry()
94 return A->getValue().Offset < B->getValue().Offset; in emit()
98 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) && in emit()
103 Asm.OutStreamer->EmitLabel(Entry->getValue().Symbol); in emit()
107 Twine(Entry->getValue().Offset)); in emit()
118 if (Entry.getValue().isIndexed()) in emit()
119 Entries[Entry.getValue().Index] = &Entry; in emit()
126 Asm.emitDwarfStringOffset(Entry->getValue()); in emit()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h41 const ValueT &getValue() const { return Value; } in getValue() function in llvm::PBQP::ValuePool::PoolEntry
62 return getHashValue(P->getValue()); in getHashValue()
66 return getHashValue(P->getValue()); in getHashValue()
78 return isEqual(C, P->getValue()); in isEqual()
84 return isEqual(P1->getValue(), P2); in isEqual()
95 template <typename ValueKeyT> PoolRef getValue(ValueKeyT ValueKey) { in getValue() function in llvm::PBQP::ValuePool
99 return PoolRef((*I)->shared_from_this(), &(*I)->getValue()); in getValue()
103 return PoolRef(std::move(P), &P->getValue()); in getValue()
119 return VectorPool.getValue(std::move(v)); in getVector()
123 return MatrixPool.getValue(st in getMatrix()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DOptional.h72 T &getValue() LLVM_LVALUE_FUNCTION noexcept {
76 T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
81 T &&getValue() && noexcept {
172 T &getValue() LLVM_LVALUE_FUNCTION noexcept {
176 T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
181 T &&getValue() && noexcept {
253 const T *getPointer() const { return &Storage.getValue(); } in getPointer()
254 T *getPointer() { return &Storage.getValue(); } in getPointer()
255 const T &getValue() const LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
279 T &&getValue() && { return std::move(Storage.getValue()); } getValue() function in llvm::Optional
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp305 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); in parseEntry()
307 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); in parseEntry()
311 RewriteType = Key->getValue(KeyStorage); in parseEntry()
345 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteFunctionDescriptor()
347 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteFunctionDescriptor()
351 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
355 Source = Value->getValue(ValueStorage); in parseRewriteFunctionDescriptor()
361 Target = Value->getValue(ValueStorage); in parseRewriteFunctionDescriptor()
363 Transform = Value->getValue(ValueStorage); in parseRewriteFunctionDescriptor()
367 Undecorated = Value->getValue(ValueStorag in parseRewriteFunctionDescriptor()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp23 const APInt &LowCase = Clusters[First].Low->getValue(); in getJumpTableRange()
24 const APInt &HighCase = Clusters[Last].High->getValue(); in getJumpTableRange()
54 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables()
72 const APInt &Hi = Clusters[i].High->getValue(); in findJumpTables()
73 const APInt &Lo = Clusters[i].Low->getValue(); in findJumpTables()
206 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable()
207 const APInt &High = Clusters[I].High->getValue(); in buildJumpTable()
211 const APInt &PreviousHigh = Clusters[I - 1].High->getValue(); in buildJumpTable()
225 Clusters[First].Low->getValue(), in buildJumpTable()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DimplicitAnyCastedValue.js27 getValue = null; // this should be an error
30 return <any>this.getValue; // this should not be an error
34 return this.getValue; // this should not be an error
110 this.getValue = null; // this should be an error
114 return this.getValue; // this should not be an error
121 return this.getValue; // this should not be an error
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DRecord.cpp323 return IntInit::get(getValue());
382 Result |= static_cast<int64_t>(Bit->getValue()) << i;
483 int64_t Val = getValue();
489 int64_t Value = getValue();
546 return CodeInit::get(getValue(), SMLoc());
555 return StringInit::get(getValue());
738 D = CurRec->getRecords().getDef(Name->getValue());
743 Name->getValue() + "'\n");
789 return IntInit::get(LHSs->getValue().empty());
863 SmallString<80> Concat(I0->getValue());
[all...]
/third_party/vk-gl-cts/modules/egl/
H A DteglQueryConfigTests.cpp216 EGLint getValue (EGLConfig config, EGLenum attrib, bool logValue=true);
282 EGLint GetConfigAttribCase::getValue (EGLConfig config, EGLenum attrib, bool logValue) in getValue() function in deqp::egl::GetConfigAttribCase
458 const EGLint colorBufferType = getValue(config, EGL_COLOR_BUFFER_TYPE); in executeTest()
460 const EGLint bufferSize = getValue(config, EGL_BUFFER_SIZE); in executeTest()
461 const EGLint redSize = getValue(config, EGL_RED_SIZE); in executeTest()
462 const EGLint greenSize = getValue(config, EGL_GREEN_SIZE); in executeTest()
463 const EGLint blueSize = getValue(config, EGL_BLUE_SIZE); in executeTest()
464 const EGLint luminanceSize = getValue(config, EGL_LUMINANCE_SIZE); in executeTest()
465 const EGLint alphaSize = getValue(config, EGL_ALPHA_SIZE); in executeTest()
528 const EGLint transparentType = getValue(confi in executeTest()
[all...]
/third_party/protobuf/php/tests/
H A DWrapperTypeSettersTest.php55 $this->assertEquals($expectedValue->getValue(), $actualValueNewGetter);
212 $this->assertEquals($expectedInstance->$getter()->getValue(), $actualInstance->$getter()->getValue());
237 $actualInnerValue = $actualWrapperValue->getValue();
240 $expectedInnerValue = $expectedElement->getValue();
278 $actualInnerValue = $actualWrapperValue->getValue();
281 $expectedInnerValue = $expectedElement->getValue();
283 $expectedInnerValue = $expectedElement->getValue()->getValue();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp130 const APInt &AndRHSV = AndRHS->getValue(); in OptAndOp()
137 const APInt& AddRHS = OpRHS->getValue(); in OptAndOp()
236 bool IsAPow2 = (ACst && !ACst->isZero() && ACst->getValue().isPowerOf2()); in getMaskedICmpType()
237 bool IsBPow2 = (BCst && !BCst->isZero() && BCst->getValue().isPowerOf2()); in getMaskedICmpType()
480 if (BCst->getValue() == 0 || DCst->getValue() == 0) in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed()
487 if ((BCst->getValue() & DCst->getValue()) == 0) in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed()
506 if ((((BCst->getValue() & DCst->getValue()) in foldLogOpOfMaskedICmps_NotAllZeros_BMask_Mixed()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp381 *DAG.getContext(), CallConv.getValue(), ValueVT, IntermediateVT, in getCopyFromPartsVector()
714 *DAG.getContext(), CallConv.getValue(), ValueVT, IntermediateVT, in getCopyToPartsVector()
789 ? TLI.getNumRegistersForCallingConv(Context, CC.getValue(), ValueVT) in RegsForValue()
793 ? TLI.getRegisterTypeForCallingConv(Context, CC.getValue(), ValueVT) in RegsForValue()
822 CallConv.getValue(), RegVTs[Value]) in getCopyFromRegs()
832 *Flag = P.getValue(2); in getCopyFromRegs()
835 Chain = P.getValue(1); in getCopyFromRegs()
905 CallConv.getValue(), RegVTs[Value]) in getCopyToRegs()
911 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), &Parts[Part], in getCopyToRegs()
924 *Flag = Part.getValue( in getCopyToRegs()
1421 SDValue SelectionDAGBuilder::getValue(const Value *V) { getValue() function in SelectionDAGBuilder
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Ducharstrietest.cpp310 trie->getValue()!=2000000000 in TestNextForCodePoint()
318 trie->getValue()!=44444 in TestNextForCodePoint()
331 trie->getValue()!=99999 in TestNextForCodePoint()
358 int32_t getValue() const { return value; } in getValue() function in __anon3698::Generator
376 builder_->add(gen.getString(), gen.getValue(), errorCode); in buildLargeTrie()
395 int32_t value=gen.getValue(); in TestLargeTrie()
405 if(!USTRINGTRIE_HAS_VALUE(result) || result!=trie->current() || value!=trie->getValue()) { in TestLargeTrie()
407 "next()!=current() or getValue() wrong " in TestLargeTrie()
487 if(trie->next(u_n)!=USTRINGTRIE_INTERMEDIATE_VALUE || 6!=trie->getValue()) { in TestHasUniqueValue()
490 // hasUniqueValue() after getValue() in TestHasUniqueValue()
[all...]

Completed in 24 milliseconds

12345678910>>...39