HomeSort by relevance Sort by last modified time
    Searched refs:value2 (Results 1 - 25 of 531) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 32 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 +")";
  /external/compiler-rt/test/safestack/
overflow.c 22 int value2 = 42; local
24 return value1 != 42 || value2 != 42;
  /external/snakeyaml/src/test/java/org/pyyaml/
PyRecursiveTest.java 47 Map<AnInstance, AnInstance> value2 = (Map<AnInstance, AnInstance>) yaml.load(output1); local
48 assertEquals(value.size(), value2.size());
49 for (AnInstance tmpInstance : value2.values()) {
51 assertSame(tmpInstance.getBar(), value2); local
52 assertSame(tmpInstance, value2.get(tmpInstance));
64 Map value2 = (Map) yaml.load(output1); local
65 assertEquals(2, value2.size());
66 assertEquals("www", value2.get("abc"));
67 assertTrue(value2.get("qwerty") instanceof Map);
68 Map value3 = (Map) value2.get("qwerty")
82 List value2 = (List) yaml.load(output1); local
104 List value2 = (List) yaml.load(output1); local
122 Set<AnInstance> value2 = (Set<AnInstance>) yaml.load(output1); local
127 assertSame(tmpInstance.getBar(), value2); local
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 66 long value2 = right.value; local
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;
114 double value2 = right.value; local
    [all...]
DoubleConst.java 68 private static DoubleConst compute(int op, double value1, double value2,
74 newValue = value1 + value2;
77 newValue = value1 - value2;
80 newValue = value1 * value2;
83 newValue = value1 / value2;
86 newValue = value1 % value2;
  /external/curl/tests/unit/
unit1602.c 52 int *value2; variable
70 value2 = malloc(sizeof(int));
71 abort_unless(value2 != NULL, "Out of memory");
72 *value2 = 204;
73 nodep = Curl_hash_add(&hash_static, &key2, klen, value2);
75 free(value2); variable
  /external/valgrind/none/tests/s390x/
cgrj.c 28 void compare_never(int64_t value1, int64_t value2)
31 register int64_t val2 asm("r8") = value2;
44 void compare_always(int64_t value1, int64_t value2)
47 register int64_t val2 asm("r8") = value2;
60 void compare_le(int64_t value1, int64_t value2)
63 register int64_t val2 asm("r8") = value2;
76 void compare_ge(int64_t value1, int64_t value2)
79 register int64_t val2 asm("r8") = value2;
92 void compare_gt(int64_t value1, int64_t value2)
95 register int64_t val2 asm("r8") = value2;
    [all...]
clgrj.c 28 void compare_never(uint64_t value1, uint64_t value2)
31 register uint64_t val2 asm("r8") = value2;
44 void compare_always(uint64_t value1, uint64_t value2)
47 register uint64_t val2 asm("r8") = value2;
60 void compare_le(uint64_t value1, uint64_t value2)
63 register uint64_t val2 asm("r8") = value2;
76 void compare_ge(uint64_t value1, uint64_t value2)
79 register uint64_t val2 asm("r8") = value2;
92 void compare_gt(uint64_t value1, uint64_t value2)
95 register uint64_t val2 asm("r8") = value2;
    [all...]
clrj.c 28 void compare_never(uint32_t value1, uint32_t value2)
31 register uint32_t val2 asm("r8") = value2;
44 void compare_always(uint32_t value1, uint32_t value2)
47 register uint32_t val2 asm("r8") = value2;
60 void compare_le(uint32_t value1, uint32_t value2)
63 register uint32_t val2 asm("r8") = value2;
76 void compare_ge(uint32_t value1, uint32_t value2)
79 register uint32_t val2 asm("r8") = value2;
92 void compare_gt(uint32_t value1, uint32_t value2)
95 register uint32_t val2 asm("r8") = value2;
    [all...]
crj.c 28 void compare_never(int32_t value1, int32_t value2)
31 register int32_t val2 asm("r8") = value2;
44 void compare_always(int32_t value1, int32_t value2)
47 register int32_t val2 asm("r8") = value2;
60 void compare_le(int32_t value1, int32_t value2)
63 register int32_t val2 asm("r8") = value2;
76 void compare_ge(int32_t value1, int32_t value2)
79 register int32_t val2 asm("r8") = value2;
92 void compare_gt(int32_t value1, int32_t value2)
95 register int32_t val2 asm("r8") = value2;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 36 String value2 = "value 2"; local
38 Settings.setSetting(mContentResolver, "account", key2, value2);
40 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key2));
43 Settings.setSetting(mContentResolver, "account", key1, value2);
44 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key1));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerHashCodeTest.java 37 String value2 = "-5634562095872038262928728727834290276457386374882976782849"; local
39 BigInteger aNumber2 = new BigInteger(value2);
55 String value2 = "12378246728727834290276457386374882976782849"; local
57 BigInteger aNumber2 = new BigInteger(value2);
71 String value2 = "-5634562095872038262928728727834290276457386374882976782849"; local
73 BigInteger aNumber2 = new BigInteger(value2);
  /art/test/410-floats/src/
Main.java 103 public static void testArrayOperations(float[] a, int index, float value1, float value2) {
105 a[1] = value2;
106 assertEquals(value1 + value2, a[0] + a[1]);
111 a[index + 1] = value2;
112 assertEquals(value1 + value2, a[0] + a[1]);
117 public static void testArrayOperations(double[] a, int index, double value1, double value2) {
119 a[1] = value2;
120 assertEquals(value1 + value2, a[0] + a[1]);
125 a[index + 1] = value2;
126 assertEquals(value1 + value2, a[0] + a[1])
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Frame.java 199 Value value1, value2, value3, value4; local
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.getSize() == 1) {
    [all...]
Interpreter.java 124 * @param value2 the second argument of the instruction to be interpreted.
128 Value binaryOperation(AbstractInsnNode insn, Value value1, Value value2)
139 * @param value2 the second argument of the instruction to be interpreted.
147 Value value2,
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
NameClashAdapter.java 28 public void setGabbleBabbleFlabble(View view, String value, String value2) {
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter2/
NameClashAdapter.java 28 public void setGoogleFloobleBooble(View view, String value, String value2) {
  /external/protobuf/src/google/protobuf/io/
printer.h 84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
printer.h 84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
printer.h 84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
printer.h 84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
printer.h 84 const char* variable2, const string& value2);
87 const char* variable2, const string& value2,
  /external/clang/test/PCH/
chain-cxx.cpp 46 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/clang/test/SemaTemplate/
instantiate-enum.cpp 7 value2 enumerator in enum:adder::__anon8258
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
defined.exp 43 || ![info exists nm_output(value2)]} {
53 if {$nm_output(value2) != 2} {
54 send_log "value2 == $nm_output(value2)\n"
55 verbose "value2 == $nm_output(value2)"

Completed in 951 milliseconds

1 2 3 4 5 6 7 8 91011>>