HomeSort by relevance Sort by last modified time
    Searched refs:Keyword (Results 51 - 75 of 162) sorted by null

1 23 4 5 6 7

  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 473 return new Keyword(((Boolean)value).booleanValue()
635 else if (method instanceof Keyword) { // constructor
637 if (((Keyword)method).get() == SUPER)
962 public void atKeyword(Keyword k) throws CompileError {
    [all...]
CodeGen.java 258 Keyword k = (Keyword)mods.head();
310 if (target instanceof Keyword) {
311 int token = ((Keyword)target).get();
    [all...]
  /external/llvm/tools/llvm-pdbdump/
CompilandDumper.cpp 73 ? PDB_ColorItem::Keyword
  /external/clang/lib/AST/
Type.cpp     [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 537 assert(getLangOpts().DeclSpecKeyword && "__declspec keyword is not enabled");
918 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
921 if (Keyword == Ident_strict) {
924 << Keyword << SourceRange(StrictLoc);
930 if (Keyword == Ident_unavailable) {
    [all...]
  /external/libmojo/third_party/jinja2/
ext.py 375 node.kwargs.append(nodes.Keyword(key, value))
441 nodes.Keyword('autoescape', parser.parse_expression())
452 parameters as well as keyword arguments are returned as `None`. This
454 gettext functions that allow keyword arguments for placeholder expansion.
  /external/llvm/utils/vim/syntax/
llvm.vim 17 syn keyword llvmType void half float double x86_fp80 fp128 ppc_fp128
18 syn keyword llvmType label metadata x86_mmx
19 syn keyword llvmType type label opaque token
25 syn keyword llvmStatement add addrspacecast alloca and arcp ashr atomicrmw
26 syn keyword llvmStatement bitcast br call cmpxchg eq exact extractelement
27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext
28 syn keyword llvmStatement fptosi fptoui fptrunc free frem fsub getelementptr
29 syn keyword llvmStatement icmp inbounds indirectbr insertelement insertvalue
30 syn keyword llvmStatement inttoptr invoke landingpad load lshr malloc max min
31 syn keyword llvmStatement mul nand ne ninf nnan nsw nsz nuw oeq oge ogt ol
    [all...]
  /external/python/cpython2/Lib/plat-mac/
aetypes.py 127 class Keyword:
128 """An AE 4-char keyword object"""
130 def __init__(self, keyword):
131 self.keyword = "%-4.4s" % str(keyword)
134 return "Keyword(%r)" % repr(self.keyword)
137 return string.strip(self.keyword)
140 return pack(self.keyword, typeKeyword)
143 return isinstance(x, Keyword)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/vim/
llvm.vim 17 syn keyword llvmType void float double
18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add fadd sub fsub mul fmul
26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
27 syn keyword llvmStatement and or xor
28 syn keyword llvmStatement icmp fcmp
29 syn keyword llvmStatement eq ne ugt uge ult ule sgt sge slt sle
30 syn keyword llvmStatement oeq ogt oge olt ole one ord ueq ugt uge
31 syn keyword llvmStatement ult ule une uno
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
SemaInternal.h 134 void addKeywordResult(StringRef Keyword);
315 /// whether there is a keyword with this name.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
ScopeInfo.h 391 void setFirstCoroutineStmt(SourceLocation Loc, StringRef Keyword) {
395 FirstCoroutineStmtKind = llvm::StringSwitch<unsigned char>(Keyword)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincred.h 77 LPSTR Keyword;
84 LPWSTR Keyword;
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetypes.py 127 class Keyword:
128 """An AE 4-char keyword object"""
130 def __init__(self, keyword):
131 self.keyword = "%-4.4s" % str(keyword)
134 return "Keyword(%r)" % repr(self.keyword)
137 return string.strip(self.keyword)
140 return pack(self.keyword, typeKeyword)
143 return isinstance(x, Keyword)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 127 class Keyword:
128 """An AE 4-char keyword object"""
130 def __init__(self, keyword):
131 self.keyword = "%-4.4s" % str(keyword)
134 return "Keyword(%r)" % repr(self.keyword)
137 return string.strip(self.keyword)
140 return pack(self.keyword, typeKeyword)
143 return isinstance(x, Keyword)
    [all...]
  /external/clang/include/clang/Sema/
SemaInternal.h 134 void addKeywordResult(StringRef Keyword);
315 /// whether there is a keyword with this name.
  /external/clang/lib/Sema/
DeclSpec.cpp     [all...]
  /external/v8/src/
dateparser-inl.h 205 return DateToken::Keyword(KeywordTable::GetType(index),
dateparser.h 177 static DateToken Keyword(KeywordType tag, int value, int length) {
253 // Look up a word in the keyword table and return an index.
257 // Get the type of the keyword at index i.
261 // Get the value of the keyword at index i.

Completed in 1001 milliseconds

1 23 4 5 6 7