Home
last modified time | relevance | path

Searched refs:value1 (Results 1 – 25 of 144) sorted by relevance

123456

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DFrame.java199 Value value1, value2, value3, value4; in execute() local
243 value1 = pop(); in execute()
244 push(interpreter.binaryOperation(insn, value1, value2)); in execute()
251 value1 = interpreter.copyOperation(insn, pop()); in execute()
253 setLocal(var, value1); in execute()
254 if (value1.getSize() == 2) { in execute()
274 value1 = pop(); in execute()
275 interpreter.ternaryOperation(insn, value1, value2, value3); in execute()
290 value1 = pop(); in execute()
291 if (value1.getSize() != 1) { in execute()
[all …]
DBasicVerifier.java187 final Value value1, in binaryOperation() argument
198 if (isSubTypeOf(value1, newValue(Type.getType("[Z")))) { in binaryOperation()
300 if (!isSubTypeOf(value1, expected1)) { in binaryOperation()
301 throw new AnalyzerException("First argument", expected1, value1); in binaryOperation()
306 return getElementValue(value1); in binaryOperation()
308 return super.binaryOperation(insn, value1, value2); in binaryOperation()
314 final Value value1, in ternaryOperation() argument
326 if (isSubTypeOf(value1, newValue(Type.getType("[Z")))) { in ternaryOperation()
354 expected1 = value1; in ternaryOperation()
360 if (!isSubTypeOf(value1, expected1)) { in ternaryOperation()
[all …]
/external/valgrind/main/none/tests/s390x/
Dcgrj.c28 void compare_never(int64_t value1, int64_t value2) in compare_never() argument
30 register int64_t val1 asm("r7") = value1; in compare_never()
44 void compare_always(int64_t value1, int64_t value2) in compare_always() argument
46 register int64_t val1 asm("r7") = value1; in compare_always()
60 void compare_le(int64_t value1, int64_t value2) in compare_le() argument
62 register int64_t val1 asm("r7") = value1; in compare_le()
76 void compare_ge(int64_t value1, int64_t value2) in compare_ge() argument
78 register int64_t val1 asm("r7") = value1; in compare_ge()
92 void compare_gt(int64_t value1, int64_t value2) in compare_gt() argument
94 register int64_t val1 asm("r7") = value1; in compare_gt()
[all …]
Dclgrj.c28 void compare_never(uint64_t value1, uint64_t value2) in compare_never() argument
30 register uint64_t val1 asm("r7") = value1; in compare_never()
44 void compare_always(uint64_t value1, uint64_t value2) in compare_always() argument
46 register uint64_t val1 asm("r7") = value1; in compare_always()
60 void compare_le(uint64_t value1, uint64_t value2) in compare_le() argument
62 register uint64_t val1 asm("r7") = value1; in compare_le()
76 void compare_ge(uint64_t value1, uint64_t value2) in compare_ge() argument
78 register uint64_t val1 asm("r7") = value1; in compare_ge()
92 void compare_gt(uint64_t value1, uint64_t value2) in compare_gt() argument
94 register uint64_t val1 asm("r7") = value1; in compare_gt()
[all …]
Dcrj.c28 void compare_never(int32_t value1, int32_t value2) in compare_never() argument
30 register int32_t val1 asm("r7") = value1; in compare_never()
44 void compare_always(int32_t value1, int32_t value2) in compare_always() argument
46 register int32_t val1 asm("r7") = value1; in compare_always()
60 void compare_le(int32_t value1, int32_t value2) in compare_le() argument
62 register int32_t val1 asm("r7") = value1; in compare_le()
76 void compare_ge(int32_t value1, int32_t value2) in compare_ge() argument
78 register int32_t val1 asm("r7") = value1; in compare_ge()
92 void compare_gt(int32_t value1, int32_t value2) in compare_gt() argument
94 register int32_t val1 asm("r7") = value1; in compare_gt()
[all …]
Dclrj.c28 void compare_never(uint32_t value1, uint32_t value2) in compare_never() argument
30 register uint32_t val1 asm("r7") = value1; in compare_never()
44 void compare_always(uint32_t value1, uint32_t value2) in compare_always() argument
46 register uint32_t val1 asm("r7") = value1; in compare_always()
60 void compare_le(uint32_t value1, uint32_t value2) in compare_le() argument
62 register uint32_t val1 asm("r7") = value1; in compare_le()
76 void compare_ge(uint32_t value1, uint32_t value2) in compare_ge() argument
78 register uint32_t val1 asm("r7") = value1; in compare_ge()
92 void compare_gt(uint32_t value1, uint32_t value2) in compare_gt() argument
94 register uint32_t val1 asm("r7") = value1; in compare_gt()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java65 long value1 = this.value; in compute0() local
70 newValue = value1 + value2; in compute0()
73 newValue = value1 - value2; in compute0()
76 newValue = value1 * value2; in compute0()
79 newValue = value1 / value2; in compute0()
82 newValue = value1 % value2; in compute0()
85 newValue = value1 | value2; in compute0()
88 newValue = value1 ^ value2; in compute0()
91 newValue = value1 & value2; in compute0()
113 double value1 = (double)this.value; in compute0() local
[all …]
DDoubleConst.java68 private static DoubleConst compute(int op, double value1, double value2, in compute() argument
74 newValue = value1 + value2; in compute()
77 newValue = value1 - value2; in compute()
80 newValue = value1 * value2; in compute()
83 newValue = value1 / value2; in compute()
86 newValue = value1 % value2; in compute()
/external/chromium_org/third_party/WebKit/Source/wtf/
DDataLog.h50 void dataLog(const T1& value1, const T2& value2) in dataLog() argument
52 dataFile().print(value1, value2); in dataLog()
56 void dataLog(const T1& value1, const T2& value2, const T3& value3) in dataLog() argument
58 dataFile().print(value1, value2, value3); in dataLog()
62 void dataLog(const T1& value1, const T2& value2, const T3& value3, const T4& value4) in dataLog() argument
64 dataFile().print(value1, value2, value3, value4); in dataLog()
68 void dataLog(const T1& value1, const T2& value2, const T3& value3, const T4& value4, const T5& valu… in dataLog() argument
70 dataFile().print(value1, value2, value3, value4, value5); in dataLog()
74 void dataLog(const T1& value1, const T2& value2, const T3& value3, const T4& value4, const T5& valu… in dataLog() argument
76 dataFile().print(value1, value2, value3, value4, value5, value6); in dataLog()
[all …]
DPrintStream.h60 void print(const T1& value1, const T2& value2) in print() argument
62 print(value1); in print()
67 void print(const T1& value1, const T2& value2, const T3& value3) in print() argument
69 print(value1); in print()
75 void print(const T1& value1, const T2& value2, const T3& value3, const T4& value4) in print() argument
77 print(value1); in print()
84 …void print(const T1& value1, const T2& value2, const T3& value3, const T4& value4, const T5& value… in print() argument
86 print(value1); in print()
94 …void print(const T1& value1, const T2& value2, const T3& value3, const T4& value4, const T5& value… in print() argument
96 print(value1); in print()
[all …]
/external/proguard/src/proguard/evaluation/value/
DComparisonValue.java31 private final Value value1; field in ComparisonValue
38 public ComparisonValue(Value value1, in ComparisonValue() argument
41 this.value1 = value1; in ComparisonValue()
52 this.value1.equals(((ComparisonValue)object).value1) && in equals()
60 value1.hashCode() ^ in hashCode()
67 return "("+value1+"~"+ value2 +")"; in toString()
/external/chromium_org/third_party/WebKit/Source/core/testing/
DPrivateScriptTest.js35 PrivateScriptTestPrototype.addValues_ = function(value1, value2) { argument
36 return value1 + value2;
39 PrivateScriptTestPrototype.addInteger = function(value1, value2) { argument
40 return this.addValues_(value1, value2);
43 PrivateScriptTestPrototype.addString = function(value1, value2) { argument
44 return this.addValues_(value1, value2);
151 PrivateScriptTestPrototype.addIntegerForPrivateScriptOnly = function(value1, value2) { argument
152 return value1 + value2;
160 PrivateScriptTestPrototype.addIntegerImplementedInCPP = function(value1, value2) { argument
161 return this.addIntegerImplementedInCPPForPrivateScriptOnly(value1, value2);
DPartialPrivateScriptTest.js9 PrivateScriptTestPrototype.addIntegerInPartial = function(value1, value2) { argument
10 return value1 + value2;
13 PrivateScriptTestPrototype.addInteger2InPartial = function(value1, value2) { argument
16 return this.addValues_(value1, value2);
DPrivateScriptTest.idl13 [ImplementedInPrivateScript] short addInteger(short value1, short value2);
14 [ImplementedInPrivateScript] DOMString addString(DOMString value1, DOMString value2);
39 …ript, OnlyExposedToPrivateScript] short addIntegerForPrivateScriptOnly(short value1, short value2);
41 [ImplementedInPrivateScript] short addIntegerImplementedInCPP(short value1, short value2);
42 …[OnlyExposedToPrivateScript] short addIntegerImplementedInCPPForPrivateScriptOnly(short value1, sh…
/external/qemu/android/
Dsnaphost-android.c51 char* key, *value1, *value2; in _cmp_hw_config() local
53 if (iniFile_getEntry(current, n, &key, &value1)) { in _cmp_hw_config()
61 key, value1); in _cmp_hw_config()
63 free(value1); in _cmp_hw_config()
67 ret = strcmp(value1, value2); in _cmp_hw_config()
70 key, value1, value2); in _cmp_hw_config()
74 free(value1); in _cmp_hw_config()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSBasicShapes.h180 void updateShapeSize1Value(CSSPrimitiveValue* value1) in updateShapeSize1Value() argument
182 updateShapeSize4Values(value1, value1, value1, value1); in updateShapeSize1Value()
185 void updateShapeSize2Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2) in updateShapeSize2Values() argument
187 updateShapeSize4Values(value1, value2, value1, value2); in updateShapeSize2Values()
190 …void updateShapeSize3Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2, CSSPrimitiveVal… in updateShapeSize3Values() argument
192 updateShapeSize4Values(value1, value2, value3, value2); in updateShapeSize3Values()
/external/chromium_org/base/containers/
Dhash_tables.h131 inline std::size_t HashInts32(uint32 value1, uint32 value2) { in HashInts32() argument
132 uint64 value1_64 = value1; in HashInts32()
152 inline std::size_t HashInts64(uint64 value1, uint64 value2) { in HashInts64() argument
158 uint32 value1a = static_cast<uint32>(value1 & 0xffffffff); in HashInts64()
159 uint32 value1b = static_cast<uint32>((value1 >> 32) & 0xffffffff); in HashInts64()
183 inline std::size_t HashPair(Type1 value1, Type2 value2) { \
184 return HashInts32(value1, value2); \
207 inline std::size_t HashPair(Type1 value1, Type2 value2) { \
208 return HashInts64(value1, value2); \
/external/skia/src/animator/
DSkScriptTokenizer.cpp752 SkScriptValue2 value1; in innerScript() local
753 runtime.getResult(&value1.fOperand); in innerScript()
754 value1.fType = fReturnType; in innerScript()
755 fValueStack.push(value1); in innerScript()
1063 SkScriptValue2 value1; in processOp() local
1064 memset(&value1, 0, sizeof(SkScriptValue2)); in processOp()
1073 fValueStack.pop(&value1); in processOp()
1074 constantOperands &= value1.fIsConstant == SkScriptValue2::kConstant; in processOp()
1075 value1.fIsWritten = SkScriptValue2::kUnwritten; in processOp()
1077 SkTSwap(value1, value2); in processOp()
[all …]
/external/chromium_org/third_party/skia/src/animator/
DSkScriptTokenizer.cpp752 SkScriptValue2 value1; in innerScript() local
753 runtime.getResult(&value1.fOperand); in innerScript()
754 value1.fType = fReturnType; in innerScript()
755 fValueStack.push(value1); in innerScript()
1063 SkScriptValue2 value1; in processOp() local
1064 memset(&value1, 0, sizeof(SkScriptValue2)); in processOp()
1073 fValueStack.pop(&value1); in processOp()
1074 constantOperands &= value1.fIsConstant == SkScriptValue2::kConstant; in processOp()
1075 value1.fIsWritten = SkScriptValue2::kUnwritten; in processOp()
1077 SkTSwap(value1, value2); in processOp()
[all …]
/external/chromium_org/net/cert/
Dtest_root_certs_mac.cc21 Boolean OurSecCertificateEqual(const void* value1, const void* value2) { in OurSecCertificateEqual() argument
22 if (CFGetTypeID(value1) != SecCertificateGetTypeID() || in OurSecCertificateEqual()
24 return CFEqual(value1, value2); in OurSecCertificateEqual()
26 reinterpret_cast<SecCertificateRef>(const_cast<void*>(value1)), in OurSecCertificateEqual()
/external/guava/guava-tests/test/com/google/common/cache/
DCacheReferencesTest.java92 String value1 = key1.toString();
95 assertSame(value1, cache.getUnchecked(key1));
98 ASSERT.that(cache.asMap().values()).hasContentsAnyOrder(value1, value2);
99 assertEquals(ImmutableSet.of(immutableEntry(key1, value1), immutableEntry(key2, value2)),
107 String value1 = key1.toString();
110 assertSame(value1, cache.getUnchecked(key1));
141 String value1 = cache.getUnchecked(key1);
145 value1 = null;
/external/chromium_org/chrome/browser/extensions/api/storage/
Dsettings_sync_unittest.cc307 base::StringValue value1("fooValue"); in TEST_F() local
314 storage1->Set(DEFAULTS, "foo", value1); in TEST_F()
321 EXPECT_PRED_FORMAT2(ValuesEq, &value1, &all_sync_data["s1"][0].value()); in TEST_F()
327 "s1", "foo", value1, model_type)); in TEST_F()
342 storage1->Set(DEFAULTS, "foo", value1); in TEST_F()
358 base::StringValue value1("fooValue"); in TEST_F() local
365 storage1->Set(DEFAULTS, "foo", value1); in TEST_F()
378 EXPECT_TRUE(value1.Equals(&change.value())); in TEST_F()
390 base::StringValue value1("fooValue"); in TEST_F() local
400 storage1->Set(DEFAULTS, "overwriteMe", value1); in TEST_F()
[all …]
/external/chromium_org/gpu/config/
Dgpu_control_list_number_info_unittest.cc31 std::string value1; in TEST_F() local
34 value1 = "3.14"; in TEST_F()
37 FloatInfo info(op[i], value1, value2); in TEST_F()
129 std::string value1; in TEST_F() local
132 value1 = "3"; in TEST_F()
135 IntInfo info(op[i], value1, value2); in TEST_F()
/external/chromium_org/net/http/
Dhttp_server_properties_manager_unittest.cc270 const uint32 value1 = 31337; in TEST_F() local
272 spdy_server_mail, id1, flags1, value1); in TEST_F()
284 EXPECT_EQ(value1, flags_and_value1_ret.second); in TEST_F()
296 const uint32 value1 = 31337; in TEST_F() local
298 spdy_server_mail, id1, flags1, value1); in TEST_F()
310 EXPECT_EQ(value1, flags_and_value1_ret.second); in TEST_F()
334 const uint32 value1 = 31337; in TEST_F() local
336 spdy_server_mail, id1, flags1, value1); in TEST_F()
348 EXPECT_EQ(value1, flags_and_value1_ret.second); in TEST_F()
416 const uint32 value1 = 31337; in TEST_F() local
[all …]
/external/clang/test/SemaObjC/
Divar-sem-check-2.m7 @property(retain) id value1; property
19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both clai…

123456