/third_party/skia/resources/sksl/es2_conformance/ |
D | import_conformance_tests.py | 47 value = pp.Group((pp.Keyword("input") | pp.Keyword("output") | pp.Keyword("uniform")) + 49 values = (pp.Keyword("values") + 54 expectation = (pp.Keyword("expect").suppress() + (pp.Keyword("compile_fail") | 55 pp.Keyword("pass"))) 57 code = ((pp.Keyword("both") + pp.QuotedString('""', multiline=True)) | 58 (pp.Keyword("vertex") + pp.QuotedString('""', multiline=True) + 59 pp.Keyword("fragment") + pp.QuotedString('""', multiline=True))) 61 reqGlsl100 = pp.Keyword("require").suppress() + pp.Keyword("full_glsl_es_100_support") 63 desc = pp.Keyword("desc") + pp.QuotedString('"') 64 version100es = pp.Keyword("version") + pp.Keyword("100") + pp.Keyword("es") [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 492 StringRef Keyword(StartChar, CurPtr - StartChar); in LexIdentifier() local 496 if (Keyword == #STR) \ in LexIdentifier() 812 if (Keyword == STR) { \ in LexIdentifier() 835 if (Keyword == #STR) { \ in LexIdentifier() 904 if (Keyword.startswith("DW_" #TYPE "_")) { \ in LexIdentifier() 905 StrVal.assign(Keyword.begin(), Keyword.end()); \ in LexIdentifier() 920 if (Keyword.startswith("DIFlag")) { in LexIdentifier() 921 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier() 925 if (Keyword.startswith("DISPFlag")) { in LexIdentifier() 926 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier() [all …]
|
/third_party/python/Doc/tools/extensions/ |
D | peg_highlight.py | 2 from pygments.token import Comment, Generic, Keyword, Name, Operator, Punctuation, Text 49 (r"'\w+?'", Keyword), 50 (r'"\w+?"', Keyword),
|
D | asdl_highlight.py | 9 from pygments.token import (Comment, Generic, Keyword, Name, Operator, 32 bygroups(Keyword, Text, Name.Tag),
|
/third_party/libxml2/os400/ |
D | xmllint.cmd | 39 CHOICE('Keyword') SPCVAL( + 74 CHOICE('Keyword') SPCVAL( + 95 CHOICE('Keyword') SPCVAL( +
|
/third_party/protobuf/editors/ |
D | proto.vim | 90 HiLink pbDefault Keyword 91 HiLink pbExtend Keyword 92 HiLink pbRPC Keyword
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/ |
D | main.go | 78 Keyword string // The keyword eg. MUST, ALGORITHM, ..., ie. Indicating why the rule is added member 252 "Keyword: " + r.Keyword, 264 r.Keyword, 482 Keyword: keyword, 537 Keyword: "ALGORITHM", 576 Keyword: "Nowrap",
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
D | class_with_inner_struct_1_0.hpp | 22 Keyword, // step-start and step-end enumerator
|
D | class_with_inner_struct.hpp | 22 Keyword, // step-start and step-end enumerator
|
/third_party/rust/crates/rust-cexpr/src/ |
D | token.rs | 16 Keyword, enumerator
|
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/ |
D | resume.go | 220 if o.AsRet().Keyword() == t.IDReturn { 407 switch n.Keyword() { 423 switch n.Keyword() {
|
D | statement.go | 287 if n.Keyword() == t.IDIOBind { 425 if n.Keyword() == t.IDBreak { 455 if n.Keyword() == t.IDYield {
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
D | bounds.go | 210 if o.AsRet().Keyword() == t.IDReturn { 292 if n.Keyword() == t.IDBreak { 296 if o.AsAssert().Keyword() == skip { 559 return n.AsRet().Keyword() == t.IDReturn 648 if o.AsAssert().Keyword() == t.IDPost { 675 if o.AsAssert().Keyword() == t.IDPost { 686 if o.AsAssert().Keyword() == t.IDPost { 701 if o.AsAssert().Keyword() == t.IDPost { 718 if o.AsAssert().Keyword() == t.IDPost { 731 if o.AsAssert().Keyword() == t.IDPre {
|
D | type.go | 96 n.Keyword().Str(q.tm), n.IO().Str(q.tm), typ.Str(q.tm)) 100 if n.Keyword() == t.IDIOLimit { 108 n.Keyword().Str(q.tm), n.Arg1().Str(q.tm), typ.Str(q.tm), arg1Typ.Str(q.tm)) 161 n.Keyword().Str(q.tm), sepStr, labelStr) 163 if n.Keyword() == t.IDBreak {
|
/third_party/selinux/secilc/docs/ |
D | theme.theme | 51 "Keyword": {
|
/third_party/rust/crates/nom/examples/ |
D | s_expression.rs | 38 Keyword(String), enumerator 115 |sym_str: &str| Atom::Keyword(sym_str.to_string()), in parse_keyword()
|
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/ |
D | ast.go | 387 func (n *Assert) Keyword() t.ID { return n.id0 } func 485 func (n *IOBind) Keyword() t.ID { return n.id0 } func 603 func (n *Ret) Keyword() t.ID { return n.id0 } func 623 func (n *Jump) Keyword() t.ID { return n.id0 } func
|
/third_party/ninja/misc/ |
D | ninja.vim | 75 hi def link ninjaKeyword Keyword
|
/third_party/gn/misc/vim/syntax/ |
D | gn.vim | 55 hi def link gnVariable Keyword
|
/third_party/jinja2/ |
D | nodes.py | 682 class Keyword(Helper): class 826 kwargs: t.List[Keyword] 1185 options: t.List[Keyword]
|
D | ext.py | 141 kwargs: t.Optional[t.List[nodes.Keyword]] = None, argument 559 node.kwargs.append(nodes.Keyword(key, value))
|
/third_party/rust/crates/rust-cexpr/tests/ |
D | clang.rs | 181 CXToken_Keyword => cexpr::token::Kind::Keyword, in token_clang_to_cexpr()
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | colorization.ts | 27 … string, position?: number) { return createClassification(text, ts.TokenClass.Keyword, position); }
|
/third_party/python/Doc/tutorial/ |
D | controlflow.rst | 612 Keyword Arguments 716 | - Keyword only 721 positional-only, positional-or-keyword, and keyword-only. Keyword parameters 725 Positional-or-Keyword Arguments 746 Keyword-Only Arguments
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource10.ts | 320 Keyword, enumerator 350 return TokenClass.Keyword;
|