| /external/llvm/utils/emacs/ |
| D | tablegen-mode.el | 50 ;; ---------------------- Syntax table --------------------------- 54 (defvar tablegen-mode-syntax-table nil 55 "Syntax table used in `tablegen-mode' buffers.") 56 (when (not tablegen-mode-syntax-table) 57 (setq tablegen-mode-syntax-table (make-syntax-table)) 59 (modify-syntax-entry ?\ " " tablegen-mode-syntax-table) 60 (modify-syntax-entry ?\t " " tablegen-mode-syntax-table) 61 (modify-syntax-entry ?\r " " tablegen-mode-syntax-table) 62 (modify-syntax-entry ?\n " " tablegen-mode-syntax-table) 63 (modify-syntax-entry ?\f " " tablegen-mode-syntax-table) [all …]
|
| /external/starlark-go/internal/compile/ |
| D | compile.go | 40 "go.starlark.net/syntax" 328 Pos syntax.Position // position of def or lambda token 355 Pos syntax.Position 372 pos syntax.Position // current position of generated code 404 func (fn *Funcode) Position(pc uint32) syntax.Position { 486 func Expr(expr syntax.Expr, name string, locals []*resolve.Binding) *Program { 487 pos := syntax.Start(expr) 488 stmts := []syntax.Stmt{&syntax.ReturnStmt{Result: expr}} 493 func File(stmts []syntax.Stmt, pos syntax.Position, name string, locals, globals []*resolve.Binding… 507 func (pcomp *pcomp) function(name string, pos syntax.Position, stmts []syntax.Stmt, locals, freevar… [all …]
|
| /external/rust/crates/protobuf/src/reflect/file/ |
| D | syntax.rs | 3 /// `.proto` file syntax. 5 pub enum Syntax { enum 6 /// `syntax = "proto2"`. 8 /// `syntax = "proto3"`. 12 impl Syntax { impl 13 pub(crate) fn parse(syntax: &str) -> Option<Syntax> { in parse() argument 14 match syntax { in parse() 15 "" | "proto2" => Some(Syntax::Proto2), in parse() 16 "proto3" => Some(Syntax::Proto3), in parse() 21 pub(crate) fn of_file(file: &FileDescriptorProto) -> Syntax { in of_file() argument [all …]
|
| /external/selinux/libsepol/cil/src/ |
| D | cil_build_ast.c | 63 enum cil_syntax syntax[] = { in cil_fill_list() enum 67 size_t syntax_len = sizeof(syntax)/sizeof(*syntax); in cil_fill_list() 69 rc = __cil_verify_syntax(current, syntax, syntax_len); in cil_fill_list() 191 enum cil_syntax syntax[] = { in cil_gen_block() enum 197 size_t syntax_len = sizeof(syntax)/sizeof(*syntax); in cil_gen_block() 211 rc = __cil_verify_syntax(parse_current, syntax, syntax_len); in cil_gen_block() 268 enum cil_syntax syntax[] = { in cil_gen_blockinherit() enum 273 size_t syntax_len = sizeof(syntax)/sizeof(*syntax); in cil_gen_blockinherit() 286 rc = __cil_verify_syntax(parse_current, syntax, syntax_len); in cil_gen_blockinherit() 330 enum cil_syntax syntax[] = { in cil_gen_blockabstract() enum [all …]
|
| /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
| D | ExpressionEvaluator.java | 22 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 23 import com.google.clearsilver.jsilver.syntax.node.AAddExpression; 24 import com.google.clearsilver.jsilver.syntax.node.AAndExpression; 25 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression; 26 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable; 27 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression; 28 import com.google.clearsilver.jsilver.syntax.node.AEqExpression; 29 import com.google.clearsilver.jsilver.syntax.node.AExistsExpression; 30 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression; 31 import com.google.clearsilver.jsilver.syntax.node.AGtExpression; [all …]
|
| /external/google-cloud-java/java-cloudbuild/proto-google-cloud-build-v1/src/main/java/com/google/cloudbuild/v1/ |
| D | PushFilterOrBuilder.java | 31 * The syntax of the regular expressions accepted is the syntax accepted by 32 * RE2 and described at https://github.com/google/re2/wiki/Syntax 45 * The syntax of the regular expressions accepted is the syntax accepted by 46 * RE2 and described at https://github.com/google/re2/wiki/Syntax 59 * The syntax of the regular expressions accepted is the syntax accepted by 60 * RE2 and described at https://github.com/google/re2/wiki/Syntax 74 * The syntax of the regular expressions accepted is the syntax accepted by 75 * RE2 and described at https://github.com/google/re2/wiki/Syntax 88 * The syntax of the regular expressions accepted is the syntax accepted by 89 * RE2 and described at https://github.com/google/re2/wiki/Syntax [all …]
|
| D | PushFilter.java | 121 * The syntax of the regular expressions accepted is the syntax accepted by 122 * RE2 and described at https://github.com/google/re2/wiki/Syntax 137 * The syntax of the regular expressions accepted is the syntax accepted by 138 * RE2 and described at https://github.com/google/re2/wiki/Syntax 166 * The syntax of the regular expressions accepted is the syntax accepted by 167 * RE2 and described at https://github.com/google/re2/wiki/Syntax 197 * The syntax of the regular expressions accepted is the syntax accepted by 198 * RE2 and described at https://github.com/google/re2/wiki/Syntax 213 * The syntax of the regular expressions accepted is the syntax accepted by 214 * RE2 and described at https://github.com/google/re2/wiki/Syntax [all …]
|
| /external/starlark-go/resolve/ |
| D | resolve.go | 6 // syntax trees. 9 // the LocalIndex field of each syntax.Ident that refers to a local or 91 "go.starlark.net/syntax" 126 func File(file *syntax.File, isPredeclared, isUniversal func(name string) bool) error { 132 func REPLChunk(file *syntax.File, isGlobal, isPredeclared, isUniversal func(name string) bool) erro… 158 func Expr(expr syntax.Expr, isPredeclared, isUniversal func(name string) bool) ([]*Binding, error) { 176 Pos syntax.Position 249 comp *syntax.Comprehension // only for comprehension blocks 284 func (r *resolver) errorf(posn syntax.Position, format string, args ...interface{}) { 290 id *syntax.Ident [all …]
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
| D | TypeResolver.java | 17 package com.google.clearsilver.jsilver.syntax; 19 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 20 import com.google.clearsilver.jsilver.syntax.node.AAddExpression; 21 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression; 22 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression; 23 import com.google.clearsilver.jsilver.syntax.node.AEqExpression; 24 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression; 25 import com.google.clearsilver.jsilver.syntax.node.AHexExpression; 26 import com.google.clearsilver.jsilver.syntax.node.AModuloExpression; 27 import com.google.clearsilver.jsilver.syntax.node.AMultiplyExpression; [all …]
|
| D | DataCommandConsolidator.java | 17 package com.google.clearsilver.jsilver.syntax; 19 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 20 import com.google.clearsilver.jsilver.syntax.node.AAltCommand; 21 import com.google.clearsilver.jsilver.syntax.node.ACallCommand; 22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand; 23 import com.google.clearsilver.jsilver.syntax.node.ADefCommand; 24 import com.google.clearsilver.jsilver.syntax.node.AEachCommand; 25 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand; 26 import com.google.clearsilver.jsilver.syntax.node.AHardIncludeCommand; 27 import com.google.clearsilver.jsilver.syntax.node.AHardLincludeCommand; [all …]
|
| D | AutoEscaper.java | 17 package com.google.clearsilver.jsilver.syntax; 22 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 23 import com.google.clearsilver.jsilver.syntax.node.AAltCommand; 24 import com.google.clearsilver.jsilver.syntax.node.AAutoescapeCommand; 25 import com.google.clearsilver.jsilver.syntax.node.ACallCommand; 26 import com.google.clearsilver.jsilver.syntax.node.AContentTypeCommand; 27 import com.google.clearsilver.jsilver.syntax.node.ACsOpenPosition; 28 import com.google.clearsilver.jsilver.syntax.node.ADataCommand; 29 import com.google.clearsilver.jsilver.syntax.node.ADefCommand; 30 import com.google.clearsilver.jsilver.syntax.node.AEscapeCommand; [all …]
|
| /external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
| D | EscapingEvaluator.java | 22 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 23 import com.google.clearsilver.jsilver.syntax.node.AAddExpression; 24 import com.google.clearsilver.jsilver.syntax.node.AAndExpression; 25 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression; 26 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable; 27 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression; 28 import com.google.clearsilver.jsilver.syntax.node.AEqExpression; 29 import com.google.clearsilver.jsilver.syntax.node.AExistsExpression; 30 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression; 31 import com.google.clearsilver.jsilver.syntax.node.AGtExpression; [all …]
|
| D | ExpressionTranslator.java | 27 import com.google.clearsilver.jsilver.syntax.analysis.DepthFirstAdapter; 28 import com.google.clearsilver.jsilver.syntax.node.AAddExpression; 29 import com.google.clearsilver.jsilver.syntax.node.AAndExpression; 30 import com.google.clearsilver.jsilver.syntax.node.ADecimalExpression; 31 import com.google.clearsilver.jsilver.syntax.node.ADescendVariable; 32 import com.google.clearsilver.jsilver.syntax.node.ADivideExpression; 33 import com.google.clearsilver.jsilver.syntax.node.AEqExpression; 34 import com.google.clearsilver.jsilver.syntax.node.AExistsExpression; 35 import com.google.clearsilver.jsilver.syntax.node.AFunctionExpression; 36 import com.google.clearsilver.jsilver.syntax.node.AGtExpression; [all …]
|
| /external/jsoup/src/test/java/org/jsoup/nodes/ |
| D | DataNodeTest.java | 16 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputScriptWithCData() 25 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputScriptWithoutCData() 34 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputStyleWithCData() 43 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputStyleWithoutCData() 52 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputOtherWithCData() 61 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputOtherWithoutCData() 69 …ode.outerHtmlHead(accum, 0, new Document.OutputSettings().syntax(Document.OutputSettings.Syntax.xm… in xmlOutputOrphanWithoutCData()
|
| /external/google-cloud-java/java-functions/proto-google-cloud-functions-v2/src/main/java/com/google/cloud/functions/v2/ |
| D | RepoSourceOrBuilder.java | 31 * The syntax of the regular expressions accepted is the syntax accepted by 32 * RE2 and described at https://github.com/google/re2/wiki/Syntax 45 * The syntax of the regular expressions accepted is the syntax accepted by 46 * RE2 and described at https://github.com/google/re2/wiki/Syntax 59 * The syntax of the regular expressions accepted is the syntax accepted by 60 * RE2 and described at https://github.com/google/re2/wiki/Syntax 74 * The syntax of the regular expressions accepted is the syntax accepted by 75 * RE2 and described at https://github.com/google/re2/wiki/Syntax 88 * The syntax of the regular expressions accepted is the syntax accepted by 89 * RE2 and described at https://github.com/google/re2/wiki/Syntax [all …]
|
| /external/google-cloud-java/java-functions/proto-google-cloud-functions-v2alpha/src/main/java/com/google/cloud/functions/v2alpha/ |
| D | RepoSourceOrBuilder.java | 31 * The syntax of the regular expressions accepted is the syntax accepted by 32 * RE2 and described at https://github.com/google/re2/wiki/Syntax 45 * The syntax of the regular expressions accepted is the syntax accepted by 46 * RE2 and described at https://github.com/google/re2/wiki/Syntax 59 * The syntax of the regular expressions accepted is the syntax accepted by 60 * RE2 and described at https://github.com/google/re2/wiki/Syntax 74 * The syntax of the regular expressions accepted is the syntax accepted by 75 * RE2 and described at https://github.com/google/re2/wiki/Syntax 88 * The syntax of the regular expressions accepted is the syntax accepted by 89 * RE2 and described at https://github.com/google/re2/wiki/Syntax [all …]
|
| /external/google-cloud-java/java-functions/proto-google-cloud-functions-v2beta/src/main/java/com/google/cloud/functions/v2beta/ |
| D | RepoSourceOrBuilder.java | 31 * The syntax of the regular expressions accepted is the syntax accepted by 32 * RE2 and described at https://github.com/google/re2/wiki/Syntax 45 * The syntax of the regular expressions accepted is the syntax accepted by 46 * RE2 and described at https://github.com/google/re2/wiki/Syntax 59 * The syntax of the regular expressions accepted is the syntax accepted by 60 * RE2 and described at https://github.com/google/re2/wiki/Syntax 74 * The syntax of the regular expressions accepted is the syntax accepted by 75 * RE2 and described at https://github.com/google/re2/wiki/Syntax 88 * The syntax of the regular expressions accepted is the syntax accepted by 89 * RE2 and described at https://github.com/google/re2/wiki/Syntax [all …]
|
| /external/pdfium/core/fpdfdoc/ |
| D | cpdf_defaultappearance.cpp | 74 CPDF_SimpleParser syntax(m_csDA.AsStringView().raw_span()); in GetFont() local 75 if (FindTagParamFromStart(&syntax, "Tf", 2)) { in GetFont() 76 csFontNameTag = ByteString(syntax.GetWord()); in GetFont() 78 *fFontSize = StringToFloat(syntax.GetWord()); in GetFont() 87 CPDF_SimpleParser syntax(m_csDA.AsStringView().raw_span()); in GetColor() local 88 if (FindTagParamFromStart(&syntax, "g", 1)) { in GetColor() 89 float gray = StringToFloat(syntax.GetWord()); in GetColor() 92 if (FindTagParamFromStart(&syntax, "rg", 3)) { in GetColor() 93 float r = StringToFloat(syntax.GetWord()); in GetColor() 94 float g = StringToFloat(syntax.GetWord()); in GetColor() [all …]
|
| /external/rust/crates/ciborium/tests/ |
| D | error.rs | 12 case("1e", Error::Syntax(0)), 15 case("1f", Error::Syntax(0)), 18 case("83011f03", Error::Syntax(2)), 21 case("7F616101FF", Error::Syntax(3)), 24 case("7F61614101FF", Error::Syntax(3)), 27 case("62C328", Error::Syntax(0)), 30 case("7F62C328FF", Error::Syntax(1)), 37 Error::Syntax(x) => ("syntax", Some(x), None), in test() 45 Error::Syntax(x) => ("syntax", Some(x), None), in test()
|
| /external/protobuf/php/src/Google/Protobuf/ |
| D | Enum.php | 43 * The source syntax. 45 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> 47 protected $syntax = 0; variable in Google\\Protobuf\\Enum 63 * @type int $syntax 64 * The source syntax. 187 * The source syntax. 189 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> 194 return $this->syntax; 198 * The source syntax. 200 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> [all …]
|
| /external/cronet/third_party/protobuf/php/src/Google/Protobuf/ |
| D | Enum.php | 43 * The source syntax. 45 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> 47 protected $syntax = 0; variable in Google\\Protobuf\\Enum 63 * @type int $syntax 64 * The source syntax. 187 * The source syntax. 189 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> 194 return $this->syntax; 198 * The source syntax. 200 * Generated from protobuf field <code>.google.protobuf.Syntax syntax = 5;</code> [all …]
|
| /external/sdv/vsomeip/third_party/boost/regex/doc/ |
| D | syntax.qbk | 9 [section:syntax Regular Expression Syntax] 11 This section covers the regular expression syntax used by this library, 12 this is a programmers guide, the actual syntax presented to your program's 15 There are three main syntax options available, depending upon how you 18 * [link boost_regex.syntax.perl_syntax Perl (this is the default behavior)]. 19 * [link boost_regex.syntax.basic_extended POSIX extended (including the egrep and awk variations)]. 20 * [link boost_regex.syntax.basic_syntax POSIX Basic (including the grep and emacs variations)]. 23 literal, but that's not really a "syntax"!
|
| /external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| D | StructuralMessageInfo.java | 46 private final ProtoSyntax syntax; field in StructuralMessageInfo 59 ProtoSyntax syntax, in StructuralMessageInfo() argument 64 this.syntax = syntax; in StructuralMessageInfo() 71 /** Gets the syntax for the message (e.g. PROTO2, PROTO3). */ 74 return syntax; in getSyntax() 114 private ProtoSyntax syntax; field in StructuralMessageInfo.Builder 132 public void withSyntax(ProtoSyntax syntax) { in withSyntax() argument 133 this.syntax = checkNotNull(syntax, "syntax"); in withSyntax() 155 if (syntax == null) { in build() 156 throw new IllegalStateException("Must specify a proto syntax"); in build() [all …]
|
| /external/protobuf/java/core/src/main/java/com/google/protobuf/ |
| D | StructuralMessageInfo.java | 46 private final ProtoSyntax syntax; field in StructuralMessageInfo 59 ProtoSyntax syntax, in StructuralMessageInfo() argument 64 this.syntax = syntax; in StructuralMessageInfo() 71 /** Gets the syntax for the message (e.g. PROTO2, PROTO3). */ 74 return syntax; in getSyntax() 114 private ProtoSyntax syntax; field in StructuralMessageInfo.Builder 132 public void withSyntax(ProtoSyntax syntax) { in withSyntax() argument 133 this.syntax = checkNotNull(syntax, "syntax"); in withSyntax() 155 if (syntax == null) { in build() 156 throw new IllegalStateException("Must specify a proto syntax"); in build() [all …]
|
| /external/starlark-go/ |
| D | Android.bp | 42 "go-starlark-syntax", 62 "go-starlark-syntax", 67 name: "go-starlark-syntax", 68 pkgPath: "go.starlark.net/syntax", 70 "syntax/parse.go", 71 "syntax/quote.go", 72 "syntax/scan.go", 73 "syntax/syntax.go", 74 "syntax/walk.go", 98 "go-starlark-syntax", [all …]
|