/third_party/python/Lib/distutils/ |
H A D | versionpredicate.py | 109 self.name, paren = match.groups() 110 paren = paren.strip() 111 if paren: 112 match = re_paren.match(paren) 114 raise ValueError("expected parenthesized list: %r" % paren)
|
/third_party/toybox/toys/posix/ |
H A D | test.c | 94 int pos, paren, pstack, result = 0; in test_main() local 102 if (toys.optc) for (pos = paren = pstack = 0; ; pos++) { in test_main() 118 if (++paren>9) perror_exit("bad ("); in test_main() 135 if (!paren || !s || strcmp(")", s)) break; in test_main() 136 paren--; in test_main() 143 if (paren) perror_exit("need )"); in test_main()
|
/third_party/python/Lib/test/ |
H A D | test_syntax.py | 2117 for paren in "([{": 2118 self._check_error(paren + "1 + 2", f"\\{paren}' was never closed") 2120 for paren in "([{": 2121 self._check_error(f"a = {paren} 1, 2, 3\nb=3", f"\\{paren}' was never closed") 2123 for paren in ")]}": 2124 self._check_error(paren + "1 + 2", f"unmatched '\\{paren}'")
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-debug.hh | 113 const char *paren = strchr (func, '('); in _hb_print_func() local 114 if (paren) in _hb_print_func() 115 func_len = paren - func; in _hb_print_func()
|
/third_party/rust/crates/syn/src/ |
H A D | mac.rs | 195 MacroDelimiter::Paren(paren) => (Delimiter::Parenthesis, paren.span),
|
H A D | generics.rs | 1168 Some(paren) => paren.surround(tokens, to_tokens), in to_tokens()
|
H A D | item.rs | 3105 MacroDelimiter::Paren(paren) => { in to_tokens() 3106 paren.surround(tokens, |tokens| self.mac.tokens.to_tokens(tokens)); in to_tokens()
|
/third_party/rust/crates/syn/tests/ |
H A D | test_precedence.rs | 480 if let Expr::Paren(paren) = expr { in make_parens_invisible() 482 attrs: paren.attrs, in make_parens_invisible() 483 group_token: token::Group(paren.paren_token.span.join()), in make_parens_invisible() 484 expr: paren.expr, in make_parens_invisible()
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | MacroExpander.cpp | 130 bool paren = false; in lex() local 134 paren = true; in lex() 146 if (paren) in lex()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
H A D | MacroExpander.cpp | 136 bool paren = false; in lex() local 140 paren = true; in lex() 152 if (paren) in lex()
|
H A D | DirectiveParser.cpp | 168 bool paren = false; 172 paren = true; 185 if (paren)
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | cgcc | 130 return 1 if $arg =~ /^-W(no-?)?(address-space|bitwise|cast-to-as|cast-truncate|constant-suffix|context|decl|default-bitfield-sign|designated-init|do-while|enum-mismatch|external-function-has-definition|init-cstring|memcpy-max-count|non-pointer-null|old-initializer|one-bit-signed-bitfield|override-init-all|paren-string|ptr-subtraction-blows|return-void|sizeof-bool|sparse-all|sparse-error|transparent-union|typesign|undef|unknown-attribute)$/;
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | generator.py | 842 paren = '(' in strVal 851 if paren:
|
/third_party/vulkan-headers/registry/ |
H A D | generator.py | 842 paren = '(' in strVal 851 if paren:
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl.cc | 159 int paren = 0; // ( ) member 177 return paren++; in consume() 179 return paren--; in consume() 2173 auto paren = expect_paren_rhs_stmt(); 2174 if (paren.errored) { 2178 return paren.value;
|
/third_party/curl/lib/vtls/ |
H A D | vtls.c | 1405 bool paren = (selected != available_backends[i]); in multissl_version() local 1409 (paren ? "(" : ""), vb, (paren ? ")" : "")); in multissl_version()
|
/third_party/toybox/toys/pending/ |
H A D | bc.c | 3497 int paren; in bc_parse_return() local 3508 paren = t == BC_LEX_LPAREN; in bc_parse_return() 3521 if (!paren || p->l.last != BC_LEX_RPAREN) { in bc_parse_return()
|
/third_party/skia/third_party/externals/tint/src/writer/glsl/ |
H A D | generator_impl.cc | 707 ScopedParen paren(out); in EmitSelectCall()
|
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
H A D | generator_impl.cc | 1679 ScopedParen paren(out); in EmitSelectCall()
|