HomeSort by relevance Sort by last modified time
    Searched defs:Kind (Results 201 - 225 of 436) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/lib/Parse/
ParseStmt.cpp 158 tok::TokenKind Kind = Tok.getKind();
160 switch (Kind) {
    [all...]
Parser.cpp 106 /// \param DK The kind of diagnostic to emit.
199 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) {
215 if (Kind == OutsideFunction && getLangOpts().CPlusPlus) {
225 if (Kind != AfterMemberFunctionDefinition || HadMultipleSemis)
227 << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST,
    [all...]
  /external/jsoncpp/include/json/
value.h 518 enum Kind {
525 Kind kind_;
562 PathArgument::Kind kind);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 512 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
520 Kind = 0;
529 Kind = 1;
538 Kind = 2;
564 if (Kind && ArgNames.size() != Kind)
567 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 582 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
590 Kind = 0;
599 Kind = 1;
608 Kind = 2;
634 if (Kind && ArgNames.size() != Kind)
637 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 535 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
543 Kind = 0;
552 Kind = 1;
561 Kind = 2;
587 if (Kind && ArgNames.size() != Kind)
590 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 520 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
528 Kind = 0;
537 Kind = 1;
546 Kind = 2;
572 if (Kind && ArgNames.size() != Kind)
575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 185 SCEVPredicateKind Kind;
191 SCEVPredicate(const FoldingSetNodeIDRef ID, SCEVPredicateKind Kind);
193 SCEVPredicateKind getKind() const { return Kind; }
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 47 /// Kind - These are the different kinds of scheduling dependencies.
48 enum Kind {
75 /// indicating the kind of the dependency.
76 PointerIntPair<SUnit *, 2, Kind> Dep;
78 /// Contents - A union discriminated by the dependence kind.
101 SDep(SUnit *S, Kind kind, unsigned Reg)
102 : Dep(S, kind), Contents() {
103 switch (kind) {
119 SDep(SUnit *S, OrderKind kind)
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 60 FragmentType Kind;
93 MCFragment(FragmentType Kind, bool HasInstructions,
110 FragmentType getKind() const { return Kind; }
141 bool isDummy() const { return Kind == FT_Dummy; }
164 MCFragment::FragmentType Kind = F->getKind();
165 switch (Kind) {
225 MCFragment::FragmentType Kind = F->getKind();
226 return Kind == MCFragment::FT_Relaxable || Kind == MCFragment::FT_Data;
528 enum KindTy { Data = 1, JumpTable8, JumpTable16, JumpTable32 } Kind;
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 300 SDep::Kind Kind = MO.isUse() ? SDep::Anti : SDep::Output;
310 (Kind != SDep::Output || !MO.isDead() ||
312 if (Kind == SDep::Anti)
313 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
315 SDep Dep(SU, Kind, /*Reg=*/*Alias);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 150 CaseClusterKind Kind;
162 C.Kind = CC_Range;
174 C.Kind = CC_JumpTable;
185 C.Kind = CC_BitTests;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 461 MCSymbolRefExpr::VariantKind Kind = MCSymbolRefExpr::VK_None;
474 Kind = MCSymbolRefExpr::VK_PLT;
476 MCSymbolRefExpr::create(TlsGetAddr, Kind, OutContext);
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 59 unsigned Kind) override;
174 } Kind;
185 RegisterKind Kind;
205 SparcOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
207 bool isToken() const override { return Kind == k_Token; }
208 bool isReg() const override { return Kind == k_Register; }
209 bool isImm() const override { return Kind == k_Immediate; }
211 bool isMEMrr() const { return Kind == k_MemoryReg; }
212 bool isMEMri() const { return Kind == k_MemoryImm; }
215 return (Kind == k_Register && Reg.Kind == rk_IntReg)
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 288 // Form string as ,{ cycles, u1 | u2 | ... | un, timeinc, kind }
305 int Kind = Stage->getValueAsInt("Kind");
306 ItinString += ", (llvm::InstrStage::ReservationKinds)" + itostr(Kind);
    [all...]
  /external/v8/src/
deoptimizer.h 36 enum Kind {
54 TranslatedValue(TranslatedState* container, Kind kind)
55 : kind_(kind), container_(container) {}
56 Kind kind() const { return kind_; } function in class:v8::internal::TranslatedValue
76 Kind kind_;
92 // kind kTagged. After handlification it is always nullptr.
94 // kind is kUInt32 or kBoolBit.
96 // kind is kInt32
133 Kind kind() const { return kind_; } function in class:v8::internal::TranslatedFrame
    [all...]
property-details.h 92 enum Kind {
121 static Representation FromKind(Kind kind) { return Representation(kind); }
173 Kind kind() const { return static_cast<Kind>(kind_); } function in class:v8::internal::Representation
195 explicit Representation(Kind k) : kind_(k) { }
197 // Make sure kind fits in int8.
259 PropertyDetails(PropertyAttributes attributes, PropertyKind kind,
311 PropertyKind kind() const { return KindField::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
    [all...]
types.h 350 enum Kind {
361 Kind kind() const { return kind_; } function in class:v8::internal::BitsetType::TypeBase
362 explicit TypeBase(Kind kind) : kind_(kind) {}
364 static bool IsKind(Type* type, Kind kind) {
367 return base->kind() == kind;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 140 enum Kind { kBlockEOS, kBlockSimple, kBlockGroup };
141 virtual Kind GetKind() const = 0;
159 Kind GetKind() const;
185 Kind GetKind() const;
367 Kind GetKind() const;
  /art/runtime/
stack_map.h 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51 * The location kind used to populate the Dex register information in a
71 enum class Kind : uint8_t {
73 // for the kind, 5 bits for the value) in a DexRegisterMap.
82 // kind, 4 bytes for the value).
101 sizeof(Kind) == 1u,
102 "art::DexRegisterLocation::Kind has a size different from one byte.");
104 static bool IsShortLocationKind(Kind kind) {
105 switch (kind) {
203 DexRegisterLocation::Kind kind = ComputeCompressedKind(dex_register_location); local
244 DexRegisterLocation::Kind kind = ExtractKindAtOffset(offset); local
272 DexRegisterLocation::Kind kind = ExtractKindFromShortLocation(first_byte); local
294 DexRegisterLocation::Kind kind = location.GetInternalKind(); local
328 DexRegisterLocation::Kind kind = location.GetInternalKind(); local
408 uint8_t kind = (location >> kKindOffset) & kKindMask; local
1299 DexRegisterLocation::Kind kind = local
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 494 kind = TokenKind(value, name)
495 TokenKind._value_map[value] = kind
496 setattr(TokenKind, name, kind)
527 """Get the enumeration name of this cursor kind."""
538 raise ValueError,'Unknown template argument kind %d' % id
547 A CursorKind describes the kind of entity that a cursor points to.
560 """Test if this is a declaration kind."""
564 """Test if this is a reference kind."""
568 """Test if this is an expression kind."""
572 """Test if this is a statement kind.""
1223 def kind(self): member in class:Cursor
1732 def kind(self): member in class:Type
2045 def kind(self): member in class:CompletionChunk
2153 def kind(self): member in class:CodeCompletionResult
2812 def kind(self): member in class:Token
    [all...]
  /external/clang/include/clang/AST/
Comment.h 65 unsigned Kind : 8;
188 #define COMMENT(CLASS, PARENT) CLASS##Kind,
190 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind,
192 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind
201 CommentBits.Kind = K;
205 return static_cast<CommentKind>(CommentBits.Kind);
1014 /// A simplified description of \c CommentDecl kind that should be good enough
1055 /// What kind of template specialization \c CommentDecl is
    [all...]
DeclBase.h 82 /// \brief Lists the kind of concrete classes of Decl.
83 enum Kind {
328 Decl(Kind DK, DeclContext *DC, SourceLocation L)
339 Decl(Kind DK, EmptyShell Empty)
382 Kind getKind() const { return static_cast<Kind>(DeclKind); }
683 static unsigned getIdentifierNamespaceForKind(Kind DK);
868 static void add(Kind k);
    [all...]
OpenMPClause.h 37 /// \brief Kind of the clause.
38 OpenMPClauseKind Kind;
42 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {}
55 /// \brief Returns kind of OpenMP clause (private, shared, reduction, etc.).
56 OpenMPClauseKind getClauseKind() const { return Kind; }
106 /// \param K Kind of the clause.
515 /// clause with kind 'shared'.
521 /// \brief A kind of the 'default' clause.
522 OpenMPDefaultClauseKind Kind;
523 /// \brief Start location of the kind in source code
    [all...]

Completed in 2743 milliseconds

1 2 3 4 5 6 7 891011>>