HomeSort by relevance Sort by last modified time
    Searched full:arrayref (Results 126 - 150 of 462) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/lib/AST/
APValue.cpp 431 ArrayRef<LValuePathEntry> Path = getLValuePath();
567 ArrayRef<APValue::LValuePathEntry> APValue::getLValuePath() const {
570 return ArrayRef<LValuePathEntry>(LVal.getPath(), LVal.PathLength);
590 ArrayRef<LValuePathEntry> Path, bool IsOnePastTheEnd,
614 ArrayRef<const CXXRecordDecl*> APValue::getMemberPointerPath() const {
617 return ArrayRef<const CXXRecordDecl*>(MPD.getPath(), MPD.PathLength);
634 ArrayRef<const CXXRecordDecl*> Path) {
  /external/llvm/include/llvm/IR/
Attributes.h 19 #include "llvm/ADT/ArrayRef.h"
220 ArrayRef<std::pair<unsigned, Attribute> > Attrs);
222 ArrayRef<std::pair<unsigned,
226 ArrayRef<std::pair<unsigned,
239 static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
241 ArrayRef<Attribute::AttrKind> Kind);
317 typedef ArrayRef<Attribute>::iterator iterator;
Instructions.h 19 #include "llvm/ADT/ArrayRef.h"
713 void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
719 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
722 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
728 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
735 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
746 ArrayRef<Value *> IdxList,
754 ArrayRef<Value *> IdxList,
783 static Type *getIndexedType(Type *Ptr, ArrayRef<Value *> IdxList);
784 static Type *getIndexedType(Type *Ptr, ArrayRef<Constant *> IdxList)
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 216 GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
220 ArrayRef<Constant*> IdxList,
318 ArrayRef<Constant*> ops,
321 ArrayRef<unsigned> inds = None)
420 static ConstantClass *create(TypeClass *Ty, ArrayRef<Constant*> V) {
490 CE->getIndices() : ArrayRef<unsigned>());
653 typedef ArrayRef<Constant*> Operands;
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 32 #include "llvm/ADT/ArrayRef.h"
45 CompileCommand(Twine Directory, ArrayRef<std::string> CommandLine)
172 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
  /external/clang/lib/Frontend/
MultiplexConsumer.cpp 91 MultiplexASTMutationListener(ArrayRef<ASTMutationListener*> L);
115 ArrayRef<ASTMutationListener*> L)
182 MultiplexConsumer::MultiplexConsumer(ArrayRef<ASTConsumer*> C)
ASTMerge.cpp 84 ArrayRef<std::string> ASTFiles)
CreateInvocationFromCommandLine.cpp 33 clang::createInvocationFromCommandLine(ArrayRef<const char *> ArgList,
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 78 void fillSelectors(ASTContext &Ctx, ArrayRef<SelectorDescriptor> Sel,
104 ArrayRef<SelectorDescriptor> Sel,
108 for (ArrayRef<SelectorDescriptor>::iterator I = Sel.begin(), E = Sel.end();
  /external/clang/test/SemaCXX/
cxx0x-initializer-constructor.cpp 271 class ArrayRef; // expected-note{{forward declaration}}
274 void foo(const ArrayRef&); // expected-note{{passing argument to parameter here}}
279 c->foo({ nullptr, 1 }); // expected-error{{initialization of incomplete type 'const PR12498::ArrayRef'}}
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 170 ArrayRef<SUnit*> elements() { return Queue; }
352 void initQueues(ArrayRef<SUnit*> TopRoots, ArrayRef<SUnit*> BotRoots);
SelectionDAG.h 101 ArrayRef<SDDbgValue*> getSDDbgValues(const SDNode *Node) {
105 return ArrayRef<SDDbgValue*>();
566 ArrayRef<EVT> ResultTys,
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 23 class ArrayRef;
298 ArrayRef<uint8_t> getSymbolAuxData(const coff_symbol *symbol) const;
302 ArrayRef<uint8_t> &Res) const;
MachO.h 18 #include "llvm/ADT/ArrayRef.h"
147 ArrayRef<char> getSectionRawName(DataRefImpl Sec) const;
148 ArrayRef<char> getSectionRawFinalSegmentName(DataRefImpl Sec) const;
  /external/llvm/include/llvm/Support/
ConvertUTF.h 171 #include "llvm/ADT/ArrayRef.h"
231 bool hasUTF16ByteOrderMark(ArrayRef<char> SrcBytes);
240 bool convertUTF16ToUTF8String(ArrayRef<char> SrcBytes, std::string &Out);
  /external/clang/include/clang/ARCMigrate/
ARCMT.h 86 ArrayRef<StringRef> remapFiles,
  /external/clang/include/clang/AST/
CommentParser.h 75 void putBack(ArrayRef<Token> Toks) {
DeclFriend.h 77 ArrayRef<TemplateParameterList*> FriendTypeTPLists)
103 ArrayRef<TemplateParameterList*> FriendTypeTPLists
StmtCXX.h 69 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers);
83 Stmt *tryBlock, ArrayRef<Stmt*> handlers);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 95 ArrayRef<PathDiagnosticConsumer*> getPathDiagnosticConsumers() {
ProgramState.h 238 invalidateRegions(ArrayRef<const MemRegion *> Regions, const Expr *E,
242 ArrayRef<const MemRegion *> ConstRegions =
243 ArrayRef<const MemRegion *>()) const;
246 invalidateRegions(ArrayRef<SVal> Regions, const Expr *E,
250 ArrayRef<SVal> ConstRegions = ArrayRef<SVal>()) const;
424 invalidateRegionsImpl(ArrayRef<SVal> Values,
430 ArrayRef<SVal> ConstValues) const;
  /external/clang/lib/Analysis/
BodyFarm.cpp 58 CompoundStmt *makeCompound(ArrayRef<Stmt*>);
105 CompoundStmt *ASTMaker::makeCompound(ArrayRef<Stmt *> Stmts) {
217 CompoundStmt *CS = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
328 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 39 class ArrayRef;
188 Value *SimplifyGEPInst(ArrayRef<Value *> Ops, const DataLayout *TD = 0,
195 ArrayRef<unsigned> Idxs,
236 Value *SimplifyCall(Value *V, ArrayRef<Value *> Args,
  /external/llvm/lib/Object/
YAML.cpp 61 for (ArrayRef<uint8_t>::iterator I = Data.begin(), E = Data.end(); I != E;
  /art/compiler/dex/portable/
mir_to_gbc.h 96 ::llvm::Value* EmitConst(::llvm::ArrayRef< ::llvm::Value*> src,
99 ::llvm::Value* EmitCopy(::llvm::ArrayRef< ::llvm::Value*> src,

Completed in 580 milliseconds

1 2 3 4 56 7 8 91011>>