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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/v8/src/
lithium.h 28 enum Kind {
40 Kind kind() const { return KindField::decode(value_); } function in class:v8::internal::LOperand
43 bool Is##name() const { return kind() == type; }
51 void ConvertTo(Kind kind, int index) {
52 value_ = KindField::encode(kind);
63 class KindField : public BitField<Kind, 0, kKindFieldWidth> { };
65 LOperand(Kind kind, int index) { ConvertTo(kind, index);
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 494 kind = TokenKind(value, name)
495 TokenKind._value_map[value] = kind
496 setattr(TokenKind, name, kind)
502 A CursorKind describes the kind of entity that a cursor points to.
505 # The unique kind objects, indexed by id.
523 """Get the enumeration name of this cursor kind."""
534 raise ValueError,'Unknown cursor kind %d' % id
543 """Test if this is a declaration kind."""
547 """Test if this is a reference kind."""
551 """Test if this is an expression kind.""
1162 def kind(self): member in class:Cursor
1648 def kind(self): member in class:Type
1946 def kind(self): member in class:CompletionChunk
2054 def kind(self): member in class:CodeCompletionResult
2713 def kind(self): member in class:Token
    [all...]
  /external/clang/include/clang/AST/
Comment.h 65 unsigned Kind : 8;
186 #define COMMENT(CLASS, PARENT) CLASS##Kind,
188 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind,
190 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind
199 CommentBits.Kind = K;
203 return static_cast<CommentKind>(CommentBits.Kind);
1012 /// A simplified description of \c CommentDecl kind that should be good enough
1053 /// What kind of template specialization \c CommentDecl is
    [all...]
DeclBase.h 73 /// \brief Lists the kind of concrete classes of Decl.
74 enum Kind {
314 Decl(Kind DK, DeclContext *DC, SourceLocation L)
325 Decl(Kind DK, EmptyShell Empty)
368 Kind getKind() const { return static_cast<Kind>(DeclKind); }
649 static unsigned getIdentifierNamespaceForKind(Kind DK);
825 static void add(Kind k);
927 /// friend declaration and, if so, what kind.
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 66 enum Kind {
86 : Position(nullptr), kind(None) {}
87 LengthModifier(const char *pos, Kind k)
88 : Position(pos), kind(k) {}
95 switch (kind) {
109 Kind getKind() const { return kind; }
110 void setKind(Kind k) { kind = k; }
116 Kind kind member in class:clang::analyze_format_string::LengthModifier
217 Kind kind; member in class:clang::analyze_format_string::ConversionSpecifier
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 55 enum Kind {
56 // main kind
60 // dtor kind
71 // The int bits are used to mark the kind.
75 CFGElement(Kind kind, const void *Ptr1, const void *Ptr2 = nullptr)
76 : Data1(const_cast<void*>(Ptr1), ((unsigned) kind) & 0x3),
77 Data2(const_cast<void*>(Ptr2), (((unsigned) kind) >> 2) & 0x3) {
78 assert(getKind() == kind);
107 Kind getKind() const
186 Kind kind = E.getKind(); local
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 64 tok::TokenKind Kind;
68 TokenValue(tok::TokenKind Kind) : Kind(Kind), II(nullptr) {
69 assert(Kind != tok::raw_identifier && "Raw identifiers are not supported.");
70 assert(Kind != tok::identifier &&
72 assert(!tok::isLiteral(Kind) && "Literals are not supported.");
73 assert(!tok::isAnnotation(Kind) && "Annotations are not supported.");
75 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {}
77 return Tok.getKind() == Kind &
    [all...]
  /external/clang/include/clang/Sema/
Initialization.h 43 /// \brief Specifies the kind of entity being initialized.
96 /// \brief The kind of entity being initialized.
97 EntityKind Kind;
110 /// \brief When Kind == EK_Result, EK_Exception, EK_New, the
112 /// respectively. When Kind == EK_Temporary, the location where
130 /// \brief When Kind == EK_Variable, or EK_Member, the VarDecl or
134 /// \brief When Kind == EK_RelatedResult, the ObjectiveC method where
138 /// \brief When Kind == EK_Parameter, the ParmVarDecl, with the
142 /// \brief When Kind == EK_Temporary or EK_CompoundLiteralInit, the type
148 /// \brief When Kind == EK_Base, the base specifier that provides the
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 80 enum Kind {
124 const Kind kind; member in class:clang::ento::MemRegion
127 MemRegion(Kind k) : kind(k) {}
184 Kind getKind() const { return kind; }
199 MemSpaceRegion(MemRegionManager *mgr, Kind k = GenericMemSpaceRegionKind)
212 Kind k = R->getKind();
220 GlobalsSpaceRegion(MemRegionManager *mgr, Kind k
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 257 DiagnosticsEngine::ArgumentKind Kind,
271 switch (Kind) {
458 DiffKind Kind;
502 : Kind(Invalid), NextNode(0), ChildNode(0), ParentNode(ParentNode),
584 void SetKind(DiffKind Kind) {
585 FlatTree[CurrentNode].Kind = Kind;
716 return FlatTree[ReadNode].Kind;
    [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 49 /// Returns the kind of memory used to back the memory buffer for
202 SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
213 Kind = Entries.back().FileKind;
217 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 42 /// getObjCKeywordID - Return the ObjC keyword kind.
    [all...]
ModuleMap.cpp 309 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ?
928 } Kind;
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 28 static int SelectDigraphErrorMessage(tok::TokenKind Kind) {
29 switch (Kind) {
52 Token &ColonToken, tok::TokenKind Kind, bool AtDigraph) {
62 << SelectDigraphErrorMessage(Kind)
355 // the right kind (it should name a type or be dependent), and then
794 LambdaCaptureKind Kind = LCK_ByCopy;
801 Kind = LCK_This;
805 Kind = LCK_ByRef;
    [all...]
ParseObjc.cpp 26 void Parser::MaybeSkipAttributes(tok::ObjCKeywordKind Kind) {
29 if (Kind == tok::objc_interface || Kind == tok::objc_protocol)
31 << (Kind == tok::objc_protocol);
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp 45 bool operator()(T Kind) {
47 if (KindEl == Kind)
366 OpenMPDirectiveKind Kind = getCurrentDirective();
367 if (!isOpenMPParallelDirective(Kind)) {
    [all...]
SemaTemplateInstantiate.cpp 186 switch (Kind) {
204 ActiveTemplateInstantiation::InstantiationKind Kind,
213 Inst.Kind = Kind;
264 ActiveTemplateInstantiation::InstantiationKind Kind,
269 Initialize(Kind, PointOfInstantiation, InstantiationRange,
420 switch (Active->Kind) {
592 switch(Active->Kind) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 48 enum Kind { // Reference to allocated memory.
62 unsigned K : 2; // Kind enum, but stored as a bitfield.
66 RefState(Kind k, const Stmt *s, unsigned family)
104 switch (static_cast<Kind>(K)) {
130 ReallocPairKind Kind;
133 ReallocatedSym(S), Kind(K) {}
135 ID.AddInteger(Kind);
140 Kind == X.Kind;
195 PointerEscapeKind Kind) const
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 43 enum Kind { Default = 0x0, Direct = 0x1 };
52 explicit BindingKey(const SubRegion *r, const SubRegion *Base, Kind k)
59 explicit BindingKey(const MemRegion *r, uint64_t offset, Kind k)
92 static BindingKey Make(const MemRegion *R, Kind k);
111 BindingKey BindingKey::Make(const MemRegion *R, Kind k) {
180 BindingKey::Kind k, SVal V) const;
188 const SVal *lookup(const MemRegion *R, BindingKey::Kind k) const;
196 BindingKey::Kind k);
257 BindingKey::Kind k,
270 BindingKey::Kind k) const
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/libvpx/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/libvpx/libwebm/
mkvparser.hpp 131 enum Kind { kBlockEOS, kBlockSimple, kBlockGroup };
132 virtual Kind GetKind() const = 0;
147 Kind GetKind() const;
167 Kind GetKind() const;
378 Kind GetKind() const;
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 542 unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary.
550 Kind = 0;
559 Kind = 1;
568 Kind = 2;
594 if (Kind && ArgNames.size() != Kind)
597 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]

Completed in 909 milliseconds

1 2 3 4 5 6 7 891011>>