Home
last modified time | relevance | path

Searched refs:expr (Results 776 - 800 of 968) sorted by relevance

1...<<313233343536373839

/third_party/python/Lib/test/
H A Dtest_gettext.py469 for expr in invalid_expressions:
471 gettext.c2py(expr)
/third_party/rust/crates/syn/codegen/src/
H A Dparse.rs471 if let Expr::Lit(expr) = &attr.meta.require_name_value()?.value { in path_attr()
472 if let Lit::Str(lit) = &expr.lit { in path_attr()
/third_party/rust/crates/nom/src/
H A Dtraits.rs124 ($($N:expr)+) => {
1051 ($($N:expr)+) => {
/third_party/vk-gl-cts/framework/platform/lnx/X11/
H A DtcuLnxX11GlxPlatform.cpp75 static inline T checkGLX(T value, const char* expr, const char* file, int line) in checkGLX() argument
78 throw tcu::TestError("GLX call failed", expr, file, line); in checkGLX()
/third_party/icu/icu4c/source/
H A Dconfigure59 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
64 expr "X$arg" : "X\\(.*\\)$as_nl";
65 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
67 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
202 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
394 # must be portable across $(()) and expr.
403 as_val=`expr "$@" || test $? -eq 1`
424 if expr a : '\(a\)' >/dev/null 2>&1 &&
425 test "X`expr 00001 : '.*\(...\)'`" = X001; then
426 as_expr=expr
[all...]
/third_party/skia/third_party/externals/icu/source/
H A Dconfigure59 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
64 expr "X$arg" : "X\\(.*\\)$as_nl";
65 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
67 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
202 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
394 # must be portable across $(()) and expr.
403 as_val=`expr "$@" || test $? -eq 1`
424 if expr a : '\(a\)' >/dev/null 2>&1 &&
425 test "X`expr 00001 : '.*\(...\)'`" = X001; then
426 as_expr=expr
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dbuiltin_functions.cpp5764 body.emit(ret(expr(opcode, x))); in unop()
5795 body.emit(ret(expr(opcode, y, x))); in binop()
5797 body.emit(ret(expr(opcode, x, y))); in binop()
6040 body.emit(assign(t, expr(ir_unop_trunc, x))); in _modf()
6292 body.emit(ret(expr(ir_unop_pack_unorm_2x16, v))); in _packUnorm2x16()
6301 body.emit(ret(expr(ir_unop_pack_snorm_2x16, v))); in _packSnorm2x16()
6310 body.emit(ret(expr(ir_unop_pack_unorm_4x8, v))); in _packUnorm4x8()
6319 body.emit(ret(expr(ir_unop_pack_snorm_4x8, v))); in _packSnorm4x8()
6328 body.emit(ret(expr(ir_unop_unpack_unorm_2x16, p))); in _unpackUnorm2x16()
6337 body.emit(ret(expr(ir_unop_unpack_snorm_2x1 in _unpackSnorm2x16()
[all...]
H A Dlinker.cpp346 ir_expression *expr = (*rvalue)->as_expression(); in handle_rvalue()
347 if (expr) { in handle_rvalue()
348 if (expr->operation == ir_unop_implicitly_sized_array_length) { in handle_rvalue()
349 assert(!expr->operands[0]->type->is_unsized_array()); in handle_rvalue()
350 ir_constant *constant = new(expr) in handle_rvalue()
351 ir_constant(expr->operands[0]->type->array_size()); in handle_rvalue()
/third_party/typescript/lib/
H A Dtsserverlibrary.js5459 /// exports.name = expr
5460 /// module.exports.name = expr
5462 /// module.exports = expr
5464 /// className.prototype.name = expr
5466 /// this.name = expr
5468 // F.name = expr
[all...]
H A Dtypescript.js5450 /// exports.name = expr
5451 /// module.exports.name = expr
5453 /// module.exports = expr
5455 /// className.prototype.name = expr
5457 /// this.name = expr
5459 // F.name = expr
[all...]
H A DtypescriptServices.js5450 /// exports.name = expr
5451 /// module.exports.name = expr
5453 /// module.exports = expr
5455 /// className.prototype.name = expr
5457 /// this.name = expr
5459 // F.name = expr
[all...]
H A Dtsserver.js5460 /// exports.name = expr
5461 /// module.exports.name = expr
5463 /// module.exports = expr
5465 /// className.prototype.name = expr
5467 /// this.name = expr
5469 // F.name = expr
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_drawtext.c868 char *expr; in config_input() local
894 if ((ret = av_expr_parse(&s->x_pexpr, expr = s->x_expr, var_names, in config_input()
896 (ret = av_expr_parse(&s->y_pexpr, expr = s->y_expr, var_names, in config_input()
898 (ret = av_expr_parse(&s->a_pexpr, expr = s->a_expr, var_names, in config_input()
900 av_log(ctx, AV_LOG_ERROR, "Failed to parse expression: %s \n", expr); in config_input()
1136 "Expression '%s' for the expr text expansion function is not valid\n", in func_eval_expr()
1165 "Expression '%s' for the expr text expansion function is not valid\n", in func_eval_expr_int_format()
1198 av_log(ctx, AV_LOG_DEBUG, "Formatting value %f (expr '%s') with spec '%s'\n", in func_eval_expr_int_format()
1212 { "expr", 1, 1, 0, func_eval_expr },
H A Dvf_zscale.c252 char *expr; in config_props() local
270 av_expr_parse_and_eval(&res, (expr = s->w_expr), in config_props()
274 if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr), in config_props()
280 if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr), in config_props()
357 expr, s->w_expr, s->h_expr); in config_props()
/third_party/node/deps/v8/src/parsing/
H A Dpreparser.h576 PreParserExpression NewOptionalChain(const PreParserExpression& expr) { in NewOptionalChain() argument
578 if (expr.IsPrivateReference()) { in NewOptionalChain()
720 PreParserStatement NewExpressionStatement(const PreParserExpression& expr, in NewExpressionStatement() argument
722 return PreParserStatement::ExpressionStatement(expr); in NewExpressionStatement()
1336 V8_INLINE bool IsNative(const PreParserExpression& expr) const { in IsNative()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dresolver_validation.cc1352 auto* from = TypeOf(cast->expr)->UnwrapRef(); in ValidateBitcast()
1355 cast->expr->source); in ValidateBitcast()
1484 if (call_stmt->expr == call->Declaration()) { in ValidateIntrinsicCall()
1489 // https://gpuweb.github.io/gpuweb/wgsl/#function-call-expr in ValidateIntrinsicCall()
1628 unary->expr->As<ast::IdentifierExpression>()) { in ValidateFunctionCall()
1662 if (call_stmt->expr == call->Declaration()) { in ValidateFunctionCall()
1667 // https://gpuweb.github.io/gpuweb/wgsl/#function-call-expr in ValidateFunctionCall()
/third_party/eudev/
H A Dconfigure57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
62 expr "X$arg" : "X\\(.*\\)$as_nl";
63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
200 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
400 # must be portable across $(()) and expr.
409 as_val=`expr "$@" || test $? -eq 1`
430 if expr a : '\(a\)' >/dev/null 2>&1 &&
431 test "X`expr 00001 : '.*\(...\)'`" = X001; then
432 as_expr=expr
[all...]
/third_party/lame/
H A Dconfigure57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
62 expr "X$arg" : "X\\(.*\\)$as_nl";
63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
200 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
400 # must be portable across $(()) and expr.
409 as_val=`expr "$@" || test $? -eq 1`
430 if expr a : '\(a\)' >/dev/null 2>&1 &&
431 test "X`expr 00001 : '.*\(...\)'`" = X001; then
432 as_expr=expr
[all...]
/third_party/skia/third_party/externals/microhttpd/
H A Dconfigure57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
62 expr "X$arg" : "X\\(.*\\)$as_nl";
63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
200 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
400 # must be portable across $(()) and expr.
409 as_val=`expr "$@" || test $? -eq 1`
430 if expr a : '\(a\)' >/dev/null 2>&1 &&
431 test "X`expr 00001 : '.*\(...\)'`" = X001; then
432 as_expr=expr
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dmodule-instantiate.cc19 #include "src/wasm/init-expr-interface.h"
900 V8_INLINE WasmValue EvaluateInitExpression(Zone* zone, ConstantExpression expr, in EvaluateInitExpression() argument
904 switch (expr.kind()) { in EvaluateInitExpression()
908 return WasmValue(expr.i32_value()); in EvaluateInitExpression()
911 ValueType::Ref(expr.repr(), kNullable)); in EvaluateInitExpression()
913 uint32_t index = expr.index(); in EvaluateInitExpression()
920 WireBytesRef ref = expr.wire_bytes_ref(); in EvaluateInitExpression()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs272 ($s:ident, $code:expr, $name:ident, $str:expr, $iters:expr) => {
287 ($name:ident, $s:ident, $code:expr) => {
290 ($name:ident, $s:ident, $code:expr, $iters:expr) => {
963 ($($fname:ident, $type:ty, $count:expr, $init:expr);*) => {
1304 ($name: ident, $n: expr, $map: ident) => {
1329 ($name: ident, $n: expr,
[all...]
/third_party/ltp/testcases/network/stress/tcp/uni-basic/
H A Dtcp4-uni-basic01506 elapse_epoc=`expr $current_epoc - $start_epoc`
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dmod.rs223 pub expr: Option<Expr>,
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dmod.rs223 pub expr: Option<Expr>,
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dmod.rs223 pub expr: Option<Expr>,

Completed in 155 milliseconds

1...<<313233343536373839