Home
last modified time | relevance | path

Searched refs:a_ (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dcommon_unittest.cc166 void SetA123Method() { a_ = 123; } in SetA123Method()
167 static void SetA123Function() { current_instance_->a_ = 123; } in SetA123Function()
169 void SetAMethod(int a) { a_ = a; } in SetAMethod()
172 static void SetAFunction(int a) { current_instance_->a_ = a; } in SetAFunction()
175 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; } in SetABMethod()
177 current_instance_->a_ = a; in SetABFunction()
183 a_ = 0; in SetUp()
193 int a_; member in google::protobuf::__anond6d570b90111::ClosureTest
205 EXPECT_NE(123, a_); in TEST_F()
207 EXPECT_EQ(123, a_); in TEST_F()
[all …]
/frameworks/av/media/codec2/core/include/
DC2.h459 return ({ wide_type a_(a), b_(b); a_ > b_ ? a_ : b_; });
476 return ({ wide_type a_(a), b_(c2_max(b, c...)); a_ > b_ ? a_ : b_; });
486 wide_type a_(a), b_(b);
487 static_cast<typename c2_types<T, U>::min_type>(a_ < b_ ? a_ : b_);
507 wide_type a_(a), b_(c2_min(b, c...));
508 static_cast<typename c2_types<T, rest_type>::min_type>(a_ < b_ ? a_ : b_);
519 wide_type a_(a), b_(b), c_(c);
520 static_cast<typename c2_types<T, V>::wide_type>(b_ < a_ ? a_ : b_ > c_ ? c_ : b_);
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestProto3.cs2389 a_ = other.a_; in TestReallyLargeTagNumber()
2400 private int a_; field in Google.Protobuf.TestProtos.TestReallyLargeTagNumber
2407 get { return a_; }
2409 a_ = value;
2538 A = other.a_ != null ? other.A.Clone() : null; in TestRecursiveMessage()
2549 private global::Google.Protobuf.TestProtos.TestRecursiveMessage a_; field in Google.Protobuf.TestProtos.TestRecursiveMessage
2552 get { return a_; }
2554 a_ = value;
2590 if (a_ != null) hash ^= A.GetHashCode(); in GetHashCode()
2602 if (a_ != null) { in WriteTo()
[all …]
/frameworks/compile/mclinker/include/mcld/Support/
DCXADemangle.tcc4770 arena<N>& a_; member in mcld::short_alloc
4777 short_alloc(arena<N>& a) noexcept : a_(a) {} in short_alloc()
4780 : a_(a.a_) {} in short_alloc()
4786 return reinterpret_cast<T*>(a_.allocate(n*sizeof(T))); in allocate()
4790 a_.deallocate(reinterpret_cast<char*>(p), n*sizeof(T)); in deallocate()
4806 return N == M && &x.a_ == &y.a_; in operator ==()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Conformance/
DConformance.cs3645 a_ = other.a_; in NestedMessage()
3656 private int a_; field in Conformance.TestAllTypes.Types.NestedMessage
3659 get { return a_; }
3661 a_ = value;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor_unittest.cc951 a_ = oneof_message_->field(0); in SetUp()
965 const FieldDescriptor* a_; member in google::protobuf::descriptor_unittest::OneofDescriptorTest
980 EXPECT_TRUE(a_->containing_oneof() == NULL); in TEST_F()
1559 a_ = baz_->value(0); in SetUp()
1592 const EnumValueDescriptor* a_; member in google::protobuf::descriptor_unittest::NestedDescriptorTest
1687 EXPECT_EQ(a_ , message_ ->FindEnumValueByName("A")); in TEST_F()