Home
last modified time | relevance | path

Searched refs:i_ (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dsequence_urbg.h44 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 Dhb-open-type.hh448 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 Dhb-vector.hh130 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 Dnghttp2_test_helper.h49 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 Dgmock-matchers-comparisons_test.cc944 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 Dgmock-matchers-misc_test.cc722 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 Dearley-parser.h173 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 Dmod.rs517 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 Dgraph.cc643 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 Dbench.py78 i_ = 0
81 yield v[i_:i]
82 i_ = i+1
87 if v[i_:].strip():
88 yield v[i_:]
H A Dtest.py81 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 DglsScissorTests.cpp597 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 Ddirac_dwt.asm184 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 DHacl_Curve25519.c728 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 DHacl_Curve25519.c683 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 DUnittestCustomOptionsProto3.cs3111 i_ = other.i_; in Aggregate()
3124 private int i_; field in UnitTest.Issues.TestProtos.Aggregate
3127 get { return i_; }
3129 i_ = value;
H A DTestMessagesProto2.cs5620 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 DUnittestProto3.cs3372 i_ = other.i_; in TestRecursiveMessage()
3394 private int i_; field in Google.Protobuf.TestProtos.TestRecursiveMessage
3397 get { return i_; }
3399 i_ = value;
H A DUnittest.cs10817 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...]

Completed in 76 milliseconds