HomeSort by relevance Sort by last modified time
    Searched defs:Kind (Results 226 - 250 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 566 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
574 Kind = 0;
583 Kind = 1;
592 Kind = 2;
618 if (Kind && ArgNames.size() != Kind)
621 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 519 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
527 Kind = 0;
536 Kind = 1;
545 Kind = 2;
571 if (Kind && ArgNames.size() != Kind)
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 521 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
529 Kind = 0;
538 Kind = 1;
547 Kind = 2;
573 if (Kind && ArgNames.size() != Kind)
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 65 FragmentType Kind;
96 FragmentType getKind() const { return Kind; }
158 MCFragment::FragmentType Kind = F->getKind();
159 switch (Kind) {
197 MCFragment::FragmentType Kind = F->getKind();
198 return Kind == MCFragment::FT_Relaxable || Kind == MCFragment::FT_Data;
819 enum KindTy { Data = 1, JumpTable8, JumpTable16, JumpTable32 } Kind;
855 MCVersionMinType Kind;
1009 void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor
    [all...]
MCExpr.h 44 ExprKind Kind;
53 explicit MCExpr(ExprKind _Kind) : Kind(_Kind) {}
64 ExprKind getKind() const { return Kind; }
277 const VariantKind Kind;
284 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind), MAI(_MAI) {
297 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, VariantKind Kind,
299 static const MCSymbolRefExpr *Create(StringRef Name, VariantKind Kind,
309 VariantKind getKind() const { return Kind; }
315 static StringRef getVariantKindName(VariantKind Kind);
366 /// getOpcode - Get the kind of this unary expression
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 83 RecTyKind Kind;
88 RecTyKind getRecTyKind() const { return Kind; }
90 RecTy(RecTyKind K) : Kind(K), ListTy(nullptr) {}
456 const InitKind Kind;
462 InitKind getKind() const { return Kind; }
465 explicit Init(InitKind K) : Kind(K) {}
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 503 switch (Entry.Kind) {
635 Attribute::AttrKind *Kind) {
636 *Kind = GetAttrFromCode(Code);
637 if (*Kind == Attribute::None)
655 switch (Entry.Kind) {
681 Attribute::AttrKind Kind;
682 if (std::error_code EC = ParseAttrKind(Record[++i], &Kind))
685 B.addAttribute(Kind);
687 Attribute::AttrKind Kind;
688 if (std::error_code EC = ParseAttrKind(Record[++i], &Kind))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 137 /// Kind - Type of block. See IfcvtKind.
148 IfcvtKind Kind;
153 : BBI(b), Kind(k), NeedSubsumption(s), NumDups(d), NumDups2(d2) {}
203 bool IfConvertSimple(BBInfo &BBI, IfcvtKind Kind);
204 bool IfConvertTriangle(BBInfo &BBI, IfcvtKind Kind);
205 bool IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind,
240 int Incr1 = (C1->Kind == ICDiamond)
242 int Incr2 = (C2->Kind == ICDiamond)
252 if ((unsigned)C1->Kind < (unsigned)C2->Kind)
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 133 } Kind;
139 Token() : Kind(TK_Error) {}
271 void printError(SMLoc Loc, SourceMgr::DiagKind Kind, const Twine &Message,
273 SM.PrintMessage(Loc, Kind, Message, Ranges);
411 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
414 , Token::TokenKind Kind
550 switch (T.Kind) {
618 if (T.Kind == Token::TK_StreamEnd)
620 else if (T.Kind == Token::TK_Error)
631 if (T.Kind == Token::TK_StreamEnd
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 52 BaseKind Kind;
60 Address() : Kind(RegBase), Offset(0) { Base.Reg = 0; }
61 void setKind(BaseKind K) { Kind = K; }
62 BaseKind getKind() const { return Kind; }
63 bool isRegBase() const { return Kind == RegBase; }
64 bool isFIBase() const { return Kind == FrameIndexBase; }
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 94 enum Kind {
110 static Kind getSwappedComparison(Kind Cmp) {
113 return (Kind)(Cmp ^ (L|G));
151 Comparison::Kind Cmp) const;
233 CountValueType Kind;
244 Kind = t;
245 if (Kind == CV_Register) {
252 bool isReg() const { return Kind == CV_Register; }
253 bool isImm() const { return Kind == CV_Immediate;
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 149 /// Invalid kind, for use as a sentinel value.
164 /// Kind - The class kind, which is either a predefined kind, or (UserClass0 +
166 unsigned Kind;
199 /// For custom match classes: the diagnostic kind for when the predicate fails.
204 return Kind >= RegisterClass0 && Kind < UserClass0;
209 return Kind >= UserClass0;
216 if (Kind == Token || RHS.Kind == Token
    [all...]
DAGISelMatcher.h 88 const KindTy Kind;
91 Matcher(KindTy K) : Kind(K) {}
95 KindTy getKind() const { return Kind; }
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 484 switch (Entry.Kind) {
547 switch (Entry.Kind) {
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 763 switch (Entry.Kind) {
827 switch (Entry.Kind) {
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.hpp 144 enum Kind { kBlockEOS, kBlockSimple, kBlockGroup };
145 virtual Kind GetKind() const = 0;
163 Kind GetKind() const;
190 Kind GetKind() const;
424 Kind GetKind() const;
  /external/clang/include/clang/AST/
ASTContext.h 525 enum Kind {
548 Kind getKind() const LLVM_READONLY {
552 void setKind(Kind K) {
573 llvm::PointerIntPair<const RawComment *, 2, Kind> Data;
739 /// the same selector and is of the same kind (class or instance).
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 412 /// and returning the token kind. This method is specific to strings, as it
454 tok::TokenKind Kind = Tok.getKind();
455 return Kind == tok::eof || Kind == tok::annot_module_begin ||
456 Kind == tok::annot_module_end || Kind == tok::annot_module_include;
636 /// its original kind and return true if it was disabled by
644 /// TentativeParsingAction - An object that is used as a kind of "tentative
736 /// \brief The kind of extra semi diagnostic to emit.
745 void ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST = TST_unspecified)
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h 540 } Kind;
551 HiddenName(Decl *D) : Kind(Declaration), D(D), Id() { }
554 : Kind(Macro), MMI(MMI), Id(II) { }
556 NameKind getKind() const { return Kind; }
593 /// \brief The kind of module reference.
594 enum { Import, Export, Conflict } Kind;
    [all...]
  /external/clang/lib/AST/
Decl.cpp 80 // is computed using the kind of that entity, not the kind of the
123 /// Does this computation kind permit us to consider additional
144 LVComputationKind kind) {
145 assert(!hasExplicitVisibilityAlready(kind) &&
147 return D->getExplicitVisibility((NamedDecl::ExplicitVisibilityKind) kind);
189 llvm_unreachable("bad visibility kind");
194 NamedDecl::ExplicitVisibilityKind kind) {
197 if (kind == NamedDecl::VisibilityForType) {
341 llvm_unreachable("bad template argument kind");
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 59 enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 };
61 AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {}
73 Kind kind; member in class:__anon21582::AddStmtChoice
847 return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 85 /// The kind of evaluation to perform on values of a particular
174 : Kind(K), ThisValue(nullptr), CXXThisFieldDecl(nullptr) {
190 CapturedRegionKind getKind() const { return Kind; }
215 /// \brief The kind of captured statement being generated.
216 CapturedRegionKind Kind;
257 /// The kind of cleanup to push: a value from the CleanupKind enumeration.
258 unsigned Kind : 3;
261 CleanupKind getKind() const { return static_cast<CleanupKind>(Kind); }
325 void pushFullExprCleanup(CleanupKind kind, A0 a0) {
329 return EHStack.pushCleanup<T>(kind, a0)
    [all...]

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 91011>>