Home
last modified time | relevance | path

Searched refs:idents (Results 1 – 6 of 6) sorted by relevance

/openbsd/gnu/llvm/lldb/examples/python/
H A Dcrashlog.py84 self.idents = list()
170 if ident not in self.idents:
171 self.idents.append(ident)
387 if self.idents:
388 for ident in self.idents:
535 if ident not in self.crashlog.idents:
536 self.crashlog.idents.append(ident)
835 if ident not in self.crashlog.idents:
836 self.crashlog.idents.append(ident)
1029 for ident in thread.idents:
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp308 static void RemoveCppKeyword(IdentifierTable &idents, llvm::StringRef token) { in RemoveCppKeyword() argument
322 clang::IdentifierInfo &ii = idents.get(token); in RemoveCppKeyword()
336 static void RemoveAllCppKeywords(IdentifierTable &idents) { in RemoveAllCppKeywords() argument
337 #define KEYWORD(NAME, FLAGS) RemoveCppKeyword(idents, llvm::StringRef(#NAME)); in RemoveAllCppKeywords()
H A DClangASTSource.cpp785 SmallVector<IdentifierInfo *, 4> idents; in FindObjCMethodDeclsWithOrigin() local
792 idents.push_back(&original_ctx->Idents.get(sel.getNameForSlot(i))); in FindObjCMethodDeclsWithOrigin()
796 original_ctx->Selectors.getSelector(num_args, idents.data()); in FindObjCMethodDeclsWithOrigin()
/openbsd/gnu/llvm/lldb/examples/python/scripted_process/
H A Dcrashlog_scripted_process.py45 for ident in thread.idents:
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DASTContext.h1148 ASTContext(LangOptions &LOpts, SourceManager &SM, IdentifierTable &idents,
/openbsd/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp947 IdentifierTable &idents, SelectorTable &sels, in ASTContext() argument
960 PrintingPolicy(LOpts), Idents(idents), Selectors(sels), in ASTContext()