/third_party/re2/re2/ |
D | prefilter.cc | 203 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | SSAUpdaterImpl.h | 119 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64CollectLOH.cpp | 292 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 …]
|
D | AArch64StackTagging.cpp | 291 void alignAndPadAlloca(AllocaInfo &Info); 441 const AllocaInfo &Info = I.second; in insertBaseTaggedPointer() local 442 AllocaInst *AI = Info.AI; in insertBaseTaggedPointer() 443 if (Info.Tag < 0) in insertBaseTaggedPointer() 462 void AArch64StackTagging::alignAndPadAlloca(AllocaInfo &Info) { in alignAndPadAlloca() argument 464 max(MaybeAlign(Info.AI->getAlignment()), kTagGranuleSize); in alignAndPadAlloca() 465 Info.AI->setAlignment(NewAlignment); in alignAndPadAlloca() 467 uint64_t Size = Info.AI->getAllocationSizeInBits(*DL).getValue() / 8; in alignAndPadAlloca() 474 Info.AI->isArrayAllocation() in alignAndPadAlloca() 476 Info.AI->getAllocatedType(), in alignAndPadAlloca() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/ |
D | Option.h | 77 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | OnDiskHashTable.h | 59 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 …]
|
/third_party/boost/boost/bimap/relation/ |
D | structured_pair.hpp | 160 template< class TA, class TB, class Info, class Layout > 167 default_tagged<Info,member_at::info>::type tagged_info_type; 250 template< class TA, class TB, class Info, bool FM > 261 template< class FirstType, class SecondType, class Info, class Layout = normal_layout > 267 Info, 276 Info, 284 structured_pair< FirstType, SecondType, Info, normal_layout >, 285 structured_pair< FirstType, SecondType, Info, mirror_layout >, 288 mutant_relation< FirstType, SecondType, Info, true >, 289 mutant_relation< SecondType, FirstType, Info, true > [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | CLDeviceImpl.cpp | 15 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;
|
D | CLPlatformImpl.cpp | 13 CLPlatformImpl::Info::Info() = default; 15 CLPlatformImpl::Info::~Info() = default; 17 CLPlatformImpl::Info::Info(Info &&) = default; 19 CLPlatformImpl::Info &CLPlatformImpl::Info::operator=(Info &&) = default;
|
D | CLPlatformImpl.h | 25 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
|
D | CLKernelImpl.cpp | 29 CLKernelImpl::Info::Info() = default; 31 CLKernelImpl::Info::~Info() = default; 33 CLKernelImpl::Info::Info(Info &&) = default; 35 CLKernelImpl::Info &CLKernelImpl::Info::operator=(Info &&) = default;
|
D | CLKernelImpl.h | 62 struct Info struct 64 Info(); 65 ~Info(); 67 Info(const Info &) = delete; 68 Info &operator=(const Info &) = delete; argument 70 Info(Info &&); 71 Info &operator=(Info &&); argument 88 virtual Info createInfo(cl_int &errorCode) const = 0; argument
|
D | CLDeviceImpl.h | 25 struct Info : public CLExtensions struct 27 Info(); 28 explicit Info(cl::DeviceType deviceType); 29 ~Info(); 31 Info(const Info &) = delete; 32 Info &operator=(const Info &) = delete; argument 34 Info(Info &&); 35 Info &operator=(Info &&); argument 69 virtual Info createInfo(cl::DeviceType type) const = 0; argument
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | info.cc | 20 Info::Info() = default; 22 Info::Info(Info&&) = default; 24 Info::~Info() = default; 26 Info& Info::operator=(Info&&) = default;
|
D | info.h | 29 class Info { 43 Info(); 46 Info(Info&&); 49 ~Info(); 54 Info& operator=(Info&& rhs); 89 static Info Wrap(const Info& inner) { in Wrap() 90 Info out; in Wrap()
|
/third_party/boost/libs/compute/include/boost/compute/detail/ |
D | get_object_info.hpp | 39 template<class Info> 40 cl_int operator()(Info info, size_t input_size, const void *input, in operator ()() 49 template<class Info> 50 cl_int operator()(Info info, size_t size, void *value, size_t *size_ret) const in operator ()() 69 template<class Info> 70 cl_int operator()(Info info, size_t size, void *value, size_t *size_ret) const in operator ()() 97 template<class Function, class Info> 98 T operator()(Function function, Info info) const in operator ()() 110 template<class Function, class Info> 111 T operator()(Function function, Info info, in operator ()() [all …]
|
/third_party/boost/boost/compute/detail/ |
D | get_object_info.hpp | 39 template<class Info> 40 cl_int operator()(Info info, size_t input_size, const void *input, in operator ()() 49 template<class Info> 50 cl_int operator()(Info info, size_t size, void *value, size_t *size_ret) const in operator ()() 69 template<class Info> 70 cl_int operator()(Info info, size_t size, void *value, size_t *size_ret) const in operator ()() 97 template<class Function, class Info> 98 T operator()(Function function, Info info) const in operator ()() 110 template<class Function, class Info> 111 T operator()(Function function, Info info, in operator ()() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
D | DIPrinter.cpp | 63 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MinidumpYAML.cpp | 164 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCInstrAnalysis.h | 31 const MCInstrInfo *Info; variable 34 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {} in MCInstrAnalysis() argument 38 return Info->get(Inst.getOpcode()).isBranch(); in isBranch() 42 return Info->get(Inst.getOpcode()).isConditionalBranch(); in isConditionalBranch() 46 return Info->get(Inst.getOpcode()).isUnconditionalBranch(); in isUnconditionalBranch() 50 return Info->get(Inst.getOpcode()).isIndirectBranch(); in isIndirectBranch() 54 return Info->get(Inst.getOpcode()).isCall(); in isCall() 58 return Info->get(Inst.getOpcode()).isReturn(); in isReturn() 62 return Info->get(Inst.getOpcode()).isTerminator(); in isTerminator()
|
/third_party/typescript/tests/baselines/reference/ |
D | jsxSpreadFirstUnionNoErrors.types | 15 const Info = (props: InfoProps) => 16 >Info : (props: InfoProps) => JSX.Element 40 const a = <Info status="hidden" />; 42 ><Info status="hidden" /> : JSX.Element 43 >Info : (props: InfoProps) => JSX.Element 46 const b = <Info status="visible" content="hello world" />; 48 ><Info status="visible" content="hello world" /> : JSX.Element 49 >Info : (props: InfoProps) => JSX.Element 56 const c = <Info {...infoProps} />; 58 ><Info {...infoProps} /> : JSX.Element [all …]
|
D | jsxSpreadFirstUnionNoErrors.symbols | 15 const Info = (props: InfoProps) => 16 >Info : Symbol(Info, Decl(jsxSpreadFirstUnionNoErrors.tsx, 6, 5)) 35 const a = <Info status="hidden" />; 37 >Info : Symbol(Info, Decl(jsxSpreadFirstUnionNoErrors.tsx, 6, 5)) 40 const b = <Info status="visible" content="hello world" />; 42 >Info : Symbol(Info, Decl(jsxSpreadFirstUnionNoErrors.tsx, 6, 5)) 50 const c = <Info {...infoProps} />; 52 >Info : Symbol(Info, Decl(jsxSpreadFirstUnionNoErrors.tsx, 6, 5))
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | IDNA.java | 161 public abstract StringBuilder labelToASCII(CharSequence label, StringBuilder dest, Info info); in labelToASCII() 173 public abstract StringBuilder labelToUnicode(CharSequence label, StringBuilder dest, Info info); in labelToUnicode() 187 public abstract StringBuilder nameToASCII(CharSequence name, StringBuilder dest, Info info); in nameToASCII() 199 public abstract StringBuilder nameToUnicode(CharSequence name, StringBuilder dest, Info info); in nameToUnicode() 205 public static final class Info { class in IDNA 209 public Info() { in Info() method in IDNA.Info 263 protected static void resetInfo(Info info) { in resetInfo() 272 protected static boolean hasCertainErrors(Info info, EnumSet<Error> errors) { in hasCertainErrors() 281 protected static boolean hasCertainLabelErrors(Info info, EnumSet<Error> errors) { in hasCertainLabelErrors() 290 protected static void addLabelError(Info info, Error error) { in addLabelError() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | IDNA.java | 169 public abstract StringBuilder labelToASCII(CharSequence label, StringBuilder dest, Info info); in labelToASCII() 182 public abstract StringBuilder labelToUnicode(CharSequence label, StringBuilder dest, Info info); in labelToUnicode() 197 public abstract StringBuilder nameToASCII(CharSequence name, StringBuilder dest, Info info); in nameToASCII() 210 public abstract StringBuilder nameToUnicode(CharSequence name, StringBuilder dest, Info info); in nameToUnicode() 217 public static final class Info { class in IDNA 222 public Info() { in Info() method in IDNA.Info 278 protected static void resetInfo(Info info) { in resetInfo() 286 protected static boolean hasCertainErrors(Info info, EnumSet<Error> errors) { in hasCertainErrors() 294 protected static boolean hasCertainLabelErrors(Info info, EnumSet<Error> errors) { in hasCertainLabelErrors() 302 protected static void addLabelError(Info info, Error error) { in addLabelError() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
D | UTS46Test.java | 52 IDNA.Info info=new IDNA.Info(); in TestAPI() 89 IDNA.Info info=new IDNA.Info(); in TestNotSTD3() 115 IDNA.Info info=new IDNA.Info(); in TestInvalidPunycodeDigits() 121 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 127 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 132 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 137 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 142 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 147 info=new IDNA.Info(); in TestInvalidPunycodeDigits() 152 info=new IDNA.Info(); in TestInvalidPunycodeDigits() [all …]
|