Home
last modified time | relevance | path

Searched refs:getMethods (Results 1 – 13 of 13) sorted by relevance

/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DServiceTest.java65 TestService.getDescriptor().getMethods().get(0);
67 TestService.getDescriptor().getMethods().get(1);
268 assertEquals(1, file.getServices().get(0).getMethods().size()); in testNoGenericServices()
270 file.getServices().get(0).getMethods().get(0).getName()); in testNoGenericServices()
DDescriptorsTest.java328 assertEquals(2, service.getMethods().size()); in testServiceDescriptor()
330 MethodDescriptor fooMethod = service.getMethods().get(0); in testServiceDescriptor()
338 MethodDescriptor barMethod = service.getMethods().get(1); in testServiceDescriptor()
348 for (int i = 0; i < service.getMethods().size(); i++) { in testServiceDescriptor()
349 assertEquals(i, service.getMethods().get(i).getIndex()); in testServiceDescriptor()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DServiceTest.java61 TestService.getDescriptor().getMethods().get(0);
63 TestService.getDescriptor().getMethods().get(1);
263 assertEquals(1, file.getServices().get(0).getMethods().size()); in testNoGenericServices()
264 assertEquals("Foo", file.getServices().get(0).getMethods().get(0).getName()); in testNoGenericServices()
DDescriptorsTest.java315 MethodDescriptor fooMethod = service.getMethods().get(0); in testServiceDescriptor()
321 MethodDescriptor barMethod = service.getMethods().get(1); in testServiceDescriptor()
330 for (int i = 0; i < service.getMethods().size(); i++) { in testServiceDescriptor()
331 assertEquals(i, service.getMethods().get(i).getIndex()); in testServiceDescriptor()
DExtensionRegistryFactoryTest.java215 for (Method method : RegistryTests.class.getMethods()) { in suite()
/third_party/protobuf/php/src/Google/Protobuf/
DApi.php165 public function getMethods() function in Google\\Protobuf\\Api
/third_party/protobuf/php/tests/
DGeneratedServiceTest.php59 $this->assertCount(count($this->methodNames), $this->serviceClass->getMethods());
DWellKnownTest.php128 $this->assertSame(1, count($m->getMethods()));
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
DAudioLatencyTuner.java79 Method[] methods = AudioTrack.class.getMethods(); in reflectAdvancedMethods()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DICUJDKCompare.java375 MorC[] meths1 = getMorCArray(class1.getMethods()); in compare()
376 MorC[] meths2 = getMorCArray(class2.getMethods()); in compare()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeDumpVisitor.cpp337 for (auto &M : MethodList.getMethods()) { in visitKnownRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h764 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods() function
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java1979 public List<MethodDescriptor> getMethods() { in getMethods() method in Descriptors.ServiceDescriptor