Home
last modified time | relevance | path

Searched refs:Info (Results 1 – 25 of 2760) sorted by relevance

12345678910>>...111

/external/clang/lib/Index/
DIndexSymbol.cpp54 SymbolInfo Info; in getSymbolInfo() local
55 Info.Kind = SymbolKind::Unknown; in getSymbolInfo()
56 Info.SubKinds = SymbolSubKindSet(); in getSymbolInfo()
57 Info.Lang = SymbolLanguage::C; in getSymbolInfo()
62 Info.Kind = SymbolKind::Struct; break; in getSymbolInfo()
64 Info.Kind = SymbolKind::Union; break; in getSymbolInfo()
66 Info.Kind = SymbolKind::Class; in getSymbolInfo()
67 Info.Lang = SymbolLanguage::CXX; in getSymbolInfo()
70 Info.Kind = SymbolKind::Protocol; in getSymbolInfo()
71 Info.Lang = SymbolLanguage::CXX; in getSymbolInfo()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dprefilter.cc203 class Prefilter::Info { class in re2::Prefilter
205 Info();
206 ~Info();
209 static Info* Alt(Info* a, Info* b);
210 static Info* Concat(Info* a, Info* b);
211 static Info* And(Info* a, Info* b);
212 static Info* Star(Info* a);
213 static Info* Plus(Info* a);
214 static Info* Quest(Info* a);
215 static Info* EmptyString();
[all …]
/external/clang/lib/AST/
DExprConstant.cpp237 bool checkSubobject(EvalInfo &Info, const Expr *E, CheckSubobjectKind CSK);
280 void diagnosePointerArithmetic(EvalInfo &Info, const Expr *E, uint64_t N);
282 void adjustIndex(EvalInfo &Info, const Expr *E, uint64_t N) { in adjustIndex()
288 diagnosePointerArithmetic(Info, E, Entries.back().ArrayIndex); in adjustIndex()
301 diagnosePointerArithmetic(Info, E, uint64_t(IsOnePastTheEnd) + N); in adjustIndex()
309 EvalInfo &Info; member
337 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc,
811 EvalInfo &Info; member
816 explicit FoldConstant(EvalInfo &Info, bool Enabled) in FoldConstant()
817 : Info(Info), in FoldConstant()
[all …]
DCommentCommandTraits.cpp35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name)) in getCommandInfoOrNULL() local
36 return Info; in getCommandInfoOrNULL()
41 if (const CommandInfo *Info = getBuiltinCommandInfo(CommandID)) in getCommandInfo() local
42 return Info; in getCommandInfo()
90 CommandInfo *Info = new (Allocator) CommandInfo(); in createCommandInfoWithName() local
91 Info->Name = Name; in createCommandInfoWithName()
96 Info->ID = NextID++; in createCommandInfoWithName()
98 RegisteredCommands.push_back(Info); in createCommandInfoWithName()
100 return Info; in createCommandInfoWithName()
105 CommandInfo *Info = createCommandInfoWithName(CommandName); in registerUnknownCommand() local
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h107 BBInfo *Info = new (Allocator) BBInfo(BB, 0); in BuildBlockList() local
108 BBMap[BB] = Info; in BuildBlockList()
109 WorkList.push_back(Info); in BuildBlockList()
116 Info = WorkList.pop_back_val(); in BuildBlockList()
118 Traits::FindPredecessorBlocks(Info->BB, &Preds); in BuildBlockList()
119 Info->NumPreds = Preds.size(); in BuildBlockList()
120 if (Info->NumPreds == 0) in BuildBlockList()
121 Info->Preds = nullptr; in BuildBlockList()
123 Info->Preds = static_cast<BBInfo**> in BuildBlockList()
124 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*), in BuildBlockList()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h119 BBInfo *Info = new (Allocator) BBInfo(BB, 0); in BuildBlockList() local
120 BBMap[BB] = Info; in BuildBlockList()
121 WorkList.push_back(Info); in BuildBlockList()
128 Info = WorkList.pop_back_val(); in BuildBlockList()
130 Traits::FindPredecessorBlocks(Info->BB, &Preds); in BuildBlockList()
131 Info->NumPreds = Preds.size(); in BuildBlockList()
132 if (Info->NumPreds == 0) in BuildBlockList()
133 Info->Preds = nullptr; in BuildBlockList()
135 Info->Preds = static_cast<BBInfo **>(Allocator.Allocate( in BuildBlockList()
136 Info->NumPreds * sizeof(BBInfo *), alignof(BBInfo *))); in BuildBlockList()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64CollectLOH.cpp292 LOHInfo &Info) { in handleUse() argument
294 if (Info.MultiUsers || Info.OneUser) { in handleUse()
295 Info.IsCandidate = false; in handleUse()
296 Info.MultiUsers = true; in handleUse()
299 Info.OneUser = true; in handleUse()
303 Info.Type = MCLOH_AdrpLdr; in handleUse()
304 Info.IsCandidate = true; in handleUse()
305 Info.MI0 = &MI; in handleUse()
309 Info.Type = MCLOH_AdrpAddStr; in handleUse()
310 Info.IsCandidate = true; in handleUse()
[all …]
/external/llvm/include/llvm/Option/
DOption.h69 const OptTable::Info *Info;
73 Option(const OptTable::Info *Info, const OptTable *Owner);
76 return Info != nullptr; in isValid()
80 assert(Info && "Must have a valid info!"); in getID()
81 return Info->ID; in getID()
85 assert(Info && "Must have a valid info!"); in getKind()
86 return OptionClass(Info->Kind); in getKind()
91 assert(Info && "Must have a valid info!"); in getName()
92 return Info->Name; in getName()
96 assert(Info && "Must have a valid info!"); in getGroup()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/
DOption.h77 const OptTable::Info *Info;
81 Option(const OptTable::Info *Info, const OptTable *Owner);
84 return Info != nullptr; in isValid()
88 assert(Info && "Must have a valid info!"); in getID()
89 return Info->ID; in getID()
93 assert(Info && "Must have a valid info!"); in getKind()
94 return OptionClass(Info->Kind); in getKind()
99 assert(Info && "Must have a valid info!"); in getName()
100 return Info->Name; in getName()
104 assert(Info && "Must have a valid info!"); in getGroup()
[all …]
/external/rust/crates/combine/src/stream/
Deasy.rs85 use crate::error::{Info as PrimitiveInfo, ParseResult, StreamError, Tracked};
98 pub enum Info<T, R> { enum
105 impl<T, R, F> From<PrimitiveInfo<T, R, F>> for Info<T, R> implementation
111 PrimitiveInfo::Token(b) => Info::Token(b), in from()
112 PrimitiveInfo::Range(b) => Info::Range(b), in from()
113 PrimitiveInfo::Static(b) => Info::Static(b), in from()
114 PrimitiveInfo::Format(b) => Info::Owned(b.to_string()), in from()
119 impl<T, R> Info<T, R> { implementation
120 pub fn map_token<F, U>(self, f: F) -> Info<U, R> in map_token()
124 use self::Info::*; in map_token()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DOnDiskHashTable.h59 template <typename Info> class OnDiskChainedHashTableGenerator {
63 typename Info::key_type Key;
64 typename Info::data_type Data;
66 const typename Info::hash_value_type Hash;
68 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data, in Item()
69 Info &InfoObj) in Item()
73 typedef typename Info::offset_type offset_type;
116 void insert(typename Info::key_type_ref Key, in insert()
117 typename Info::data_type_ref Data) { in insert()
118 Info InfoObj; in insert()
[all …]
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h60 template <typename Info> class OnDiskChainedHashTableGenerator {
64 typename Info::key_type Key;
65 typename Info::data_type Data;
67 const typename Info::hash_value_type Hash;
69 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data, in Item()
70 Info &InfoObj) in Item()
74 typedef typename Info::offset_type offset_type;
116 void insert(typename Info::key_type_ref Key, in insert()
117 typename Info::data_type_ref Data) { in insert()
118 Info InfoObj; in insert()
[all …]
/external/angle/src/libANGLE/renderer/
DCLDeviceImpl.cpp15 CLDeviceImpl::Info::Info() = default;
17 CLDeviceImpl::Info::Info(cl::DeviceType deviceType) : type(deviceType) {} in Info() function in rx::CLDeviceImpl::Info
19 CLDeviceImpl::Info::~Info() = default;
21 CLDeviceImpl::Info::Info(Info &&) = default;
23 CLDeviceImpl::Info &CLDeviceImpl::Info::operator=(Info &&) = default;
DCLPlatformImpl.cpp13 CLPlatformImpl::Info::Info() = default;
15 CLPlatformImpl::Info::~Info() = default;
17 CLPlatformImpl::Info::Info(Info &&) = default;
19 CLPlatformImpl::Info &CLPlatformImpl::Info::operator=(Info &&) = default;
DCLPlatformImpl.h25 struct Info : public CLExtensions struct
27 Info();
28 ~Info();
30 Info(const Info &) = delete;
31 Info &operator=(const Info &) = delete; argument
33 Info(Info &&);
34 Info &operator=(Info &&); argument
47 virtual Info createInfo() const = 0; argument
DCLKernelImpl.cpp29 CLKernelImpl::Info::Info() = default;
31 CLKernelImpl::Info::~Info() = default;
33 CLKernelImpl::Info::Info(Info &&) = default;
35 CLKernelImpl::Info &CLKernelImpl::Info::operator=(Info &&) = default;
/external/clang/lib/Frontend/
DTextDiagnosticPrinter.cpp56 const Diagnostic &Info, in printDiagnosticOptions() argument
61 if (Info.getID() == diag::fatal_too_many_errors) { in printDiagnosticOptions()
76 DiagnosticIDs::isBuiltinWarningOrExtension(Info.getID()) && in printDiagnosticOptions()
77 !DiagnosticIDs::isDefaultMappingAsError(Info.getID())) { in printDiagnosticOptions()
82 StringRef Opt = DiagnosticIDs::getWarningOptionForDiag(Info.getID()); in printDiagnosticOptions()
86 StringRef OptValue = Info.getDiags()->getFlagValue(); in printDiagnosticOptions()
96 DiagnosticIDs::getCategoryNumberForDiag(Info.getID()); in printDiagnosticOptions()
113 const Diagnostic &Info) { in HandleDiagnostic() argument
115 DiagnosticConsumer::HandleDiagnostic(Level, Info); in HandleDiagnostic()
120 Info.FormatDiagnostic(OutStr); in HandleDiagnostic()
[all …]
/external/pigweed/pw_rpc/public/pw_rpc/
Dsynchronous_call.h100 using Info = internal::MethodInfo<kRpcMethod>; in SynchronousCall() local
101 using Response = typename Info::Response; in SynchronousCall()
102 static_assert(Info::kType == MethodType::kUnary, in SynchronousCall()
131 using Info = internal::MethodInfo<kRpcMethod>; in SynchronousCall() local
132 using Response = typename Info::Response; in SynchronousCall()
133 static_assert(Info::kType == MethodType::kUnary, in SynchronousCall()
137 Info::template Function<typename Info::GeneratedClient>(); in SynchronousCall()
167 using Info = internal::MethodInfo<kRpcMethod>; in SynchronousCallFor() local
168 using Response = typename Info::Response; in SynchronousCallFor()
169 static_assert(Info::kType == MethodType::kUnary, in SynchronousCallFor()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/
DDIPrinter.cpp63 void DIPrinter::print(const DILineInfo &Info, bool Inlined) { in print() argument
65 std::string FunctionName = Info.FunctionName; in print()
73 std::string Filename = Info.FileName; in print()
79 OS << Filename << ":" << Info.Line; in print()
81 OS << ":" << Info.Column; in print()
83 printContext(Filename, Info.Line); in print()
87 if (Info.StartLine) in print()
88 OS << "Function start line: " << Info.StartLine << "\n"; in print()
89 OS << " Line: " << Info.Line << "\n"; in print()
90 OS << " Column: " << Info.Column << "\n"; in print()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DMinidumpYAML.cpp164 CPUInfo::ArmInfo &Info) { in mapping() argument
165 mapRequiredHex(IO, "CPUID", Info.CPUID); in mapping()
166 mapOptionalHex(IO, "ELF hwcaps", Info.ElfHWCaps, 0); in mapping()
200 IO &IO, CPUInfo::OtherInfo &Info) { in mapping() argument
201 FixedSizeHex<sizeof(Info.ProcessorFeatures)> Features(Info.ProcessorFeatures); in mapping()
236 CPUInfo::X86Info &Info) { in mapping() argument
237 FixedSizeString<sizeof(Info.VendorID)> VendorID(Info.VendorID); in mapping()
240 mapRequiredHex(IO, "Version Info", Info.VersionInfo); in mapping()
241 mapRequiredHex(IO, "Feature Info", Info.FeatureInfo); in mapping()
242 mapOptionalHex(IO, "AMD Extended Features", Info.AMDExtendedFeatures, 0); in mapping()
[all …]
/external/llvm/include/llvm/MC/
DMCInstrAnalysis.h27 const MCInstrInfo *Info; variable
30 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {} in MCInstrAnalysis() argument
35 return Info->get(Inst.getOpcode()).isBranch(); in isBranch()
39 return Info->get(Inst.getOpcode()).isConditionalBranch(); in isConditionalBranch()
43 return Info->get(Inst.getOpcode()).isUnconditionalBranch(); in isUnconditionalBranch()
47 return Info->get(Inst.getOpcode()).isIndirectBranch(); in isIndirectBranch()
51 return Info->get(Inst.getOpcode()).isCall(); in isCall()
55 return Info->get(Inst.getOpcode()).isReturn(); in isReturn()
59 return Info->get(Inst.getOpcode()).isTerminator(); in isTerminator()
/external/clang/lib/Sema/
DSemaTemplateDeduction.cpp91 TemplateDeductionInfo &Info,
99 TemplateDeductionInfo &Info,
109 TemplateDeductionInfo &Info,
291 QualType ValueType, bool DeducedFromArrayBound, TemplateDeductionInfo &Info, in DeduceNonTypeTemplateArgument() argument
302 Info.Param = NTTP; in DeduceNonTypeTemplateArgument()
303 Info.FirstArg = Deduced[NTTP->getIndex()]; in DeduceNonTypeTemplateArgument()
304 Info.SecondArg = NewDeduced; in DeduceNonTypeTemplateArgument()
320 TemplateDeductionInfo &Info, in DeduceNonTypeTemplateArgument() argument
333 Info.Param = NTTP; in DeduceNonTypeTemplateArgument()
334 Info.FirstArg = Deduced[NTTP->getIndex()]; in DeduceNonTypeTemplateArgument()
[all …]
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DModInfo.h28 ModInfo(const ModInfo &Info);
31 static Error initialize(codeview::StreamRef Stream, ModInfo &Info);
55 ModuleInfoEx(const ModInfo &Info) : Info(Info) {} in ModuleInfoEx()
57 : Info(Ex.Info), SourceFiles(Ex.SourceFiles) {} in ModuleInfoEx()
59 ModInfo Info; member
68 pdb::ModInfo &Info) const {
69 if (auto EC = pdb::ModInfo::initialize(Stream, Info))
71 Length = Info.getRecordLength();
/external/clang/lib/Basic/
DTargetInfo.cpp443 bool TargetInfo::validateOutputConstraint(ConstraintInfo &Info) const { in validateOutputConstraint()
444 const char *Name = Info.getConstraintStr().c_str(); in validateOutputConstraint()
450 Info.setIsReadWrite(); in validateOutputConstraint()
456 if (!validateAsmConstraint(Name, Info)) { in validateOutputConstraint()
464 Info.setEarlyClobber(); in validateOutputConstraint()
470 Info.setAllowsRegister(); in validateOutputConstraint()
477 Info.setAllowsMemory(); in validateOutputConstraint()
481 Info.setAllowsRegister(); in validateOutputConstraint()
482 Info.setAllowsMemory(); in validateOutputConstraint()
504 if (Info.earlyClobber() && Info.isReadWrite() && !Info.allowsRegister()) in validateOutputConstraint()
[all …]
/external/cronet/third_party/abseil-cpp/absl/profiling/internal/
Dsample_recorder_test.cc37 struct Info : public Sample<Info> { struct
44 std::vector<size_t> GetSizes(SampleRecorder<Info>* s) { in GetSizes()
46 s->Iterate([&](const Info& info) { in GetSizes()
52 std::vector<int64_t> GetWeights(SampleRecorder<Info>* s) { in GetWeights()
54 s->Iterate([&](const Info& info) { res.push_back(info.weight); }); in GetWeights()
58 Info* Register(SampleRecorder<Info>* s, int64_t weight, size_t size) { in Register()
66 SampleRecorder<Info> sampler; in TEST()
82 SampleRecorder<Info> sampler; in TEST()
83 std::vector<Info*> infos; in TEST()
109 SampleRecorder<Info> sampler; in TEST()
[all …]

12345678910>>...111