/prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 108 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned); 120 const llvm::APSInt& getValue(const llvm::APSInt& X); 121 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned); 122 const llvm::APSInt& getValue(uint64_t X, QualType T); 139 return getValue(TargetType.convert(From)); 147 return getValue(TargetType.convert(From)); 152 return getValue(X, T); 156 return getValue(APSIntType(v).getMaxValue()); 160 return getValue(APSIntType(v).getMinValue()); 164 return getValue(getAPSIntType(T).getMaxValue()) [all...] |
/external/llvm/unittests/DebugInfo/DWARF/ |
DWARFFormValueTest.cpp | 94 EXPECT_EQ(Sign1.getAsSignedConstant().getValue(), -123); 95 EXPECT_EQ(Sign2.getAsSignedConstant().getValue(), -12345); 96 EXPECT_EQ(Sign4.getAsSignedConstant().getValue(), -123456789); 97 EXPECT_EQ(Sign8.getAsSignedConstant().getValue(), -1); 103 EXPECT_EQ(UMax.getAsSignedConstant().getValue(), LLONG_MAX); 115 EXPECT_EQ(Data1.getAsSignedConstant().getValue(), 120); 116 EXPECT_EQ(Data2.getAsSignedConstant().getValue(), 32000); 117 EXPECT_EQ(Data4.getAsSignedConstant().getValue(), 2000000000); 118 EXPECT_EQ(Data8.getAsSignedConstant().getValue(), 0x1234567812345678LL); 119 EXPECT_EQ(LEBMin.getAsSignedConstant().getValue(), LLONG_MIN) [all...] |
/art/test/084-class-init/src/ |
Main.java | 100 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() + 101 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue()); 111 field0 = SlowInit.FIELD0.getValue(); 112 field1 = SlowInit.FIELD1.getValue(); 113 field2 = SlowInit.FIELD2.getValue(); 114 field3 = SlowInit.FIELD3.getValue();
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
TestModuleConfigHandler.java | 63 if (null != attributes.getValue(DESCRIPTION_TAG)) { 64 mFileMetadata.setDescription(attributes.getValue(DESCRIPTION_TAG)); 70 mTestCase.setTestClass(attributes.getValue(CLASS_TAG)); 73 mTargetPreparer.setTestClass(attributes.getValue(CLASS_TAG)); 76 option.setName(attributes.getValue(NAME_TAG)); 77 option.setValue(attributes.getValue(VALUE_TAG)); 78 String keyStr = attributes.getValue(KEY_TAG); 85 mModuleName = option.getValue();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
BiMapPutTester.java | 39 V v0 = samples.e0.getValue(); 56 V v0 = samples.e0.getValue(); 57 V v1 = samples.e1.getValue(); 69 getMap().put(samples.e0.getKey(), samples.e0.getValue()); 70 getMap().put(samples.e1.getKey(), samples.e1.getValue()); 80 V v0 = samples.e0.getValue(); 92 V v0 = samples.e0.getValue(); 94 V v1 = samples.e1.getValue();
|
/external/junit/src/main/java/org/junit/experimental/theories/ |
PotentialAssignment.java | 20 public Object getValue() { 49 public abstract Object getValue() throws CouldNotGenerateValueException;
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
LazyFieldTest.java | 51 lazyField.getValue(); 62 lazyField.getValue(); 72 assertEquals(message, lazyField.getValue()); 74 assertNotEqual(message, lazyField.getValue()); 80 assertEquals(message, lazyField.getValue()); 82 assertNotEqual(message, lazyField.getValue()); 91 assertFalse(message.equals(lazyField.getValue())); 100 assertFalse(message.equals(lazyField.getValue()));
|
/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/utils/ |
LiveDataUtilsTest.java | 62 assertThat(dedupedLiveData.getValue(), is(nullValue())); 71 assertThat(dedupedLiveData.getValue(), is(value)); 75 assertThat(dedupedLiveData.getValue(), is(value)); 80 assertThat(dedupedLiveData.getValue(), is(newerValue)); 99 assertThat(mappedLiveData.getValue(), is(nullValue())); 108 assertThat(mappedLiveData.getValue(), is("")); 112 assertThat(mappedLiveData.getValue(), is(value.toString())); 116 assertThat(mappedLiveData.getValue(), is(value.toString()));
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
EntryTest.java | 37 assertEquals(v1, e.getValue()); 46 assertEquals(v1, s.getValue()); 56 assertEquals(v1, e.getValue()); 66 assertEquals(v1, s.getValue()); 110 * getValue returns last setValue for SimpleEntry 116 assertEquals(v1, e.getValue()); 118 assertEquals(k2, e.getValue()); 129 assertEquals(v1, s.getValue());
|
/packages/apps/Dialer/java/com/android/dialer/common/ |
PerAccountSharedPreferences.java | 100 return getValue(key, defValue); 104 return getValue(key, defValue); 108 return getValue(key, defValue); 112 return getValue(key, defValue); 116 return getValue(key, defValue); 121 return getValue(key, null); 125 return getValue(key, defValue); 132 private <T> T getValue(String key, T defValue) {
|
/packages/services/Telephony/src/com/android/phone/vvm/ |
VisualVoicemailPreferences.java | 97 return getValue(key, defValue); 102 return getValue(key, defValue); 106 return getValue(key, defValue); 111 return getValue(key, defValue); 115 return getValue(key, defValue); 120 return getValue(key, null); 125 return getValue(key, defValue); 132 private <T> T getValue(String key, T defValue) {
|
/external/sonivox/jet_tools/JetCreator/ |
JetDialogs.py | 130 def GetValue(self, fld):
132 return self.ctrls[fld].GetValue()
167 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue()
174 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue()
184 if len(self.je.ctrls[JetDefs.F_JFILE].GetValue()) == 0:
188 if not FileExists(self.je.ctrls[JetDefs.F_JFILE].GetValue()):
206 def GetValue(self, fld):
207 return self.je.ctrls[fld].GetValue()
228 def GetValue(self, fld):
229 return self.je.ctrls[fld].GetValue()
[all...] |
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
EncodedField.java | 44 return ((accessFlags & Flag.ACC_VOLATILE.getValue()) != 0); 52 accessFlags |= Flag.ACC_VOLATILE.getValue(); 54 accessFlags &= ~(Flag.ACC_VOLATILE.getValue()); 75 public int getValue() {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_future5.py | 17 self.assertEqual(s.getvalue(), "foo\n")
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 79 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned); 90 const llvm::APSInt& getValue(const llvm::APSInt& X); 91 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned); 92 const llvm::APSInt& getValue(uint64_t X, QualType T); 109 return getValue(TargetType.convert(From)); 117 return getValue(TargetType.convert(From)); 122 return getValue(X, T); 126 return getValue(APSIntType(v).getMaxValue()); 130 return getValue(APSIntType(v).getMinValue()); 134 return getValue(getAPSIntType(T).getMaxValue()) [all...] |
/external/clang/test/Modules/ |
submodules.m | 9 int getValue() {
|
/external/clang/test/SemaCXX/ |
local-classes.cpp | 39 static int getValue() { return Value; }
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/ |
CodeGenerationUtilsTest.java | 17 assertEquals("getValue", getterName(Object.class, "value"));
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/ |
HeaderProperty.java | 24 public String getValue() {
|
/external/llvm/test/CodeGen/ARM/ |
urem-opt-size.ll | 16 %call = tail call i32 bitcast (i32 (...)* @GetValue to i32 ()*)() 26 %call = tail call i32 bitcast (i32 (...)* @GetValue to i32 ()*)() 36 %call = tail call i32 bitcast (i32 (...)* @GetValue to i32 ()*)() 43 declare i32 @GetValue(...) local_unnamed_addr
|
/external/python/cpython2/Lib/test/ |
test_future5.py | 17 self.assertEqual(s.getvalue(), "foo\n")
|
/external/python/cpython3/Lib/test/ |
test_future5.py | 17 self.assertEqual(s.getvalue(), "foo\n")
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
ExpectedExceptionsAnnotation.java | 18 public Class[] getValue() {
|
ParametersAnnotation.java | 19 public String[] getValue() {
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 104 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned); 116 const llvm::APSInt& getValue(const llvm::APSInt& X); 117 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned); 118 const llvm::APSInt& getValue(uint64_t X, QualType T); 135 return getValue(TargetType.convert(From)); 143 return getValue(TargetType.convert(From)); 148 return getValue(X, T); 152 return getValue(APSIntType(v).getMaxValue()); 156 return getValue(APSIntType(v).getMinValue()); 160 return getValue(getAPSIntType(T).getMaxValue()) [all...] |