HomeSort by relevance Sort by last modified time
    Searched refs:equal (Results 176 - 200 of 2040) sorted by null

1 2 3 4 5 6 78 91011>>

  /build/make/tools/droiddoc/templates-pdk/assets/
customizations.js 5 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
  /external/fonttools/Lib/fontTools/
merge.py 35 def equal(lst): function
39 assert all(item == first for item in t), "Expected all items to be equal: %s" % lst
157 'tableTag': equal,
158 'tableVersion': equal,
177 14: bitwise_and, # Last resort font. FIXME? equal or first may be better
182 'tableTag': equal,
186 'magicNumber': equal,
188 'unitsPerEm': equal,
199 'glyphDataFormat': equal,
203 '*': equal,
    [all...]
  /external/libcxx/test/std/numerics/numeric.ops/exclusive.scan/
exclusive_scan.pass.cpp 35 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
41 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
exclusive_scan_init_op.pass.cpp 36 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
42 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
  /external/libcxx/test/std/numerics/numeric.ops/inclusive.scan/
inclusive_scan.pass.cpp 35 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
41 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
inclusive_scan_op.pass.cpp 37 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
43 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
  /external/libdaemon/libdaemon/
Android.mk 20 # -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations
  /external/mesa3d/src/compiler/glsl/
lower_subroutine.cpp 115 last_branch = if_tree(equal(subr_to_int(var), lc), new_call);
117 last_branch = if_tree(equal(subr_to_int(var), lc), new_call, last_branch);
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
filter_dataset_op_test.py 46 lambda d: math_ops.equal(d["bar"] % 2, 0)).map(
60 return math_ops.equal(i % 2, 0)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/exclusive.scan/
exclusive_scan.pass.cpp 32 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
38 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numeric.ops/inclusive.scan/
inclusive_scan.pass.cpp 32 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
38 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
inclusive_scan_op.pass.cpp 34 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
40 assert(std::equal(v.begin(), v.end(), rFirst, rLast));
  /external/clang/lib/Basic/
OperatorPrecedence.cpp 43 case tok::equal:
  /external/clang/tools/clang-format/
clang-format.py 100 if op[0] is not 'equal':
  /external/e2fsprogs/intl/
eval-plural.h 88 case equal:
plural-exp.h 54 equal, /* Comparison for equality. */ enumerator in enum:expression::operator
  /external/golang-protobuf/proto/
equal_test.go 94 {"equal empty", &pb.GoEnum{}, &pb.GoEnum{}, true},
103 {"equal set", &pb.GoTestField{Label: String("foo")}, &pb.GoTestField{Label: String("foo")}, true},
108 {"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, true},
109 {"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, true},
110 {"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int32{}}, true},
111 {"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: nil}, true},
120 "nested, equal",
135 // In proto3, []byte{} and []byte(nil) are equal.
220 if res := Equal(tc.a, tc.b); res != tc.exp {
221 t.Errorf("%v: Equal(%v, %v) = %v, want %v", tc.desc, tc.a, tc.b, res, tc.exp
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.foreach/
for_each_n.pass.cpp 32 && std::equal(std::begin(ia), std::end(ia), std::begin(expected))
  /external/libcxx/test/support/
debug_mode_helper.h 372 CHECKPOINT("testing swap with non-equal allocators");
  /external/protobuf/js/binary/
constants.js 160 * A comparer function returns true if two protos are equal.
308 * Convenience constant equal to 2^20.
315 * Convenience constant equal to 2^23.
322 * Convenience constant equal to 2^31.
329 * Convenience constant equal to 2^32.
336 * Convenience constant equal to 2^52.
343 * Convenience constant equal to 2^63.
350 * Convenience constant equal to 2^64.
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 60 EXPECT_TRUE(std::equal(source_bytes.begin(), source_bytes.end(),
  /external/skia/tests/
StrokeTest.cpp 15 static bool equal(const SkRect& a, const SkRect& b) { function
74 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds()));
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));
  /external/skqp/tests/
StrokeTest.cpp 15 static bool equal(const SkRect& a, const SkRect& b) { function
74 REPORTER_ASSERT(reporter, equal(outer, fillPath.getBounds()));
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));
  /external/tensorflow/tensorflow/contrib/metrics/python/metrics/
classification.py 58 math_ops.equal(predictions, labels), dtypes.float32)
  /external/tensorflow/tensorflow/python/data/kernel_tests/
filter_dataset_op_test.py 50 .filter(lambda x, _y, _z: math_ops.equal(math_ops.mod(x, modulus), 0))
91 .filter(lambda d: math_ops.equal(d["bar"] % 2, 0))
113 return math_ops.equal(summed, 1 + 4 + 9)
142 return math_ops.equal(i % 2, 0)

Completed in 625 milliseconds

1 2 3 4 5 6 78 91011>>