Home
last modified time | relevance | path

Searched refs:getMethod (Results 1 - 25 of 44) sorted by relevance

12

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUnsafeUtil.java343 clazz.getMethod("objectFieldOffset", Field.class); in supportsUnsafeArrayOperations()
344 clazz.getMethod("arrayBaseOffset", Class.class); in supportsUnsafeArrayOperations()
345 clazz.getMethod("arrayIndexScale", Class.class); in supportsUnsafeArrayOperations()
346 clazz.getMethod("getInt", Object.class, long.class); in supportsUnsafeArrayOperations()
347 clazz.getMethod("putInt", Object.class, long.class, int.class); in supportsUnsafeArrayOperations()
348 clazz.getMethod("getLong", Object.class, long.class); in supportsUnsafeArrayOperations()
349 clazz.getMethod("putLong", Object.class, long.class, long.class); in supportsUnsafeArrayOperations()
350 clazz.getMethod("getObject", Object.class, long.class); in supportsUnsafeArrayOperations()
351 clazz.getMethod("putObject", Object.class, long.class, Object.class); in supportsUnsafeArrayOperations()
355 clazz.getMethod("getByt in supportsUnsafeArrayOperations()
[all...]
H A DMessageLiteToString.java151 Method getMethod = nameToNoArgMethod.get("get" + suffix); in reflectivePrintWithIndent()
154 if (getMethod != null) { in reflectivePrintWithIndent()
155 Object value = GeneratedMessageLite.invokeOrDie(getMethod, messageLite); in reflectivePrintWithIndent()
H A DExtensionRegistryLite.java180 this.getClass().getMethod("add", ExtensionClassHolder.INSTANCE).invoke(this, extension); in add()
H A DGeneratedMessageV3.java1839 /** Calls Class.getMethod and throws a RuntimeException if it fails. */
1844 return clazz.getMethod(name, params); in getMethodOrDie()
2159 protected final Method getMethod; field in GeneratedMessageV3.FieldAccessorTable.SingularFieldAccessor.ReflectionInvoker
2176 getMethod = getMethodOrDie(messageClass, "get" + camelCaseName); in ReflectionInvoker()
2178 Class<?> type = getMethod.getReturnType(); in ReflectionInvoker()
2196 return invokeOrDie(getMethod, message); in get()
2258 type = reflectionInvoker.getMethod.getReturnType(); in SingularFieldAccessor()
2394 protected final Method getMethod; field in GeneratedMessageV3.FieldAccessorTable.RepeatedFieldAccessor.ReflectionInvoker
2409 getMethod = getMethodOrDie(messageClass, "get" + camelCaseName + "List"); in ReflectionInvoker()
2425 return invokeOrDie(getMethod, messag in get()
[all...]
H A DGeneratedMessage.java1965 /** Calls Class.getMethod and throws a RuntimeException if it fails. */
1970 return clazz.getMethod(name, params); in getMethodOrDie()
2260 getMethod = getMethodOrDie(messageClass, "get" + camelCaseName); in SingularFieldAccessor()
2262 type = getMethod.getReturnType(); in SingularFieldAccessor()
2279 protected final Method getMethod; field in GeneratedMessage.FieldAccessorTable.SingularFieldAccessor
2301 return invokeOrDie(getMethod, message); in get()
2402 protected final Method getMethod; field in GeneratedMessage.FieldAccessorTable.RepeatedFieldAccessor
2416 getMethod = getMethodOrDie(messageClass, in RepeatedFieldAccessor()
2440 return invokeOrDie(getMethod, message); in get()
/third_party/protobuf/php/tests/
H A DGeneratedServiceTest.php68 $docComment = $this->serviceClass->getMethod($methodName)->getDocComment();
78 $docComment = $this->namespacedServiceClass->getMethod($methodName)->getDocComment();
88 $method = $this->serviceClass->getMethod($methodName);
101 $method = $this->serviceClass->getMethod($methodName);
H A DGeneratedPhpdocTest.php22 $doc = $class->getMethod('__construct')->getDocComment();
34 $doc = $class->getMethod($method)->getDocComment();
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DDeprecatedFieldTest.java62 Method method = deprecatedFields.getMethod(name); in testDeprecatedField()
67 Method method = deprecatedFieldsBuilder.getMethod(name); in testDeprecatedField()
72 Method method = deprecatedFieldsBuilder.getMethod(name, int.class); in testDeprecatedField()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DDeprecatedFieldTest.java56 Method method = deprecatedFields.getMethod(name); in testDeprecatedField()
60 Method method = deprecatedFieldsBuilder.getMethod(name); in testDeprecatedField()
64 Method method = deprecatedFieldsBuilder.getMethod(name, int.class); in testDeprecatedField()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DNamePrepTransform.java192 Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE); in initialize()
194 translitMethod = cls.getMethod("transliterate", String.class); in initialize()
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
H A DCurrencyNameTest.java34 mGetDisplayName = Currency.class.getMethod("getDisplayName", new Class[] {Locale.class});
35 Method mGetAvailableCurrencies = Currency.class.getMethod("getAvailableCurrencies", (Class[]) null);
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java189 Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE); in initialize()
191 translitMethod = cls.getMethod("transliterate", String.class); in initialize()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DServiceDescriptorProto.php85 public function getMethod() function
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DLocaleDisplayNames.java430 factoryDialectHandling = implClass.getMethod("getInstance",
435 factoryDisplayContext = implClass.getMethod("getInstance",
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DLocaleDisplayNames.java396 factoryDialectHandling = implClass.getMethod("getInstance",
401 factoryDisplayContext = implClass.getMethod("getInstance",
/third_party/python/Lib/unittest/test/
H A Dtest_assertions.py194 def getMethod(i): function
203 testMethod = getMethod(i)
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
H A DLauncher.java147 Method m = c.getMethod("main", params ); in actionPerformed()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DPropertiesTest.java86 getter = DecimalFormatProperties.class.getMethod(getterName); in testFieldCoverage()
98 setter = DecimalFormatProperties.class.getMethod(setterName, field.getType()); in testFieldCoverage()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenNumberFormatTestData.java473 Method m = getClass().getMethod( in setField()
486 Method m = getClass().getMethod(fieldToClearer(fieldName)); in clearField()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DPropertiesTest.java83 getter = DecimalFormatProperties.class.getMethod(getterName); in testFieldCoverage()
95 setter = DecimalFormatProperties.class.getMethod(setterName, field.getType()); in testFieldCoverage()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
H A DICUZDump.java147 Method method = tzobj.getClass().getMethod("getOffset", new Class[] {long.class}); in getOffset()
158 Method method = tzobj.getClass().getMethod("inDaylightTime", new Class[] {Date.class}); in inDaylightTime()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDataDrivenNumberFormatTestData.java476 Method m = getClass().getMethod( in setField()
489 Method m = getClass().getMethod(fieldToClearer(fieldName)); in clearField()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DJavaTimeZone.java48 mObservesDaylightTime = java.util.TimeZone.class.getMethod("observesDaylightTime", (Class[]) null);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DTestBoilerplate.java135 Method cloner = aClass.getMethod("clone", (Class[])null); in _clone()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestBoilerplate.java134 Method cloner = aClass.getMethod("clone", (Class[])null); in _clone()

Completed in 27 milliseconds

12