Searched refs:clearMethod (Results 1 – 5 of 5) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | SingleFieldAccessor.cs | 96 …MethodInfo clearMethod = property.DeclaringType.GetRuntimeMethod("Clear" + property.Name, Reflecti… in SingleFieldAccessor() 97 if (clearMethod == null) in SingleFieldAccessor() 101 clearDelegate = ReflectionUtil.CreateActionIMessage(clearMethod); in SingleFieldAccessor()
|
D | OneofDescriptor.cs | 186 var clearMethod = containingType.ClrType.GetMethod("Clear" + clrName); in CreateAccessor() 187 if (clearMethod == null) in CreateAccessor() 191 return OneofAccessor.ForRegularOneof(this, caseProperty, clearMethod); in CreateAccessor()
|
D | OneofAccessor.cs | 57 MethodInfo clearMethod) => in ForRegularOneof() argument 61 ReflectionUtil.CreateActionIMessage(clearMethod)); in ForRegularOneof()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | GeneratedMessage.java | 2201 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2207 private final Method clearMethod; 2240 invokeOrDie(clearMethod, builder); 2268 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2284 protected final Method clearMethod; 2381 invokeOrDie(clearMethod, builder); 2410 protected final Method clearMethod; 2435 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2509 invokeOrDie(clearMethod, builder);
|
D | GeneratedMessageV3.java | 2076 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2082 private final Method clearMethod; 2133 invokeOrDie(clearMethod, builder); 2164 protected final Method clearMethod; 2183 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2231 invokeOrDie(clearMethod, builder); 2402 protected final Method clearMethod; 2420 clearMethod = getMethodOrDie(builderClass, "clear" + camelCaseName); 2468 invokeOrDie(clearMethod, builder);
|