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

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/darwin-x86/test/syntax/
chan.go 16 func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
  /prebuilts/go/linux-x86/test/syntax/
chan.go 16 func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
  /external/guice/core/test/com/google/inject/internal/
ProxyFactoryTest.java 82 aspects.add(new MethodAspect(only(Bar.class), annotatedWith(Intercept.class), interceptor));
86 ConstructionProxy<Bar> barFactory
87 = new ProxyFactory<Bar>(InjectionPoint.forConstructorOf(Bar.class), aspects).create();
90 Bar bar = barFactory.newInstance(); local
96 bar.bar();
97 assertTrue(bar.barCalled);
100 bar.intercepted()
116 void bar() { method in class:ProxyFactoryTest.Bar
    [all...]
  /frameworks/base/libs/hwui/
FrameInfoVisualizer.cpp 51 static const std::array<BarSegment,7> Bar {{
108 // This is a bit nicer looking than the vague green bar, as we have
200 for (size_t i = 0; i < Bar.size(); i++) {
201 nextBarSegment(Bar[i].start, Bar[i].end);
202 paint.setColor(Bar[i].color & BAR_FAST_MASK);
204 paint.setColor(Bar[i].color & BAR_JANKY_MASK);
  /prebuilts/go/darwin-x86/src/net/http/
filetransport_test.go 29 err = ioutil.WriteFile(fname, []byte("Bar"), 0644)
53 if string(slurp) != "Bar" {
54 t.Errorf("for %s, got content %q, want %q", urlstr, string(slurp), "Bar")
  /prebuilts/go/linux-x86/src/net/http/
filetransport_test.go 29 err = ioutil.WriteFile(fname, []byte("Bar"), 0644)
53 if string(slurp) != "Bar" {
54 t.Errorf("for %s, got content %q, want %q", urlstr, string(slurp), "Bar")
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
BindingsTest.java 16 import org.chromium.mojo.bindings.test.mojom.sample.Bar;
17 import org.chromium.mojo.bindings.test.mojom.sample.Bar.Type;
37 * Create a new typical Bar instance.
39 private static Bar newBar() {
40 Bar bar = new Bar(); local
41 bar.alpha = (byte) 0x01;
42 bar.beta = (byte) 0x02;
43 bar.gamma = (byte) 0x03
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
methods-expected.cc 172 struct Bar {};
188 const Bar& GetBar() const { return bar_; }
193 Bar bar_;
methods-original.cc 176 struct Bar {};
192 const Bar& bar() const { return m_bar; } function in class:blink::BitVector
197 Bar m_bar;
  /system/tools/hidl/test/vendor/1.0/
Android.mk 21 # Build types.hal (Bar)
23 GEN := $(intermediates)/tests/vendor/V1_0/Bar.java
34 tests.vendor@1.0::types.Bar
118 # Build types.hal (Bar)
120 GEN := $(intermediates)/tests/vendor/V1_0/Bar.java
131 tests.vendor@1.0::types.Bar
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 741 LRBar Bar;
745 Bar.aa_elr_fun();
751 Bar.aa_elr_fun_s();
757 Bar.aa_elr_fun_s();
780 Bar.le_fun();
792 Bar.aa_elr_fun_s();
797 Bar.aa_elr_fun_s();
802 Bar.aa_elr_fun_s();
806 Bar.aa_elr_fun(); // \
812 Bar.aa_elr_fun(); //
949 static int bar(int i) { function in namespace:thread_annot_lock_27_modified
1034 Bar bar; local
1179 Bar *bar; member in namespace:thread_annot_lock_30_modified
1250 void Foo::bar() function in class:thread_annot_lock_13::Foo
1415 void Foo::bar(int y) { function in class:thread_annot_lock_36_modified::Foo
1696 void bar() { function in namespace:FunctionAttrTest
2295 Bar bar; local
2336 Bar bar; local
3213 void bar(Foo* f) { function in class:StringIgnoreTest::Bar
3256 void Base::bar(Inner* i) { function in class:LockReturnedScopeFix::Base
4589 void bar() { function in class:NegativeRequirements::Foo
5131 Bar bar; local
    [all...]
linkage2.cpp 41 void Bar();
43 friend void Bar();
161 friend int bar(Foo *y);
163 int bar(Foo *y) { function
175 template <typename T, T x> void bar() {} // expected-note {{candidate function}} function in namespace:test17
183 return reinterpret_cast<void*>(bar<typeof(foo<L, I>), foo<L, I> >); // expected-error {{reinterpret_cast cannot resolve overloaded function 'bar' to type 'void *}}
warn-thread-safety-negative.cpp 49 class Bar {
70 bar();
74 void bar() { function in class:SimpleTest::Foo
85 Bar b;
MicrosoftCompatibility.cpp 236 struct Bar {
240 Bar g_bar = { (Foo::MemberFcnPtr)Foo::ZERO };
  /external/clang/test/Analysis/
misc-ps-region-store.cpp 183 struct Bar;
184 Bar* bar_;
201 bool Bar();
205 bool Foo2<T>::Bar() {
214 void Bar();
220 void Foo3<T>::Bar() {
264 struct Rdar9212495_C { virtual void bar() const; };
275 val.bar(); // expected-warning{{Called C++ object pointer is null}}
285 val->bar(); // expected-warning{{Called C++ object pointer is null}}
607 void bar() { function in struct:A
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
sample_service_unittest.cc 19 static int32_t Convert(const sample::BarPtr& bar) {
20 return static_cast<int32_t>(bar->alpha) << 16 |
21 static_cast<int32_t>(bar->beta) << 8 |
22 static_cast<int32_t>(bar->gamma);
41 BarPtr bar(Bar::New());
42 bar->alpha = 20;
43 bar->beta = 40;
44 bar->gamma = 60;
45 bar->type = Bar::Type::VERTICAL
    [all...]
  /external/protobuf/gtest/test/
gtest_environment_test.cc 106 TEST(FooTest, Bar) {
  /external/mockito/src/test/java/org/mockitousage/basicapi/
MocksSerializationTest.java 41 Bar mock = mock(Bar.class, new ThrowsException(new RuntimeException()));
49 Bar barMock = mock(Bar.class, withSettings().serializable());
171 class Bar implements Serializable {
180 Bar bar; field in class:MocksSerializationTest.Foo
182 bar = new Bar();
183 bar.foo = this
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
UnknownFieldSetLiteTest.java 36 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Bar;
158 .setExtension(Bar.fooExt, Bar.newBuilder()
242 .setExtension(Bar.fooExt, Bar.newBuilder()
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciLib.c 33 Retrieve the PCI Card device BAR information via PciIo interface.
50 // Read PciBar information from the bar register
182 PCI_BAR *Bar;
188 BridgeResource->PciDev->PciBar[BridgeResource->Bar].BaseAddress,
197 Bar = Resource->Virtual ? Resource->PciDev->VfPciBar : Resource->PciDev->PciBar;
200 Bar[Resource->Bar].BaseAddress, Resource->Length, Resource->Alignment,
209 (IS_PCI_BRIDGE (&Resource->PciDev->Pci) && (Resource->Bar < PPB_IO_RANGE)) ||
210 (IS_CARDBUS_BRIDGE (&Resource->PciDev->Pci) && (Resource->Bar < P2C_MEM_1))
215 DEBUG ((EFI_D_INFO, "%02x]", Bar[Resource->Bar].Offset));
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 165 Value := 'bar';
167 CheckEquals(FIANTLRString.Value,'bar');
432 FIDictionary.Add('Bar',3);
457 Key := 'Bar';
460 CheckEquals(FIDictionary['Bar'],20);
486 Key := 'Bar';
538 Foo, Bar, Baz, Zip: Boolean;
541 Bar := False;
553 if (Pair.Key = 'Bar') then
555 Bar := True
    [all...]
  /build/blueprint/
context_test.go 58 Bar bool
74 func (b *barModule) Bar() bool {
75 return b.properties.Bar
  /external/guice/core/test/com/google/inject/
TypeConversionTest.java 68 @Inject @EnumValue Bar enumField;
72 public enum Bar {
119 assertEquals(Bar.TEE, foo.enumField);
152 assertEquals(Bar.TEE, foo.enumField);
228 assertContains(expected.getMessage(), "to " + Bar.class.getName());
233 @Inject @NumericValue Bar foo;
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 155 Function::Create(FTy, Function::InternalLinkage, "bar", InternalM);
207 std::unique_ptr<Module> SourceM(getExternal(Ctx, "bar"));
211 // "bar" is present in destination module
212 EXPECT_NE(nullptr, DestM->getFunction("bar"));
314 // "struct.rtx_def" type. In the module loaded the second (Bar) this type will
327 "define void @bar(%struct.rtx_def* %a, i8 %b, i32 %c) {\n"
341 std::unique_ptr<Module> Bar = parseAssemblyString(BarStr, Err, C);
342 assert(Bar);
343 ASSERT_TRUE(Bar.get());
344 // Bar is loaded after Foo, so the type is renamed to struct.rtx_def.0. Chec
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
examples.cpp 132 class Bar
145 typedef First::Bar<Second::Foo> Special;

Completed in 1831 milliseconds

1 2 3 4 5 6 78 91011>>