HomeSort by relevance Sort by last modified time
    Searched refs:ArrayRef (Results 76 - 100 of 765) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/MC/MCParser/
MCAsmParser.cpp 36 bool MCAsmParser::TokError(const Twine &Msg, ArrayRef<SMRange> Ranges) {
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 21 ArrayRef<SubtargetFeatureKV> ProcDesc,
22 ArrayRef<SubtargetFeatureKV> ProcFeatures) {
41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackendDarwin.h 34 ArrayRef<MCCFIInstruction> Instrs) const override;
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.h 100 ArrayRef<uint8_t> Bytes, uint64_t Address,
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.h 29 ArrayRef<unsigned> ClobberSet) const;
  /external/llvm/tools/llvm-cov/
CoverageReport.h 35 void renderFunctionReports(ArrayRef<std::string> Files, raw_ostream &OS);
  /art/compiler/linker/
relative_patcher_test.h 85 const ArrayRef<const uint8_t>& code,
86 const ArrayRef<const LinkerPatch>& patches) {
95 /* src_mapping_table */ ArrayRef<const SrcMapElem>(),
96 /* vmap_table */ ArrayRef<const uint8_t>(),
97 /* cfi_info */ ArrayRef<const uint8_t>(),
147 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
150 code = ArrayRef<const uint8_t>(patched_code_);
184 bool CheckLinkedMethod(MethodReference method_ref, const ArrayRef<const uint8_t>& expected_code) {
202 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size());
211 void DumpDiff(const ArrayRef<const uint8_t>& expected_code
    [all...]
relative_patcher.h 120 bool WriteRelCallThunk(OutputStream* out, const ArrayRef<const uint8_t>& thunk);
121 bool WriteMiscThunk(OutputStream* out, const ArrayRef<const uint8_t>& thunk);
  /external/llvm/include/llvm/IR/
DerivedTypes.h 30 template<typename T> class ArrayRef;
99 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
106 ArrayRef<Type*> Params, bool isVarArg);
126 ArrayRef<Type *> params() const {
215 static StructType *create(ArrayRef<Type *> Elements, StringRef Name,
217 static StructType *create(ArrayRef<Type *> Elements);
218 static StructType *create(LLVMContext &Context, ArrayRef<Type *> Elements,
220 static StructType *create(LLVMContext &Context, ArrayRef<Type *> Elements);
225 static StructType *get(LLVMContext &Context, ArrayRef<Type*> Elements,
265 void setBody(ArrayRef<Type*> Elements, bool isPacked = false)
    [all...]
  /external/clang/include/clang/AST/
OpenMPClause.h 94 void setVarRefs(ArrayRef<Expr *> VL) {
118 typedef ArrayRef<const Expr *>::iterator varlist_const_iterator;
143 ArrayRef<const Expr *> getVarRefs() const {
    [all...]
StmtOpenMP.h 80 void setClauses(ArrayRef<OMPClause *> Clauses);
100 ArrayRef<OMPClause *>::const_iterator, std::forward_iterator_tag,
103 ArrayRef<OMPClause *>::const_iterator End;
111 explicit specific_clause_iterator(ArrayRef<OMPClause *> Clauses)
131 getClausesOfKind(ArrayRef<OMPClause *> Clauses) {
216 ArrayRef<OMPClause *> clauses() { return getClauses(); }
218 ArrayRef<OMPClause *> clauses() const {
273 ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt, bool HasCancel);
475 void setCounters(ArrayRef<Expr *> A);
476 void setPrivateCounters(ArrayRef<Expr *> A)
    [all...]
  /art/compiler/debug/
elf_debug_writer.cc 39 const ArrayRef<const MethodDebugInfo>& method_infos,
96 const ArrayRef<const MethodDebugInfo>& method_infos) {
116 const ArrayRef<const MethodDebugInfo>& method_infos) {
135 const ArrayRef<const MethodDebugInfo>& method_infos) {
147 const ArrayRef<mirror::Class*>& types)
168 const ArrayRef<mirror::Class*>& types) {
204 const ArrayRef<const MethodDebugInfo>& method_infos,
209 const ArrayRef<const MethodDebugInfo>& method_infos,
  /art/compiler/
elf_writer_quick.cc 57 const ArrayRef<const debug::MethodDebugInfo>& method_infos)
82 const ArrayRef<const debug::MethodDebugInfo>& method_infos_;
97 void PrepareDebugInfo(const ArrayRef<const debug::MethodDebugInfo>& method_infos) OVERRIDE;
103 void WriteDebugInfo(const ArrayRef<const debug::MethodDebugInfo>& method_infos) OVERRIDE;
104 void WritePatchLocations(const ArrayRef<const uintptr_t>& patch_locations) OVERRIDE;
221 const ArrayRef<const debug::MethodDebugInfo>& method_infos) {
240 const ArrayRef<const debug::MethodDebugInfo>& method_infos) {
258 const ArrayRef<const uintptr_t>& patch_locations) {
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 23 llvm::ArrayRef<DiagnosticRecord> diagtool::getBuiltinDiagnosticsByName() {
95 llvm::ArrayRef<GroupRecord> diagtool::getDiagnosticGroups() {
DiagnosticNames.h 13 #include "llvm/ADT/ArrayRef.h"
34 llvm::ArrayRef<DiagnosticRecord> getBuiltinDiagnosticsByName();
103 llvm::ArrayRef<GroupRecord> getDiagnosticGroups();
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 17 #include "llvm/ADT/ArrayRef.h"
195 template <typename T> struct DenseMapInfo<ArrayRef<T>> {
196 static inline ArrayRef<T> getEmptyKey() {
197 return ArrayRef<T>(reinterpret_cast<const T *>(~static_cast<uintptr_t>(0)),
200 static inline ArrayRef<T> getTombstoneKey() {
201 return ArrayRef<T>(reinterpret_cast<const T *>(~static_cast<uintptr_t>(1)),
204 static unsigned getHashValue(ArrayRef<T> Val) {
210 static bool isEqual(ArrayRef<T> LHS, ArrayRef<T> RHS) {
  /external/llvm/include/llvm/CodeGen/
RegisterClassInfo.h 20 #include "llvm/ADT/ArrayRef.h"
39 operator ArrayRef<MCPhysReg>() const {
93 ArrayRef<MCPhysReg> getOrder(const TargetRegisterClass *RC) const {
  /external/llvm/include/llvm/Support/
Program.h 17 #include "llvm/ADT/ArrayRef.h"
70 findProgramByName(StringRef Name, ArrayRef<StringRef> Paths = None);
133 bool argumentsFitWithinSystemLimits(ArrayRef<const char*> Args);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 78 ArrayRef<GenericValue> ArgValues) {
89 ArrayRef<GenericValue> ActualArgs =
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.h 115 llvm::ArrayRef<unsigned> Indices) const;
133 ArrayRef<unsigned> Ops,
143 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
147 bool canInsertSelect(const MachineBasicBlock &, ArrayRef<MachineOperand> Cond,
150 DebugLoc DL, unsigned DstReg, ArrayRef<MachineOperand> Cond,
187 ArrayRef<std::pair<unsigned, const char *>>
189 ArrayRef<std::pair<unsigned, const char *>>
195 ArrayRef<MachineOperand> Cond) const;
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateKernelFeatures.cpp 28 bool addAttrsForIntrinsics(Module &M, ArrayRef<StringRef[2]>);
74 ArrayRef<StringRef[2]> IntrinsicToAttr) {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIInfo.h 13 #include "llvm/ADT/ArrayRef.h"
50 ArrayRef<MCPhysReg> GetByValArgRegs() const;
53 ArrayRef<MCPhysReg> GetVarArgRegs() const;
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.h 174 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
178 bool canInsertSelect(const MachineBasicBlock &, ArrayRef<MachineOperand> Cond,
181 DebugLoc DL, unsigned DstReg, ArrayRef<MachineOperand> Cond,
238 ArrayRef<MachineOperand> Pred) const override;
240 bool SubsumesPredicate(ArrayRef<MachineOperand> Pred1,
241 ArrayRef<MachineOperand> Pred2) const override;
270 ArrayRef<std::pair<unsigned, const char *>>
273 ArrayRef<std::pair<unsigned, const char *>>
  /external/clang/lib/AST/
ExprObjC.cpp 20 ObjCArrayLiteral::ObjCArrayLiteral(ArrayRef<Expr *> Elements, QualType T,
39 ArrayRef<Expr *> Elements,
55 ObjCDictionaryLiteral::ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK,
91 ArrayRef<ObjCDictionaryElement> VK,
138 ArrayRef<SourceLocation> SelLocs,
140 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
159 ArrayRef<SourceLocation> SelLocs,
161 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
176 Selector Sel, ArrayRef<SourceLocation> SelLocs,
178 ObjCMethodDecl *Method, ArrayRef<Expr *> Args
    [all...]
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 18 #include "llvm/ADT/ArrayRef.h"
37 ArrayRef<StringRef> Filenames;
38 ArrayRef<CounterExpression> Expressions;
39 ArrayRef<CounterMappingRegion> MappingRegions;
108 ArrayRef<StringRef> TranslationUnitFilenames;
119 ArrayRef<StringRef> TranslationUnitFilenames,

Completed in 504 milliseconds

1 2 34 5 6 7 8 91011>>