/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | sequence_urbg.h | 44 sequence_urbg(std::initializer_list<result_type> data) : i_(0), data_(data) {} in sequence_urbg() 45 void reset() { i_ = 0; } in reset() 47 result_type operator()() { return data_[i_++ % data_.size()]; } in operator ()() 49 size_t invocations() const { return i_; } in invocations() 52 size_t i_; member in absl::random_internal::sequence_urbg
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-open-type.hh | 448 const Type& operator [] (int i_) const in operator []() 450 unsigned int i = (unsigned int) i_; in operator []() 455 Type& operator [] (int i_) in operator []() 457 unsigned int i = (unsigned int) i_; in operator []() 548 const Type& operator [] (int i_) const in operator []() 550 unsigned int i = (unsigned int) i_; in operator []() 555 Type& operator [] (int i_) in operator []() 557 unsigned int i = (unsigned int) i_; in operator []() 606 const Type& operator [] (int i_) const in operator []() 608 unsigned int i = (unsigned int) i_; in operator []() [all...] |
H A D | hb-vector.hh | 130 Type& operator [] (int i_) in operator []() 132 unsigned int i = (unsigned int) i_; in operator []() 137 const Type& operator [] (int i_) const in operator []() 139 unsigned int i = (unsigned int) i_; in operator []()
|
/third_party/nghttp2/tests/ |
H A D | nghttp2_test_helper.h | 49 ssize_t i_; \ 54 for (i_ = 0; i_ < (ssize_t)len; ++i_) { \ 55 CU_ASSERT(nghttp2_nv_equal(&a[i_], &b[i_])); \
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-matchers-comparisons_test.cc | 944 explicit MoveOnly(int i) : i_(i) {} in MoveOnly() 950 bool operator==(const MoveOnly& other) const { return i_ == other.i_; } in operator ==() 951 bool operator!=(const MoveOnly& other) const { return i_ != other.i_; } in operator !=() 952 bool operator<(const MoveOnly& other) const { return i_ < other.i_; } in operator <() 953 bool operator<=(const MoveOnly& other) const { return i_ <= other.i_; } in operator <=() 954 bool operator>(const MoveOnly& other) const { return i_ > othe in operator <=() 958 int i_; global() member in testing::gmock_matchers_test::__anon3002::MoveOnly [all...] |
H A D | gmock-matchers-misc_test.cc | 722 SampleVariantIntString(int i) : i_(i), has_int_(true) {} in SampleVariantIntString() 736 const int& get_impl(int*) const { return i_; } in get_impl() 739 int i_; member in testing::gmock_matchers_test::__anon3004::SampleVariantIntString 786 explicit SampleAnyType(int i) : index_(0), i_(i) {} in SampleAnyType() 796 int i_; member in testing::gmock_matchers_test::__anon3004::SampleAnyType 799 const int* get_impl(int*) const { return index_ == 0 ? &i_ : nullptr; } in get_impl()
|
/third_party/node/deps/v8/src/torque/ |
H A D | earley-parser.h | 173 CHECK_LT(i_, results_.size()); in Next() 174 return std::move(results_[i_++]); in Next() 180 bool HasNext() const { return i_ < results_.size(); } in HasNext() 186 size_t i_ = 0; member in v8::internal::torque::ParseResultIterator
|
/third_party/rust/crates/nom/src/multi/ |
H A D | mod.rs | 517 let i_ = i.clone(); in many1_count() 518 match f.parse(i_) { in many1_count() 706 let i_ = input.clone(); in fold_many0() 708 match f.parse(i_) { in fold_many0()
|
/third_party/ninja/src/ |
H A D | graph.cc | 643 explicit matches(std::vector<StringPiece>::iterator i) : i_(i) {}
in matches() 647 return *i_ == opath;
in operator ()() 650 std::vector<StringPiece>::iterator i_;
member
|
/third_party/littlefs/scripts/ |
H A D | bench.py | 78 i_ = 0 81 yield v[i_:i] 82 i_ = i+1 87 if v[i_:].strip(): 88 yield v[i_:]
|
H A D | test.py | 81 i_ = 0 84 yield v[i_:i] 85 i_ = i+1 90 if v[i_:].strip(): 91 yield v[i_:]
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsScissorTests.cpp | 597 Color(const deInt32 i_[4]) : type(INT) { i[0] = i_[0]; i[1] = i_[1]; i[2] = i_[2]; i[3] = i_[3]; } in Color()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | dirac_dwt.asm | 184 cglobal horizontal_compose_haar%2i_%1, 3,6,4, b, tmp, w, x, w2, b_w2
|
/third_party/mbedtls/3rdparty/everest/library/legacy/ |
H A D | Hacl_Curve25519.c | 728 uint32_t i_ = i - (uint32_t)1U; in Hacl_EC_Ladder_SmallLoop_cmult_small_loop() local 732 Hacl_EC_Ladder_SmallLoop_cmult_small_loop(nq, nqpq, nq2, nqpq2, q, byt_, i_); in Hacl_EC_Ladder_SmallLoop_cmult_small_loop()
|
/third_party/mbedtls/3rdparty/everest/library/ |
H A D | Hacl_Curve25519.c | 683 uint32_t i_ = i - (uint32_t)1U; in Hacl_EC_Ladder_SmallLoop_cmult_small_loop() local 687 Hacl_EC_Ladder_SmallLoop_cmult_small_loop(nq, nqpq, nq2, nqpq2, q, byt_, i_); in Hacl_EC_Ladder_SmallLoop_cmult_small_loop()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/ |
H A D | UnittestCustomOptionsProto3.cs | 3111 i_ = other.i_; in Aggregate() 3124 private int i_; field in UnitTest.Issues.TestProtos.Aggregate 3127 get { return i_; } 3129 i_ = value;
|
H A D | TestMessagesProto2.cs | 5620 i_ = other.i_; in MessageSetCorrectExtension2() 5633 private int i_; field in ProtobufTestMessages.Proto2.TestAllTypesProto2.Types.MessageSetCorrectExtension2 5636 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } } 5639 i_ = value;
|
H A D | UnittestProto3.cs | 3372 i_ = other.i_; in TestRecursiveMessage() 3394 private int i_; field in Google.Protobuf.TestProtos.TestRecursiveMessage 3397 get { return i_; } 3399 i_ = value;
|
H A D | Unittest.cs | 10817 i_ = other.i_; in TestRecursiveMessage() 10841 private int i_; field in Google.Protobuf.TestProtos.Proto2.TestRecursiveMessage 10844 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } } 10847 i_ = value; 12320 i_ = other.i_; in SubGroup() 12333 private int i_; field in Google.Protobuf.TestProtos.Proto2.TestIsInitialized.Types.SubMessage.Types.SubGroup 12336 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } } 12339 i_ [all...] |