/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | UnsafeUtil.java | 343 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 D | MessageLiteToString.java | 151 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 D | ExtensionRegistryLite.java | 180 this.getClass().getMethod("add", ExtensionClassHolder.INSTANCE).invoke(this, extension); in add()
|
H A D | GeneratedMessageV3.java | 1839 /** 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 D | GeneratedMessage.java | 1965 /** 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 D | GeneratedServiceTest.php | 68 $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 D | GeneratedPhpdocTest.php | 22 $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 D | DeprecatedFieldTest.java | 62 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 D | DeprecatedFieldTest.java | 56 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 D | NamePrepTransform.java | 192 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 D | CurrencyNameTest.java | 34 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 D | NamePrepTransform.java | 189 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 D | ServiceDescriptorProto.php | 85 public function getMethod() function
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | LocaleDisplayNames.java | 430 factoryDialectHandling = implClass.getMethod("getInstance", 435 factoryDisplayContext = implClass.getMethod("getInstance",
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | LocaleDisplayNames.java | 396 factoryDialectHandling = implClass.getMethod("getInstance", 401 factoryDisplayContext = implClass.getMethod("getInstance",
|
/third_party/python/Lib/unittest/test/ |
H A D | test_assertions.py | 194 def getMethod(i): function 203 testMethod = getMethod(i)
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/ |
H A D | Launcher.java | 147 Method m = c.getMethod("main", params ); in actionPerformed()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | PropertiesTest.java | 86 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 D | DataDrivenNumberFormatTestData.java | 473 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 D | PropertiesTest.java | 83 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 D | ICUZDump.java | 147 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 D | DataDrivenNumberFormatTestData.java | 476 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 D | JavaTimeZone.java | 48 mObservesDaylightTime = java.util.TimeZone.class.getMethod("observesDaylightTime", (Class[]) null);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestBoilerplate.java | 135 Method cloner = aClass.getMethod("clone", (Class[])null); in _clone()
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | TestBoilerplate.java | 134 Method cloner = aClass.getMethod("clone", (Class[])null); in _clone()
|