/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerRegistry.cpp | 27 return a.FullName < b.FullName; in checkerNameLT() 33 if (!checker.FullName.startswith(packageName)) in isInPackage() 37 if (checker.FullName.size() == packageName.size()) in isInPackage() 41 if (checker.FullName[packageName.size()] == PackageSeparator) in isInPackage() 112 checkerMgr.setCurrentCheckName(CheckName((*i)->FullName)); in initializeManager() 127 if (checker.FullName.startswith(checkerName) && in validateCheckerOptions() 128 (checker.FullName.size() == pos || checker.FullName[pos] == '.')) { in validateCheckerOptions() 156 size_t nameLength = i->FullName.size(); in printHelp() 164 out.indent(initialPad) << i->FullName; in printHelp() 166 int pad = optionFieldWidth - i->FullName.size(); in printHelp()
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | JsonParser.cs | 74 …{ Timestamp.Descriptor.FullName, (parser, message, tokenizer) => MergeTimestamp(message, tokenizer… 75 …{ Duration.Descriptor.FullName, (parser, message, tokenizer) => MergeDuration(message, tokenizer.N… 76 …{ Value.Descriptor.FullName, (parser, message, tokenizer) => parser.MergeStructValue(message, toke… 77 { ListValue.Descriptor.FullName, (parser, message, tokenizer) => 79 …{ Struct.Descriptor.FullName, (parser, message, tokenizer) => parser.MergeStruct(message, tokenize… 80 … { Any.Descriptor.FullName, (parser, message, tokenizer) => parser.MergeAny(message, tokenizer) }, 81 …{ FieldMask.Descriptor.FullName, (parser, message, tokenizer) => MergeFieldMask(message, tokenizer… 82 { Int32Value.Descriptor.FullName, MergeWrapperField }, 83 { Int64Value.Descriptor.FullName, MergeWrapperField }, 84 { UInt32Value.Descriptor.FullName, MergeWrapperField }, [all …]
|
D | JsonFormatter.cs | 496 if (descriptor.FullName == Timestamp.Descriptor.FullName) in WriteWellKnownTypeValue() 501 if (descriptor.FullName == Duration.Descriptor.FullName) in WriteWellKnownTypeValue() 506 if (descriptor.FullName == FieldMask.Descriptor.FullName) in WriteWellKnownTypeValue() 511 if (descriptor.FullName == Struct.Descriptor.FullName) in WriteWellKnownTypeValue() 516 if (descriptor.FullName == ListValue.Descriptor.FullName) in WriteWellKnownTypeValue() 522 if (descriptor.FullName == Value.Descriptor.FullName) in WriteWellKnownTypeValue() 527 if (descriptor.FullName == Any.Descriptor.FullName) in WriteWellKnownTypeValue()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
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()
|
D | DescriptorPool.cs | 156 String fullName = descriptor.FullName; in AddSymbol() 236 field.ContainingType.FullName + in AddFieldByNumber() 283 StringBuilder scopeToTry = new StringBuilder(relativeTo.FullName); in LookupSymbol()
|
D | MessageDescriptor.cs | 201 …FieldByName(String name) => File.DescriptorPool.FindSymbol<FieldDescriptor>(FullName + "." + name); 217 File.DescriptorPool.FindSymbol<T>(FullName + "." + name);
|
D | FileDescriptor.cs | 77 return parent.FullName + "." + name; in ComputeFullName() 172 string IDescriptor.FullName => Name;
|
D | IDescriptor.cs | 48 string FullName { get; } property
|
D | PackageDescriptor.cs | 58 public string FullName property in Google.Protobuf.Reflection.PackageDescriptor
|
D | DescriptorBase.cs | 72 public string FullName property in Google.Protobuf.Reflection.DescriptorBase
|
D | EnumValueDescriptor.cs | 45 : base(file, parent.FullName + "." + proto.Name, index) in EnumValueDescriptor()
|
D | ServiceDescriptor.cs | 78 return File.DescriptorPool.FindSymbol<MethodDescriptor>(FullName + "." + name); in FindMethodByName()
|
D | MethodDescriptor.cs | 72 : base(file, parent.FullName + "." + proto.Name, index) in MethodDescriptor()
|
D | EnumDescriptor.cs | 113 return File.DescriptorPool.FindSymbol<EnumValueDescriptor>(FullName + "." + name); in FindValueByName()
|
/external/clang/lib/Sema/ |
D | AttributeList.cpp | 130 SmallString<64> FullName; in getKind() local 132 FullName += ScopeName->getName(); in getKind() 134 AttrName = normalizeAttrName(AttrName, FullName, SyntaxUsed); in getKind() 139 FullName += "::"; in getKind() 140 FullName += AttrName; in getKind() 142 return ::getAttrKind(FullName, SyntaxUsed); in getKind()
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | AnyPartial.cs | 44 … prefix.EndsWith("/") ? prefix + descriptor.FullName : prefix + "/" + descriptor.FullName; in GetTypeUrl() 74 if (GetTypeName(TypeUrl) != target.Descriptor.FullName)
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
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()
|
D | TypeRegistryTest.cs | 86 Assert.AreSame(descriptor, registry.Find(descriptor.FullName)); in AssertDescriptorPresent() 91 Assert.IsNull(registry.Find(descriptor.FullName)); in AssertDescriptorAbsent()
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 318 bool consumeNameSuffix(StringRef &FullName, StringRef Suffix) { in consumeNameSuffix() argument 319 StringRef Name = FullName; in consumeNameSuffix() 328 FullName = Name; in consumeNameSuffix() 480 const StringRef FullName = OS.str(); in matchesNodeFullSlow() local 484 if (FullName == Pattern) in matchesNodeFullSlow() 486 } else if (FullName.endswith(Pattern) && in matchesNodeFullSlow() 487 FullName.drop_back(Pattern.size()).endswith("::")) { in matchesNodeFullSlow()
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerRegistry.h | 87 StringRef FullName; member 91 : Initialize(fn), FullName(name), Desc(desc) {} in CheckerInfo()
|
/external/llvm/tools/llvm-pdbdump/ |
D | CompilandDumper.cpp | 49 std::string FullName = Symbol.getName(); in start() local 50 if (Printer.IsCompilandExcluded(FullName)) in start() 54 WithColor(Printer, PDB_ColorItem::Path).get() << FullName; in start()
|
/external/llvm/lib/Object/ |
D | Archive.cpp | 153 SmallString<128> FullName = sys::path::parent_path( in getFullName() local 155 sys::path::append(FullName, Name); in getFullName() 156 return StringRef(FullName); in getFullName() 169 const std::string &FullName = *FullNameOrEr; in getBuffer() local 170 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName); in getBuffer()
|
/external/vulkan-validation-layers/tests/ |
D | _run_all_tests.ps1 | 21 $AboveDir = (Get-Item -Path ".." -Verbose).FullName
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 280 SmallString<128> FullName; in findExistingSymbol() local 281 Mangler::getNameWithPrefix(FullName, Name, getDataLayout()); in findExistingSymbol() 283 if (void *Addr = getPointerToGlobalIfAvailable(FullName)) in findExistingSymbol() 288 return Dyld.getSymbol(FullName); in findExistingSymbol()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | renamed_device.cc | 34 string name = DeviceNameUtils::FullName(parsed_name.job, parsed_name.replica, in NewRenamedDevice()
|