Home
last modified time | relevance | path

Searched refs:clearMethod (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DSingleFieldAccessor.cs96 …MethodInfo clearMethod = property.DeclaringType.GetRuntimeMethod("Clear" + property.Name, Reflecti… in SingleFieldAccessor()
97 if (clearMethod == null) in SingleFieldAccessor()
101 clearDelegate = ReflectionUtil.CreateActionIMessage(clearMethod); in SingleFieldAccessor()
DOneofDescriptor.cs186 var clearMethod = containingType.ClrType.GetMethod("Clear" + clrName); in CreateAccessor()
187 if (clearMethod == null) in CreateAccessor()
191 return OneofAccessor.ForRegularOneof(this, caseProperty, clearMethod); in CreateAccessor()
DOneofAccessor.cs57 MethodInfo clearMethod) => in ForRegularOneof() argument
61 ReflectionUtil.CreateActionIMessage(clearMethod)); in ForRegularOneof()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DGeneratedMessage.java2201 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);
DGeneratedMessageV3.java2076 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);