Searched refs:value2 (Results 1 - 25 of 116) sorted by relevance

12345

/external/proguard/src/proguard/evaluation/value/
H A DComparisonValue.java32 private final Value value2; field in class:ComparisonValue
39 Value value2)
42 this.value2 = value2;
53 this.value2.equals(((ComparisonValue)object).value2);
61 value2.hashCode();
67 return "("+value1+"~"+ value2 +")";
38 ComparisonValue(Value value1, Value value2) argument
/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java66 long value2 = right.value;
70 newValue = value1 + value2;
73 newValue = value1 - value2;
76 newValue = value1 * value2;
79 newValue = value1 / value2;
82 newValue = value1 % value2;
85 newValue = value1 | value2;
88 newValue = value1 ^ value2;
91 newValue = value1 & value2;
94 newValue = value << (int)value2;
[all...]
H A DDoubleConst.java68 private static DoubleConst compute(int op, double value1, double value2, argument
74 newValue = value1 + value2;
77 newValue = value1 - value2;
80 newValue = value1 * value2;
83 newValue = value1 / value2;
86 newValue = value1 % value2;
/external/valgrind/none/tests/s390x/
H A Dcgrj.c28 void compare_never(int64_t value1, int64_t value2) argument
31 register int64_t val2 asm("r8") = value2;
44 void compare_always(int64_t value1, int64_t value2) argument
47 register int64_t val2 asm("r8") = value2;
60 void compare_le(int64_t value1, int64_t value2) argument
63 register int64_t val2 asm("r8") = value2;
76 void compare_ge(int64_t value1, int64_t value2) argument
79 register int64_t val2 asm("r8") = value2;
92 void compare_gt(int64_t value1, int64_t value2) argument
95 register int64_t val2 asm("r8") = value2;
108 compare_lt(int64_t value1, int64_t value2) argument
124 compare_eq(int64_t value1, int64_t value2) argument
140 compare_ne(int64_t value1, int64_t value2) argument
[all...]
H A Dclgrj.c28 void compare_never(uint64_t value1, uint64_t value2) argument
31 register uint64_t val2 asm("r8") = value2;
44 void compare_always(uint64_t value1, uint64_t value2) argument
47 register uint64_t val2 asm("r8") = value2;
60 void compare_le(uint64_t value1, uint64_t value2) argument
63 register uint64_t val2 asm("r8") = value2;
76 void compare_ge(uint64_t value1, uint64_t value2) argument
79 register uint64_t val2 asm("r8") = value2;
92 void compare_gt(uint64_t value1, uint64_t value2) argument
95 register uint64_t val2 asm("r8") = value2;
108 compare_lt(uint64_t value1, uint64_t value2) argument
124 compare_eq(uint64_t value1, uint64_t value2) argument
140 compare_ne(uint64_t value1, uint64_t value2) argument
[all...]
H A Dclrj.c28 void compare_never(uint32_t value1, uint32_t value2) argument
31 register uint32_t val2 asm("r8") = value2;
44 void compare_always(uint32_t value1, uint32_t value2) argument
47 register uint32_t val2 asm("r8") = value2;
60 void compare_le(uint32_t value1, uint32_t value2) argument
63 register uint32_t val2 asm("r8") = value2;
76 void compare_ge(uint32_t value1, uint32_t value2) argument
79 register uint32_t val2 asm("r8") = value2;
92 void compare_gt(uint32_t value1, uint32_t value2) argument
95 register uint32_t val2 asm("r8") = value2;
108 compare_lt(uint32_t value1, uint32_t value2) argument
124 compare_eq(uint32_t value1, uint32_t value2) argument
140 compare_ne(uint32_t value1, uint32_t value2) argument
[all...]
H A Dcrj.c28 void compare_never(int32_t value1, int32_t value2) argument
31 register int32_t val2 asm("r8") = value2;
44 void compare_always(int32_t value1, int32_t value2) argument
47 register int32_t val2 asm("r8") = value2;
60 void compare_le(int32_t value1, int32_t value2) argument
63 register int32_t val2 asm("r8") = value2;
76 void compare_ge(int32_t value1, int32_t value2) argument
79 register int32_t val2 asm("r8") = value2;
92 void compare_gt(int32_t value1, int32_t value2) argument
95 register int32_t val2 asm("r8") = value2;
108 compare_lt(int32_t value1, int32_t value2) argument
124 compare_eq(int32_t value1, int32_t value2) argument
140 compare_ne(int32_t value1, int32_t value2) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DFrame.java199 Value value1, value2, value3, value4;
242 value2 = pop();
244 push(interpreter.binaryOperation(insn, value1, value2));
273 value2 = pop();
275 interpreter.ternaryOperation(insn, value1, value2, value3);
299 value2 = pop();
300 if (value1.getSize() != 1 || value2.getSize() != 1) {
304 push(interpreter.copyOperation(insn, value2));
310 value2 = pop();
311 if (value2
[all...]
H A DInterpreter.java124 * @param value2 the second argument of the instruction to be interpreted.
128 Value binaryOperation(AbstractInsnNode insn, Value value1, Value value2) argument
139 * @param value2 the second argument of the instruction to be interpreted.
147 Value value2,
144 ternaryOperation( AbstractInsnNode insn, Value value1, Value value2, Value value3) argument
H A DBasicVerifier.java188 final Value value2) throws AnalyzerException
302 } else if (!isSubTypeOf(value2, expected2)) {
303 throw new AnalyzerException("Second argument", expected2, value2);
308 return super.binaryOperation(insn, value1, value2);
315 final Value value2,
363 } else if (value2 != BasicValue.INT_VALUE) {
366 value2);
185 binaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2) argument
312 ternaryOperation( final AbstractInsnNode insn, final Value value1, final Value value2, final Value value3) argument
/external/clang/test/PCH/
H A Dchain-cxx.cpp46 static const int value2; member in struct:TS3
51 const int TS3<T>::value2 = 1; member in class:TS3
109 extern int arr[TS3<int>::value2];
144 int arr[TS3<int>::value2];
/external/v8/test/mjsunit/es6/
H A Dgenerators-relocation.js13 function RunTest(formals_and_body, args, value1, value2) {
36 assertIteratorResult(value2, false, obj.next());
/external/clang/test/SemaTemplate/
H A Dinstantiate-enum.cpp7 value2 enumerator in enum:adder::__anon2734
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCookieManagerTest.java37 String value2 = "some special value: thing";
38 cookieManager.setCookie(url2, value2);
41 assertThat(cookieManager.getCookie(url2), is(value2));
/external/icu/icu4c/source/test/cintltst/
H A Dtrie2test.c112 uint32_t value, value2; local
131 value2=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(trie, start);
133 value2=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(trie, start);
135 if(value!=value2) {
137 typeName, testName, (long)start, (long)value2, (long)value);
142 value2=UTRIE2_GET16_FROM_SUPP(trie, start);
144 value2=UTRIE2_GET32_FROM_SUPP(trie, start);
146 if(value!=value2) {
148 typeName, testName, (long)start, (long)value2, (long)value);
152 value2
487 uint32_t value, value2; local
731 uint32_t value, value2; local
1376 uint32_t value1, value2; local
1395 uint32_t value1, value2; local
[all...]
H A Dtrietest.c264 uint32_t value, value2; local
380 value2=UTRIE_GET32_FROM_BMP(&trie, start);
382 value2=UTRIE_GET16_FROM_BMP(&trie, start);
384 if(value!=value2) {
386 testName, start, value2, value);
390 value2=UTRIE_GET32_FROM_LEAD(&trie, start);
392 value2=UTRIE_GET16_FROM_LEAD(&trie, start);
394 if(value!=value2) {
396 testName, start, value2, value);
401 UTRIE_GET32(&trie, start, value2);
458 uint32_t value, value2; local
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheReferencesTest.java93 String value2 = key2.toString();
95 assertSame(value2, cache.getUnchecked(key2));
97 ASSERT.that(cache.asMap().values()).has().exactly(value1, value2);
98 assertEquals(ImmutableSet.of(immutableEntry(key1, value1), immutableEntry(key2, value2)),
108 String value2 = key2.toString();
110 assertSame(value2, cache.getUnchecked(key2));
116 ASSERT.that(cache.asMap().values()).has().item(value2);
117 assertEquals(ImmutableSet.of(immutableEntry(key2, value2)), cache.asMap().entrySet());
/external/protobuf/src/google/protobuf/io/
H A Dprinter.h84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
H A Dprinter.cc127 const char* variable2, const string& value2) {
130 vars[variable2] = value2;
136 const char* variable2, const string& value2,
140 vars[variable2] = value2;
125 Print(const char* text, const char* variable1, const string& value1, const char* variable2, const string& value2) argument
134 Print(const char* text, const char* variable1, const string& value1, const char* variable2, const string& value2, const char* variable3, const string& value3) argument
/external/clang/test/Analysis/inlining/
H A DInlineObjCInstanceMethod.h27 - (int) value2;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieTest.java283 int value2 = trie.getBMPValue((char)start);
284 if (value != value2) {
287 + Integer.toHexString(value2) + " instead of 0x"
291 value2 = trie.getLeadValue((char)start);
292 if (value != value2) {
295 + Integer.toHexString(value2) + " instead of 0x"
300 int value2 = trie.getCodePointValue(start);
301 if (value != value2) {
304 + Integer.toHexString(value2) + " instead of 0x"
/external/libxml2/
H A Dpattern.c158 const xmlChar *value2; /* The namespace name */ member in struct:_xmlStepOp
249 if (op->value2 != NULL)
250 xmlFree((xmlChar *) op->value2);
340 * @value2: the second value
349 xmlPatOp op, xmlChar * value, xmlChar * value2)
365 comp->steps[comp->nbStep].value2 = value2;
389 tmp = comp->steps[i].value2;
390 comp->steps[i].value2 = comp->steps[j].value2;
347 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED, xmlPatternPtr comp, xmlPatOp op, xmlChar * value, xmlChar * value2) argument
[all...]
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
H A DAbstractCommandHandlerTestCase.java109 * @param value2- the expected value2
112 String key2, Object value2) {
117 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
111 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java116 * @param value12- the expected value2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument
/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/stub/command/
H A DAbstractCommandHandlerTest.java116 * @param value12- the expected value2
119 String key2, Object value2) {
124 assertEqualsAllTypes("value2:" + value2, value2, invocationRecord.getObject(key2));
118 verifyTwoDataElements(InvocationRecord invocationRecord, String key1, Object value1, String key2, Object value2) argument

Completed in 1228 milliseconds

12345