Home
last modified time | relevance | path

Searched refs:FullName (Results 1 – 25 of 65) sorted by relevance

123

/external/clang/lib/StaticAnalyzer/Core/
DCheckerRegistry.cpp27 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/
DJsonParser.cs74 …{ 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 …]
DJsonFormatter.cs496 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/
DDescriptorValidationException.cs64 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()
DDescriptorPool.cs156 String fullName = descriptor.FullName; in AddSymbol()
236 field.ContainingType.FullName + in AddFieldByNumber()
283 StringBuilder scopeToTry = new StringBuilder(relativeTo.FullName); in LookupSymbol()
DMessageDescriptor.cs201 …FieldByName(String name) => File.DescriptorPool.FindSymbol<FieldDescriptor>(FullName + "." + name);
217 File.DescriptorPool.FindSymbol<T>(FullName + "." + name);
DIDescriptor.cs48 string FullName { get; } property
DFileDescriptor.cs77 return parent.FullName + "." + name; in ComputeFullName()
172 string IDescriptor.FullName => Name;
DPackageDescriptor.cs58 public string FullName property in Google.Protobuf.Reflection.PackageDescriptor
DDescriptorBase.cs72 public string FullName property in Google.Protobuf.Reflection.DescriptorBase
/external/clang/lib/Sema/
DAttributeList.cpp130 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/grpc-grpc/src/csharp/Grpc.Core/
DServerServiceDefinition.cs88 callHandlers.Add(method.FullName, ServerCalls.UnaryCall(method, handler)); in callHandlers.Add() argument
106 callHandlers.Add(method.FullName, ServerCalls.ClientStreamingCall(method, handler)); in callHandlers.Add() argument
124 callHandlers.Add(method.FullName, ServerCalls.ServerStreamingCall(method, handler)); in callHandlers.Add() argument
142 callHandlers.Add(method.FullName, ServerCalls.DuplexStreamingCall(method, handler)); in callHandlers.Add() argument
DMethod.cs66 string FullName { get; } property
160 public string FullName property in Grpc.Core.Method
/external/grpc-grpc/src/csharp/Grpc.Reflection/
DSymbolRegistry.cs114 filesBySymbol[enumDescriptor.FullName] = enumDescriptor.File; in AddEnum()
127 filesBySymbol[messageDescriptor.FullName] = messageDescriptor.File; in AddMessage()
134 filesBySymbol[method.FullName] = method.File; in AddService()
136 filesBySymbol[serviceDescriptor.FullName] = serviceDescriptor.File; in AddService()
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DAnyPartial.cs44 … prefix.EndsWith("/") ? prefix + descriptor.FullName : prefix + "/" + descriptor.FullName; in GetTypeUrl()
74 if (GetTypeName(TypeUrl) != target.Descriptor.FullName)
/external/python/cpython3/Tools/msi/
Dsdktools.psm15 $tool = (gci -r "$kitroot\Bin\*\x64\$toolname" | sort FullName -Desc | select -First 1) in Find-Tool()
9 Write-Host "Found $toolname at $($tool.FullName)" in Find-Tool()
10 return $tool.FullName in Find-Tool()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs97 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()
DTypeRegistryTest.cs86 Assert.AreSame(descriptor, registry.Find(descriptor.FullName)); in AssertDescriptorPresent()
91 Assert.IsNull(registry.Find(descriptor.FullName)); in AssertDescriptorAbsent()
/external/clang/lib/ASTMatchers/
DASTMatchersInternal.cpp318 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/
DCheckerRegistry.h87 StringRef FullName; member
91 : Initialize(fn), FullName(name), Desc(desc) {} in CheckerInfo()
/external/llvm/tools/llvm-pdbdump/
DCompilandDumper.cpp49 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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DPrettyCompilandDumper.cpp49 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/
DArchive.cpp153 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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp893 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalName() local
894 GlobalNames[FullName] = &Die; in addGlobalName()
901 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalNameForTypeUnit() local
906 GlobalNames.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalNameForTypeUnit()
914 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalType() local
915 GlobalTypes[FullName] = &Die; in addGlobalType()
922 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeUnitType() local
927 GlobalTypes.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalTypeUnitType()
/external/vulkan-validation-layers/tests/
D_run_all_tests.ps121 $AboveDir = (Get-Item -Path ".." -Verbose).FullName

123