Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 25 of 4402) sorted by relevance

12345678910>>...177

/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
DLazyThreadReference.java46 return getValue().currentContendedMonitor(); in currentContendedMonitor()
50 getValue().forceEarlyReturn(value); in forceEarlyReturn()
54 return getValue().frame(index); in frame()
58 return getValue().frameCount(); in frameCount()
62 return getValue().frames(); in frames()
66 return getValue().frames(start, length); in frames()
70 getValue().interrupt(); in interrupt()
74 return getValue().isAtBreakpoint(); in isAtBreakpoint()
78 return getValue().isSuspended(); in isSuspended()
82 return getValue().name(); in name()
[all …]
DLazyObjectReference.java48 getValue().disableCollection(); in disableCollection()
52 return getValue().referenceType(); in referenceType()
55 @Override public Value getValue(Field sig) { in getValue() method in LazyObjectReference
56 return getValue().getValue(sig); in getValue()
60 return getValue().getValues(fields); in getValues()
64 getValue().setValue(field, value); in setValue()
71 return getValue().invokeMethod(thread, method, arguments, options); in invokeMethod()
75 getValue().enableCollection(); in enableCollection()
79 return getValue().isCollected(); in isCollected()
83 return getValue().uniqueID(); in uniqueID()
[all …]
DLazyPrimitiveValue.java44 return getValue().booleanValue(); in booleanValue()
48 return getValue().byteValue(); in byteValue()
52 return getValue().charValue(); in charValue()
56 return getValue().doubleValue(); in doubleValue()
60 return getValue().floatValue(); in floatValue()
64 return getValue().intValue(); in intValue()
68 return getValue().longValue(); in longValue()
72 return getValue().shortValue(); in shortValue()
76 return getValue().toString(); in toString()
/external/doclava/src/com/google/doclava/apicheck/
DXmlApiFile.java75 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes in startElement()
76 .getValue("source"))); in startElement()
84 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source")); in startElement()
85 String visibility = attributes.getValue("visibility"); in startElement()
90 boolean isStatic = Boolean.valueOf(attributes.getValue("static")); in startElement()
92 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract")); in startElement()
98 boolean isFinal = Boolean.valueOf(attributes.getValue("final")); in startElement()
100 String name = attributes.getValue("name"); in startElement()
111 mCurrentClass.setDeprecated("deprecated".equals(attributes.getValue("deprecated"))); in startElement()
113 String superclass = attributes.getValue("extends"); in startElement()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DEncodedValueUtils.java47 return !((BooleanEncodedValue)encodedValue).getValue(); in isDefaultValue()
49 return ((ByteEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
51 return ((CharEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
53 return ((DoubleEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
55 return ((FloatEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
57 return ((IntEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
59 return ((LongEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
63 return ((ShortEncodedValue)encodedValue).getValue() == 0; in isDefaultValue()
71 writer.write(Boolean.toString(((BooleanEncodedValue) encodedValue).getValue())); in writeEncodedValue()
74 writer.write(Byte.toString(((ByteEncodedValue)encodedValue).getValue())); in writeEncodedValue()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
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().getTypeUrl()); in testCustomTypeUrls()
[all …]
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(TestAllExtensions.getDefaultInstance())); in testSetValueEx()
[all …]
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()
/external/deqp/framework/common/
DtcuEither.cpp71 int getValue (void) const in getValue() function in tcu::__anon526b68440111::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() == testObject.getValue()); in Either_selfTest()
236 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue()); in Either_selfTest()
253 TCU_CHECK(either.getSecond().getValue() == testObject.getValue()); in Either_selfTest()
254 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue()); in Either_selfTest()
272 TCU_CHECK(either.getFirst().getValue() == testObject.getValue()); in Either_selfTest()
[all …]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
DEncodedValueAdaptor.java55 BooleanRenderer.writeTo(writer, ((BooleanEncodedValue)encodedValue).getValue()); in writeTo()
58 ByteRenderer.writeTo(writer, ((ByteEncodedValue)encodedValue).getValue()); in writeTo()
61 CharRenderer.writeTo(writer, ((CharEncodedValue)encodedValue).getValue()); in writeTo()
64 DoubleRenderer.writeTo(writer, ((DoubleEncodedValue)encodedValue).getValue()); in writeTo()
69 if (enumEncodedValue.getValue().getDefiningClass().equals(containingClass)) { in writeTo()
73 … ReferenceUtil.writeFieldDescriptor(writer, enumEncodedValue.getValue(), useImplicitReference); in writeTo()
78 if (fieldEncodedValue.getValue().getDefiningClass().equals(containingClass)) { in writeTo()
81 … ReferenceUtil.writeFieldDescriptor(writer, fieldEncodedValue.getValue(), useImplicitReference); in writeTo()
84 FloatRenderer.writeTo(writer, ((FloatEncodedValue)encodedValue).getValue()); in writeTo()
87 IntegerRenderer.writeTo(writer, ((IntEncodedValue)encodedValue).getValue()); in writeTo()
[all …]
/external/llvm-project/mlir/lib/TableGen/
DTypeDef.cpp23 dyn_cast<llvm::DefInit>(def->getValue("dialect")->getValue()); in getDialect()
35 const llvm::RecordVal *s = def->getValue("description"); in hasDescription()
36 return s != nullptr && isa<llvm::StringInit>(s->getValue()); in hasDescription()
44 const llvm::RecordVal *s = def->getValue("summary"); in hasSummary()
45 return s != nullptr && isa<llvm::StringInit>(s->getValue()); in hasSummary()
106 return def->getArgName(num)->getValue(); in getName()
114 llvm::RecordVal *code = typeParameter->getDef()->getValue("allocator"); in getAllocator()
117 if (llvm::StringInit *ci = dyn_cast<llvm::StringInit>(code->getValue())) in getAllocator()
118 return ci->getValue(); in getAllocator()
119 if (isa<llvm::UnsetInit>(code->getValue())) in getAllocator()
[all …]
/external/llvm-project/mlir/include/mlir/Dialect/SDBM/
DSDBM.h48 int64_t getValue() const { return value; } in getValue() function
64 assert((lhs.getValue() <= 0 || rhs.getValue() <= 0 ||
65 static_cast<uint64_t>(lhs.getValue()) +
66 static_cast<uint64_t>(rhs.getValue()) <
73 assert((lhs.getValue() >= 0 || rhs.getValue() >= 0 ||
74 ((static_cast<uint64_t>(lhs.getValue()) +
75 static_cast<uint64_t>(rhs.getValue())) >>
79 return lhs.getValue() + rhs.getValue();
83 return lhs.getValue() < rhs.getValue();
87 return lhs.getValue() <= rhs.getValue();
[all …]
/external/jdiff/src/jdiff/
DAPIHandler.java78 String apiName = attributes.getValue("name"); in startElement()
79 String version = attributes.getValue("jdversion"); // Not used yet in startElement()
83 String pkgName = attributes.getValue("name"); in startElement()
87 String className = attributes.getValue("name"); in startElement()
88 String parentName = attributes.getValue("extends"); in startElement()
90 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
95 String className = attributes.getValue("name"); in startElement()
96 String parentName = attributes.getValue("extends"); in startElement()
98 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
102 String interfaceName = attributes.getValue("name"); in startElement()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DX0017_StrongEncryptionHeader.java303 this.format = ZipShort.getValue(data, offset); in parseCentralDirectoryFormat()
304 this.algId = EncryptionAlgorithm.getAlgorithmByCode(ZipShort.getValue(data, offset + 2)); in parseCentralDirectoryFormat()
305 this.bitlen = ZipShort.getValue(data, offset + 4); in parseCentralDirectoryFormat()
306 this.flags = ZipShort.getValue(data, offset + 6); in parseCentralDirectoryFormat()
307 this.rcount = ZipLong.getValue(data, offset + 8); in parseCentralDirectoryFormat()
310 this.hashAlg = HashAlgorithm.getAlgorithmByCode(ZipShort.getValue(data, offset + 12)); in parseCentralDirectoryFormat()
311 this.hashSize = ZipShort.getValue(data, offset + 14); in parseCentralDirectoryFormat()
331 final int ivSize = ZipShort.getValue(data, offset); in parseFileFormat()
335 this.format = ZipShort.getValue(data, offset + ivSize + 6); in parseFileFormat()
336 … this.algId = EncryptionAlgorithm.getAlgorithmByCode(ZipShort.getValue(data, offset + ivSize + 8)); in parseFileFormat()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
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 …]
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 …]
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().setValue((MessageLite) value); in setValue()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DDexPool.java140 writer.writeArray(arrayEncodedValue.getValue()); in writeEncodedValue()
143 writer.writeBoolean(((BooleanEncodedValue)encodedValue).getValue()); in writeEncodedValue()
146 writer.writeByte(((ByteEncodedValue)encodedValue).getValue()); in writeEncodedValue()
149 writer.writeChar(((CharEncodedValue)encodedValue).getValue()); in writeEncodedValue()
152 writer.writeDouble(((DoubleEncodedValue)encodedValue).getValue()); in writeEncodedValue()
155 writer.writeEnum(((EnumEncodedValue)encodedValue).getValue()); in writeEncodedValue()
158 writer.writeField(((FieldEncodedValue)encodedValue).getValue()); in writeEncodedValue()
161 writer.writeFloat(((FloatEncodedValue)encodedValue).getValue()); in writeEncodedValue()
164 writer.writeInt(((IntEncodedValue)encodedValue).getValue()); in writeEncodedValue()
167 writer.writeLong(((LongEncodedValue)encodedValue).getValue()); in writeEncodedValue()
[all …]
/external/llvm-project/llvm/unittests/CodeGen/GlobalISel/
DConstantFoldingTest.cpp87 EXPECT_EQ(25ULL, FoldGAddInt.getValue().getLimitedValue()); in TEST_F()
92 EXPECT_EQ(1073741840ULL, FoldGAddMix.getValue().getLimitedValue()); in TEST_F()
99 EXPECT_EQ(0ULL, FoldGAndInt.getValue().getLimitedValue()); in TEST_F()
104 EXPECT_EQ(1ULL, FoldGAndMix.getValue().getLimitedValue()); in TEST_F()
111 EXPECT_EQ(0ULL, FoldGAShrInt.getValue().getLimitedValue()); in TEST_F()
116 EXPECT_EQ(2097152ULL, FoldGAShrMix.getValue().getLimitedValue()); in TEST_F()
123 EXPECT_EQ(0ULL, FoldGLShrInt.getValue().getLimitedValue()); in TEST_F()
128 EXPECT_EQ(2080768ULL, FoldGLShrMix.getValue().getLimitedValue()); in TEST_F()
135 EXPECT_EQ(144ULL, FoldGMulInt.getValue().getLimitedValue()); in TEST_F()
140 EXPECT_EQ(0ULL, FoldGMulMix.getValue().getLimitedValue()); in TEST_F()
[all …]
/external/llvm-project/lld/MinGW/
DDriver.cpp208 StringRef s = a->getValue(); in link()
230 majSubSysVer = a->getValue(); in link()
233 minSubSysVer = a->getValue(); in link()
236 std::tie(subSysName, subSysVer) = StringRef(a->getValue()).split(':'); in link()
257 add("-implib:" + StringRef(a->getValue())); in link()
259 add("-stack:" + StringRef(a->getValue())); in link()
261 add("-output-def:" + StringRef(a->getValue())); in link()
263 add("-base:" + StringRef(a->getValue())); in link()
265 add("-lldmap:" + StringRef(a->getValue())); in link()
267 add("-reproduce:" + StringRef(a->getValue())); in link()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp66 I->getValue().~APSInt(); in ~BasicValueFactory()
72 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APSInt& X) { in getValue() function in BasicValueFactory
89 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APInt& X, in getValue() function in BasicValueFactory
92 return getValue(V); in getValue()
95 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, unsigned BitWidth, in getValue() function in BasicValueFactory
99 return getValue(V); in getValue()
102 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, QualType T) { in getValue() function in BasicValueFactory
104 return getValue(getAPSIntType(T).getValue(X)); in getValue()
154 return &getValue( V1 * V2 ); in evalAPSInt()
159 return &getValue( V1 / V2 ); in evalAPSInt()
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DDataDescriptorTest.java79 long crcFromDD = ZipLong.getValue(data, ddStart + 4); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
80 long cSizeFromDD = ZipLong.getValue(data, ddStart + 8); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
81 long sizeFromDD = ZipLong.getValue(data, ddStart + 12); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
84 long crcFromCDH = ZipLong.getValue(data, cdhStart + 16); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
86 long cSizeFromCDH = ZipLong.getValue(data, cdhStart + 20); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
88 long sizeFromCDH = ZipLong.getValue(data, cdhStart + 24); in writesDataDescriptorForDeflatedEntryOnUnseekableOutput()
121 long crcFromLFH = ZipLong.getValue(data, 14); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
122 long cSizeFromLFH = ZipLong.getValue(data, 18); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
123 long sizeFromLFH = ZipLong.getValue(data, 22); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
126 long crcFromCDH = ZipLong.getValue(data, cdhStart + 16); in doesntWriteDataDescriptorForDeflatedEntryOnSeekableOutput()
[all …]
/external/deqp/modules/glshared/
DglsVertexArrayTests.hpp246 inline Type getValue (void) const { return m_value; } in getValue() function in deqp::gls::GLValue::WrappedType
248 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); } in operator +()
249 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); } in operator *()
250 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); } in operator /()
251 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); } in operator %()
252 …dType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); } in operator -()
254 …Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; } in operator +=()
255 …Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; } in operator *=()
256 …Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; } in operator /=()
257 …Type>& operator-= (const WrappedType<Type>& other) { m_value -= other.getValue(); return *this; } in operator -=()
[all …]
/external/llvm-project/clang/test/clang-rename/
DComplicatedClassType.cpp5 virtual int getValue() const = 0;
21 int getValue() const { in getValue() function in Foo
35 const_cast<Foo *>(C)->getValue(); // CHECK: const_cast<Bar *>(C)->getValue(); in main()
39 …dynamic_cast<const Foo &>(BazReference).getValue(); /* Test 3 */ // CHECK: dynamic_cast<const … in main()
40 …dynamic_cast<const Foo *>(BazPointer)->getValue(); /* Test 4 */ // CHECK: dynamic_cast<const … in main()
41 …reinterpret_cast<const Foo *>(BazPointer)->getValue(); /* Test 5 */ // CHECK: reinterpret_cast<co… in main()
42 …static_cast<const Foo &>(BazReference).getValue(); /* Test 6 */ // CHECK: static_cast<const B… in main()
43 …static_cast<const Foo *>(BazPointer)->getValue(); /* Test 7 */ // CHECK: static_cast<const B… in main()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DCallingRealMethodTest.java27 String getValue() { in getValue() method in CallingRealMethodTest.TestedObject
32 return getValue(); in callInternalMethod()
38 when(mock.getValue()).thenReturn("foo"); in shouldAllowCallingInternalMethod()
46 when(mock.getValue()).thenCallRealMethod(); in shouldReturnRealValue()
48 assertEquals("HARD_CODED_RETURN_VALUE", mock.getValue()); in shouldReturnRealValue()
64 assertEquals("HARD_CODED_RETURN_VALUE", mock.getValue()); in shouldCallRealMethodByDefault()
71 when(mock.getValue()).thenCallRealMethod(); in shouldNotCallRealMethodWhenStubbedLater()
72 when(mock.getValue()).thenReturn("FAKE_VALUE"); in shouldNotCallRealMethodWhenStubbedLater()
74 assertEquals("FAKE_VALUE", mock.getValue()); in shouldNotCallRealMethodWhenStubbedLater()

12345678910>>...177