HomeSort by relevance Sort by last modified time
    Searched defs:value1 (Results 1 - 25 of 546) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/experimental/filesystem/class.path/path.nonmember/
swap.pass.cpp 30 const char* value1 = "foo/bar/baz"; local
32 path p1(value1);
45 assert(p2.native() == value1);
47 assert(p1.native() == value1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.nonmember/
swap.pass.cpp 30 const char* value1 = "foo/bar/baz"; local
32 path p1(value1);
45 assert(p2.native() == value1);
47 assert(p1.native() == value1);
  /external/compiler-rt/test/safestack/
overflow.c 21 int value1 = 42; local
28 return value1 != 42 || value2 != 42;
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 29 @property (readonly) int value1; variable
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
SineWaveTone.java 43 short value1 = (short) (mAmplitude * Math.sin(mPhase) * Short.MAX_VALUE); local
44 tone[i] = value1;
64 double value1 = mAmplitude * Math.sin(mPhase); local
65 tone[i] = value1;
TwoSineWavesTone.java 50 short value1 = (short) (mAmplitude * Math.sin(mPhase1) * Short.MAX_VALUE); local
52 tone[i] = (short) (value1 + value2);
79 double value1 = mAmplitude * Math.sin(mPhase1); local
81 tone[i] = value1 + value2;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
swap.pass.cpp 30 const char* value1; member in struct:SwapTestcase
55 path p1(TC.value1);
62 assert(p2 == TC.value1);
67 assert(p1 == TC.value1);
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 31 private final Value value1; field in class:ComparisonValue
38 public ComparisonValue(Value value1,
41 this.value1 = value1;
52 this.value1.equals(((ComparisonValue)object).value1) &&
60 value1.hashCode() ^
67 return "("+value1+"~"+ value2 +")";
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
swap.pass.cpp 30 const char* value1; member in struct:SwapTestcase
55 path p1(TC.value1);
62 assert(p2 == TC.value1);
67 assert(p1 == TC.value1);
  /external/google-tv-pairing-protocol/cpp/tests/polo/util/
poloutiltest.cc 79 const std::string value1 = PoloUtil::BytesToHexString(random1, 16); local
87 ASSERT_NE(value1, value2);
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 43 auto value1 = static_cast<Input1>(in1); local
45 static_assert(std::is_same_v<Output, decltype(std::gcd(value1, value2))>, "");
46 static_assert(std::is_same_v<Output, decltype(std::gcd(value2, value1))>, "");
47 assert(static_cast<Output>(out) == std::gcd(value1, value2));
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 42 auto value1 = static_cast<Input1>(in1); local
44 static_assert(std::is_same_v<Output, decltype(std::lcm(value1, value2))>, "");
45 static_assert(std::is_same_v<Output, decltype(std::lcm(value2, value1))>, "");
46 assert(static_cast<Output>(out) == std::lcm(value1, value2));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerHashCodeTest.java 36 String value1 = "12378246728727834290276457386374882976782849"; local
38 BigInteger aNumber1 = new BigInteger(value1);
54 String value1 = "12378246728727834290276457386374882976782849"; local
56 BigInteger aNumber1 = new BigInteger(value1);
70 String value1 = "12378246728727834290276457386374882976782849"; local
72 BigInteger aNumber1 = new BigInteger(value1);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLevelTest.java 43 int value1 = 120; local
44 Level l = new MockLevel("level1", value1);
46 value1, l.intValue());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 43 auto value1 = static_cast<Input1>(in1); local
45 static_assert(std::is_same_v<Output, decltype(std::gcd(value1, value2))>, "");
46 static_assert(std::is_same_v<Output, decltype(std::gcd(value2, value1))>, "");
47 assert(static_cast<Output>(out) == std::gcd(value1, value2));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 41 auto value1 = static_cast<Input1>(in1); local
43 static_assert(std::is_same_v<Output, decltype(std::lcm(value1, value2))>, "");
44 static_assert(std::is_same_v<Output, decltype(std::lcm(value2, value1))>, "");
45 assert(static_cast<Output>(out) == std::lcm(value1, value2));
  /system/bt/osi/test/
hash_map_utils_test.cc 62 char params[] = "key=valu0;key=value1";
64 char value1[] = "value1"; local
67 EXPECT_EQ(value1, map[key]);
104 char params[] = "key0=value0;key1=value1;";
108 char value1[] = "value1"; local
112 EXPECT_EQ(value1, map[key1]);
  /system/chre/util/tests/
unique_ptr_test.cc 88 Value *value1, *value2; local
93 value1 = myInt.get();
94 EXPECT_NE(value1, nullptr);
96 EXPECT_EQ(value1, value2);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
Contacts_SettingsTest.java 34 String value1 = "value 1"; local
37 Settings.setSetting(mContentResolver, "account", key1, value1);
39 assertEquals(value1, Settings.getSetting(mContentResolver, "account", key1));
  /external/v8/src/compiler/
control-flow-optimizer.cc 104 int32_t value1 = m1.right().Value(); local
105 if (values.find(value1) != values.end()) break;
106 DCHECK_NE(value, value1);
117 value = value1;
  /frameworks/support/collection/src/test/java/androidx/collection/
LongSparseArrayTest.java 40 String value1 = "some value", value2 = "some other value"; local
41 LongSparseArray.append(key1, value1);
SparseArrayCompatTest.java 40 String value1 = "some value", value2 = "some other value"; local
41 sparseArrayCompat.append(key1, value1);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
MyWebView.java 80 final String value1 = values.valueAt(0).getTextValue().toString(); local
82 if (mExpectation.mExpectedUsername.equals(value1)) {
83 mExpectation.mActualUsername = value1;
87 mExpectation.mActualPassword = value1;
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.hpp 50 GenericVec4 value1; member in struct:rr::Fragment
57 , value1 ()
66 , value1 (value1_)
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 65 long value1 = this.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;
113 double value1 = (double)this.value local
    [all...]

Completed in 892 milliseconds

1 2 3 4 5 6 7 8 91011>>