Home
last modified time | relevance | path

Searched refs:Bar (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/base/tools/aapt2/java/
DProguardRules_test.cpp92 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(...); }"));
95 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(); }"));
108 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(...); }"));
111 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(); }"));
126 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(...); }"));
130 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(); }"));
158 EXPECT_THAT(actual, HasSubstr("-keep class com.package.Bar { <init>(...); }"));
163 EXPECT_THAT(actual, HasSubstr("-keep class com.package.Bar { <init>(...); }"));
171 <com.foo.Bar />
179 EXPECT_THAT(actual, HasSubstr("-keep class com.foo.Bar { <init>(...); }"));
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/
DLiteEqualsAndHashTest.java33 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar;
63 .addBar(Bar.newBuilder().setName("foo1")) in testEquals()
67 .addBar(Bar.newBuilder().setName("foo1")) in testEquals()
71 .addBar(Bar.newBuilder().setName("foo2")) in testEquals()
83 Bar bar = Bar.newBuilder().setName("bar").build(); in testEquals()
105 .setExtension(Bar.fooExt, Bar.newBuilder() in testEqualsAndHashCodeWithUnknownFields()
DUnknownFieldSetLiteTest.java36 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar;
158 .setExtension(Bar.fooExt, Bar.newBuilder() in testRoundTrips()
242 .setExtension(Bar.fooExt, Bar.newBuilder() in testTruncatedInput()
DLiteTest.java50 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar;
2154 .addBar(Bar.newBuilder().setName("foo1")) in testEquals()
2158 .addBar(Bar.newBuilder().setName("foo1")) in testEquals()
2162 .addBar(Bar.newBuilder().setName("foo2")) in testEquals()
2174 Bar bar = Bar.newBuilder().setName("bar").build(); in testEquals()
2207 .setExtension(Bar.fooExt, Bar.newBuilder() in testEqualsAndHashCodeWithUnknownFields()
2225 .setExtension(Bar.fooExt, Bar.newBuilder() in testEqualsAndHashCodeWithExtensions()
/frameworks/compile/slang/tests/F_reflection3264_variable_mismatch/
Dreflection3264_variable_mismatch.rs5 struct Bar { int f; } bar; argument
26 struct Bar f; struct
59 struct Bar u; struct
Dstderr.txt.expect5 reflection3264_variable_mismatch.rs:24:12: error: global variable 'f' has type 'struct Bar' for 32-…
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/
DGPBSwiftTests.swift45 msg.optionalEnum = .Bar in testProto2Basics()
54 msg.repeatedEnumArray.addValue(Message2_Enum.Bar.rawValue) in testProto2Basics()
60 msg.mapInt32Enum.setEnum(Message2_Enum.Bar.rawValue, forKey:600) in testProto2Basics()
79 XCTAssertEqual(msg.optionalEnum, Message2_Enum.Bar) in testProto2Basics()
89 XCTAssertEqual(msg.repeatedEnumArray.valueAtIndex(0), Message2_Enum.Bar.rawValue) in testProto2Basics()
103 XCTAssertEqual(intValue, Message2_Enum.Bar.rawValue) in testProto2Basics()
143 msg.optionalEnum = .Bar in testProto3Basics()
151 msg.repeatedEnumArray.addValue(Message3_Enum.Bar.rawValue) in testProto3Basics()
158 msg.mapInt32Enum.setEnum(Message2_Enum.Bar.rawValue, forKey:600) in testProto3Basics()
171 XCTAssertEqual(msg.optionalEnum, Message3_Enum.Bar) in testProto3Basics()
[all …]
/frameworks/base/libs/hwui/
DFrameInfoVisualizer.cpp55 static const std::array<BarSegment, 7> Bar{{ variable
210 for (size_t i = 0; i < Bar.size(); i++) { in drawGraph()
211 nextBarSegment(Bar[i].start, Bar[i].end); in drawGraph()
212 paint.setColor(Bar[i].color & BAR_FAST_MASK); in drawGraph()
214 paint.setColor(Bar[i].color & BAR_JANKY_MASK); in drawGraph()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/proto/com/google/protobuf/
Dlite_equals_and_hash.proto48 repeated Bar bar = 2;
53 message Bar { message
55 optional Bar foo_ext = 100;
/frameworks/layoutlib/bridge/resources/bars/
DREADME1 The directory contains the resources for StatusBar and Navigation Bar.
/frameworks/base/core/proto/
DREADME.md18 message Bar {
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Dservice_reflection_test.py92 def Bar(self, rpc_controller, request, done): member in FooUnitTest.testService.MyServiceImpl
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dempty.proto49 // rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
Dunittest_proto3.proto382 rpc Bar(BarRequest) returns (BarResponse); rpc
Dunittest.proto447 optional group Bar = 3 { optional int32 a = 1; } // NO_PROTO1 field
874 rpc Bar(BarRequest) returns (BarResponse); rpc
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/docs/swift/
DDesignDoc.md289 Bar bar = 1;
297 public var bar: Bar! {
306 allocated instance of `Bar` containing default values for its fields. This
624 modules, then `Foo` would contain an `import Bar` statement and `Bar` would
646 public struct Bar {
651 public extension Foo.Bar {
657 let baz = Foo.Bar.Baz()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DJsonFormatterTest.cs186 … = new TestMap { MapInt32Enum = { { 1, MapEnum.Foo }, { 2, (MapEnum) 100 }, { 3, MapEnum.Bar } } }; in UnknownEnumValueNumeric_MapField()
DGeneratedMessageTest.cs227 { 1, MapEnum.Bar }, in RoundTrip_Maps()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/tests/
Dbasic.rb101 Bar = pool.lookup("Bar").msgclass constant
1159 bar = Bar.new(msg: "bar")
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/
DCHANGES.txt505 message Bar {
513 Bar bar = ...;
516 if (foo.any_field().IsType<Bar>()) {
660 message Bar {...}
1058 message Bar {
1062 Previously, the type of "baz" would resolve to "Bar.Foo", and you'd get
1063 an error because Bar.Foo is a field, not a type. Now the type of "baz"
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/
Dunittest.proto414 optional group Bar = 3 { optional int32 a = 1; } // NO_PROTO1 field
714 rpc Bar(BarRequest) returns (BarResponse); rpc
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/
Dunittest.proto414 optional group Bar = 3 { optional int32 a = 1; } // NO_PROTO1 field
714 rpc Bar(BarRequest) returns (BarResponse); rpc
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/
Dcpp_unittest.cc1155 void Bar(RpcController* controller, in Bar() function in google::protobuf::compiler::cpp::cpp_unittest::GeneratedServiceTest::MockTestService
1375 stub_.Bar(&mock_controller_, &bar_request_, &bar_response_, done_.get()); in TEST_F()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/TestProtos/
DMapUnittestProto3.cs167 [pbr::OriginalName("MAP_ENUM_BAR")] Bar = 1, enumerator
/frameworks/base/core/proto/android/app/
Dsettings_enums.proto606 // ACTION: Settings > Search Bar > Avatar

12