Home
last modified time | relevance | path

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

12

/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);
DFileDescriptor.cs77 return parent.FullName + "." + name; in ComputeFullName()
172 string IDescriptor.FullName => Name;
DIDescriptor.cs48 string FullName { get; } property
DPackageDescriptor.cs58 public string FullName property in Google.Protobuf.Reflection.PackageDescriptor
DDescriptorBase.cs72 public string FullName property in Google.Protobuf.Reflection.DescriptorBase
DEnumValueDescriptor.cs45 : base(file, parent.FullName + "." + proto.Name, index) in EnumValueDescriptor()
DServiceDescriptor.cs78 return File.DescriptorPool.FindSymbol<MethodDescriptor>(FullName + "." + name); in FindMethodByName()
DMethodDescriptor.cs72 : base(file, parent.FullName + "." + proto.Name, index) in MethodDescriptor()
DEnumDescriptor.cs113 return File.DescriptorPool.FindSymbol<EnumValueDescriptor>(FullName + "." + name); in FindValueByName()
/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/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/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/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/vulkan-validation-layers/tests/
D_run_all_tests.ps121 $AboveDir = (Get-Item -Path ".." -Verbose).FullName
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp280 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/
Drenamed_device.cc34 string name = DeviceNameUtils::FullName(parsed_name.job, parsed_name.replica, in NewRenamedDevice()

12