/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | DescriptorValidationException.cs | 64 base(problemDescriptor.FullName + ": " + description) in DescriptorValidationException() 69 name = problemDescriptor.FullName; in DescriptorValidationException() 74 base(problemDescriptor.FullName + ": " + description, cause) in DescriptorValidationException() 76 name = problemDescriptor.FullName; in DescriptorValidationException()
|
H A D | DescriptorBase.cs | 45 FullName = fullName; in DescriptorBase() 67 public string FullName { get; } property in Google.Protobuf.Reflection.DescriptorBase
|
H A D | DescriptorPool.cs | 156 String fullName = descriptor.FullName; in AddSymbol() 237 field.ContainingType.FullName + in AddFieldByNumber() 284 StringBuilder scopeToTry = new StringBuilder(relativeTo.FullName); in LookupSymbol()
|
H A D | IDescriptor.cs | 48 string FullName { get; } property
|
H A D | PackageDescriptor.cs | 58 public string FullName property in Google.Protobuf.Reflection.PackageDescriptor
|
H A D | MessageDescriptor.cs | 269 public FieldDescriptor FindFieldByName(String name) => File.DescriptorPool.FindSymbol<FieldDescriptor>(FullName + "." + name); 285 File.DescriptorPool.FindSymbol<T>(FullName + "." + name);
|
H A D | EnumValueDescriptor.cs | 48 : base(file, parent.FullName + "." + proto.Name, index) in EnumValueDescriptor()
|
H A D | EnumDescriptor.cs | 125 return File.DescriptorPool.FindSymbol<EnumValueDescriptor>(FullName + "." + name); in FindValueByName()
|
H A D | MethodDescriptor.cs | 108 : base(file, parent.FullName + "." + proto.Name, index) in MethodDescriptor()
|
H A D | TypeRegistry.cs | 174 types[messageDescriptor.FullName] = messageDescriptor; in AddMessage()
|
H A D | ServiceDescriptor.cs | 91 return File.DescriptorPool.FindSymbol<MethodDescriptor>(FullName + "." + name); in FindMethodByName()
|
H A D | FileDescriptor.cs | 67 /// and the FullName is the same as the Name. 205 return parent.FullName + "." + name; in ComputeFullName() 307 /// Implementation of IDescriptor.FullName - just returns the same as Name. 309 string IDescriptor.FullName => Name;
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
H A D | AnyPartial.cs | 44 prefix.EndsWith("/") ? prefix + descriptor.FullName : prefix + "/" + descriptor.FullName; in GetTypeUrl() 47 /// Retrieves the type name for a type URL, matching the <see cref="DescriptorBase.FullName"/> 78 return GetTypeName(TypeUrl) == descriptor.FullName;
in Is() 93 if (GetTypeName(TypeUrl) != target.Descriptor.FullName) 96 $"Full type name for {target.Descriptor.Name} is {target.Descriptor.FullName}; Any message's type url is {TypeUrl}"); 113 if (GetTypeName(TypeUrl) != target.Descriptor.FullName)
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonFormatter.cs | 472 if (descriptor.FullName == Timestamp.Descriptor.FullName) in WriteWellKnownTypeValue() 477 if (descriptor.FullName == Duration.Descriptor.FullName) in WriteWellKnownTypeValue() 482 if (descriptor.FullName == FieldMask.Descriptor.FullName) in WriteWellKnownTypeValue() 487 if (descriptor.FullName == Struct.Descriptor.FullName) in WriteWellKnownTypeValue() 492 if (descriptor.FullName == ListValue.Descriptor.FullName) in WriteWellKnownTypeValue() [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/ |
H A D | DescriptorsTest.cs | 97 Assert.AreEqual("protobuf_unittest.TestAllTypes", messageType.FullName); in MessageDescriptor() 105 Assert.AreEqual("protobuf_unittest.TestAllTypes.NestedMessage", nestedType.FullName); in MessageDescriptor() 147 primitiveField.FullName); in FieldDescriptor() 183 Assert.AreEqual("protobuf_unittest.ForeignEnum", enumType.FullName); in EnumDescriptor() 190 nestedType.FullName); in EnumDescriptor() 212 Assert.AreEqual("protobuf_unittest.TestAllTypes.oneof_field", descriptor.FullName); in OneofDescriptor()
|
H A D | TypeRegistryTest.cs | 86 Assert.AreSame(descriptor, registry.Find(descriptor.FullName)); in AssertDescriptorPresent() 91 Assert.IsNull(registry.Find(descriptor.FullName)); in AssertDescriptorAbsent()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
H A D | DescriptorsTest.cs | 176 Assert.AreEqual("protobuf_unittest3.TestAllTypes", messageType.FullName); in MessageDescriptor() 184 Assert.AreEqual("protobuf_unittest3.TestAllTypes.NestedMessage", nestedType.FullName); in MessageDescriptor() 255 primitiveField.FullName); in TestFieldDescriptor() 299 Assert.AreEqual("protobuf_unittest3.ForeignEnum", enumType.FullName); in EnumDescriptor() 306 nestedType.FullName); in EnumDescriptor() 329 Assert.AreEqual("protobuf_unittest3.TestAllTypes.oneof_field", descriptor.FullName); in OneofDescriptor()
|
H A D | TypeRegistryTest.cs | 86 Assert.AreSame(descriptor, registry.Find(descriptor.FullName)); in AssertDescriptorPresent() 91 Assert.IsNull(registry.Find(descriptor.FullName)); in AssertDescriptorAbsent()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | Archive.cpp | 428 SmallString<128> FullName = sys::path::parent_path( in getFullName() 430 sys::path::append(FullName, Name); in getFullName() 431 return StringRef(FullName); in getFullName() 448 const std::string &FullName = *FullNameOrErr; in getBuffer() local 449 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName); in getBuffer()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
H A D | BenchmarkDatasetConfig.cs | 52 t => ((MessageDescriptor) t.GetProperty("Descriptor", BindingFlags.Static | BindingFlags.Public).GetValue(null)).FullName,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.cpp | 1144 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalName() 1145 GlobalNames[FullName] = &Die; in addGlobalName() 1152 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalNameForTypeUnit() 1157 GlobalNames.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalNameForTypeUnit() 1165 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalType() 1166 GlobalTypes[FullName] = &Die; in addGlobalType() 1173 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeUnitType() 1178 GlobalTypes.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalTypeUnitType()
|
H A D | CodeViewDebug.cpp | 2075 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeEnum() local 2077 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(), in lowerTypeEnum() 2226 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeClass() local 2228 FullName, Ty->getIdentifier()); in lowerTypeClass() 2257 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeClass() local 2262 SizeInBytes, FullName, Ty->getIdentifier()); in lowerCompleteTypeClass() 2279 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeUnion() local 2280 UnionRecord UR(0, CO, TypeIndex(), 0, FullName, Ty->getIdentifier()); in lowerTypeUnion() 2299 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeUnion() local 2301 UnionRecord UR(FieldCount, CO, FieldTI, SizeInBytes, FullName, in lowerCompleteTypeUnion() [all...] |
/third_party/node/deps/v8/tools/ |
H A D | ll_prof.py | 126 def FullName(self): member in Code 816 code.FullName(), code.origin))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibFunc.cpp | 562 bool AMDGPUMangledLibFunc::parseUnmangledName(StringRef FullName) { 565 FuncId = static_cast<EFuncId>(manglingRulesMap.lookup(FullName));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 195 SmallString<128> FullName; in getMangledName() local 202 Mangler::getNameWithPrefix(FullName, GV->getName(), DL); in getMangledName() 203 return FullName.str(); in getMangledName()
|