Home
last modified time | relevance | path

Searched refs:expr (Results 351 - 375 of 968) sorted by relevance

1...<<11121314151617181920>>...39

/third_party/skia/third_party/externals/libwebp/
H A Dgradlew31 link=`expr "$ls" : '.*-> \(.*\)$'`
32 if expr "$link" : '/.*' > /dev/null; then
157 i=`expr $i + 1`
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Drun-transhuge-test.sh41 failed_testcase=`expr $failed_testcase + 1`
65 executed_testcase=`expr $executed_testcase + 1`
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Drun-transhuge-test.sh41 failed_testcase=`expr $failed_testcase + 1`
65 executed_testcase=`expr $executed_testcase + 1`
/third_party/node/deps/v8/src/ast/
H A Dast-function-literal-id-reindexer.h44 void CheckVisited(Expression* expr);
46 void CheckVisited(Expression* expr) {} in CheckVisited() argument
/third_party/protobuf/src/google/protobuf/stubs/
H A Dmacros.h115 #define GOOGLE_COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
H A Dchecks.h285 #define DOUBLE_CONVERSION_ASSERT_RESULT(expr) CHECK(expr)
292 #define DOUBLE_CONVERSION_ASSERT_RESULT(expr) (expr)
/third_party/node/deps/v8/src/compiler/
H A Djs-graph.cc16 #define GET_CACHED_FIELD(ptr, expr) (*(ptr)) ? *(ptr) : (*(ptr) = (expr))
18 #define DEFINE_GETTER(name, expr) \
19 Node* JSGraph::name() { return GET_CACHED_FIELD(&name##_, expr); }
/third_party/rust/crates/clang-sys/src/
H A Dlink.rs11 $(#[doc=$doc:expr])*
38 $(#[doc=$doc:expr] #[cfg($cfg:meta)])*
99 ($fn:expr, $version:ident) => { in version()
253 $(#[doc=$doc:expr] #[cfg($cfg:meta)])*
/third_party/skia/third_party/externals/tint/src/transform/
H A Dfirst_index_offset.cc151 [=, &ctx](const ast::Expression* expr) -> const ast::Expression* { in Run()
152 if (auto* sem = ctx.src->Sem().Get(expr)) { in Run()
157 ctx.CloneWithoutTransform(expr), in Run()
165 ctx.CloneWithoutTransform(expr), in Run()
H A Ddecompose_memory_access.cc59 const ast::Expression* const expr = nullptr; member in tint::transform::__anon26116::OffsetExpr::ast
61 explicit OffsetExpr(const ast::Expression* e) : expr(e) {} in OffsetExpr()
64 auto* type = ctx.src->Sem().Get(expr)->Type()->UnwrapRef();
65 auto* res = ctx.Clone(expr);
330 /// @param expr the expression to convert to an Offset
332 const Offset* ToOffset(const ast::Expression* expr) { in ToOffset()
333 if (auto* u32 = expr->As<ast::UintLiteralExpression>()) { in ToOffset()
335 } else if (auto* i32 = expr->As<ast::SintLiteralExpression>()) { in ToOffset()
340 return offsets_.Create<OffsetExpr>(expr); in ToOffset()
411 /// AddAccess() adds the `expr
[all...]
/third_party/jinja2/
H A Dnodes.py914 fields = ("expr", "ops")
915 expr: Expr
920 result = value = self.expr.as_const(eval_ctx)
924 new_value = op.expr.as_const(eval_ctx)
940 fields = ("op", "expr")
942 expr: Expr
1084 fields = ("expr",)
1085 expr: Expr
1089 return Markup(self.expr.as_const(eval_ctx))
1099 fields = ("expr",)
[all...]
/third_party/python/Lib/test/
H A Dtest_tcl.py202 set c [ expr $a + $b ]
278 def check(expr, expected):
279 result = tcl.exprstring(expr)
312 def check(expr, expected):
313 result = tcl.exprdouble(expr)
343 def check(expr, expected):
344 result = tcl.exprlong(expr)
374 def check(expr, expected):
375 result = tcl.exprboolean(expr)
412 def check(expr, expecte
[all...]
H A Dtest_fstring.py71 expr = """
74 t = ast.parse(expr)
87 expr = """
90 t = ast.parse(expr)
118 expr = """
121 t = ast.parse(expr)
170 expr = """
173 t = ast.parse(expr)
215 expr = """
219 t = ast.parse(expr)
[all...]
/third_party/ffmpeg/libavfilter/
H A Dsetpts.c95 AVExpr *expr; member
105 if ((ret = av_expr_parse(&setpts->expr, setpts->expr_str, in init()
176 return av_expr_eval(setpts->expr, setpts->var_values, NULL); in eval_pts()
262 av_expr_free(setpts->expr); in uninit()
263 setpts->expr = NULL; in uninit()
273 { "expr", "Expression determining the frame timestamp", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "PTS" }, .flags = V|F },
312 { "expr", "Expression determining the frame timestamp", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "PTS" }, .flags = A|F },
/third_party/libuv/src/
H A Duv-common.h62 #define STATIC_ASSERT(expr) static_assert(expr, #expr)
64 #define STATIC_ASSERT(expr) \
65 void uv__static_assert(int static_assert_failed[1 - 2 * !(expr)])
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dbitcast_validation_test.cc34 builder::ast_expr_func_ptr expr; member
86 auto* cast = Bitcast(dst.ast(*this), src.expr(*this, 0)); in TEST_P()
121 WrapInFunction(Const("src", nullptr, src.expr(*this, 0)), cast); in TEST_P()
160 Bitcast(ty.type_name(Source{{12, 34}}, "T"), src.expr(*this, 0))); in TEST_P()
196 WrapInFunction(Bitcast(Source{{12, 34}}, dst.ast(*this), src.expr(*this, 0))); in TEST_P()
/third_party/selinux/libsepol/src/
H A Dkernel_to_cil.c31 static char *cond_expr_to_str(struct policydb *pdb, struct cond_expr *expr) in cond_expr_to_str() argument
44 for (curr = expr; curr != NULL; curr = curr->next) { in cond_expr_to_str()
121 static char *constraint_expr_to_str(struct policydb *pdb, struct constraint_expr *expr, int *use_mls) in constraint_expr_to_str() argument
137 for (curr = expr; curr; curr = curr->next) { in constraint_expr_to_str()
282 char *expr = NULL; in class_constraint_rules_to_strs() local
292 expr = constraint_expr_to_str(pdb, curr->expr, &is_mls); in class_constraint_rules_to_strs()
293 if (!expr) { in class_constraint_rules_to_strs()
308 rc = strs_create_and_add(strs, "(%s (%s (%s)) %s)", 4, key_word, classkey, perms+1, expr); in class_constraint_rules_to_strs()
309 free(expr); in class_constraint_rules_to_strs()
327 char *expr = NULL; class_validatetrans_rules_to_strs() local
2105 char *expr; global() member
2119 char *expr; write_cond_nodes_to_cil() local
[all...]
H A Dkernel_to_conf.c30 static char *cond_expr_to_str(struct policydb *pdb, struct cond_expr *expr) in cond_expr_to_str() argument
43 for (curr = expr; curr != NULL; curr = curr->next) { in cond_expr_to_str()
119 static char *constraint_expr_to_str(struct policydb *pdb, struct constraint_expr *expr, int *use_mls) in constraint_expr_to_str() argument
135 for (curr = expr; curr; curr = curr->next) { in constraint_expr_to_str()
279 char *perms, *expr; in class_constraint_rules_to_strs() local
287 expr = constraint_expr_to_str(pdb, curr->expr, &is_mls); in class_constraint_rules_to_strs()
288 if (!expr) { in class_constraint_rules_to_strs()
312 expr); in class_constraint_rules_to_strs()
313 free(expr); in class_constraint_rules_to_strs()
333 char *expr; class_validatetrans_rules_to_strs() local
2081 char *expr; global() member
2095 char *expr; write_cond_nodes_to_conf() local
[all...]
/third_party/python/Parser/
H A Daction_helpers.c244 _PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr) in _PyPegen_cmpop_expr_pair() argument
246 assert(expr != NULL); in _PyPegen_cmpop_expr_pair()
252 a->expr = expr; in _PyPegen_cmpop_expr_pair()
285 asdl_seq_SET(new_seq, i, pair->expr); in _PyPegen_get_exprs()
355 /* Creates an `expr_ty` equivalent to `expr` but with `ctx` as context */
357 _PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx) in _PyPegen_set_expr_context() argument
359 assert(expr != NULL); in _PyPegen_set_expr_context()
362 switch (expr->kind) { in _PyPegen_set_expr_context()
364 new = _set_name_context(p, expr, ct in _PyPegen_set_expr_context()
[all...]
/third_party/rust/crates/syn/src/gen/
H A Deq.rs389 self.attrs == other.attrs && self.label == other.label && self.expr == other.expr in eq()
409 self.attrs == other.attrs && self.expr == other.expr && self.ty == other.ty in eq()
465 && self.expr == other.expr && self.body == other.body in eq()
475 self.attrs == other.attrs && self.expr == other.expr in eq()
497 self.attrs == other.attrs && self.expr == other.expr in eq()
[all...]
/third_party/mesa3d/src/compiler/isaspec/
H A Ddecode.h55 * Used by generated expr functions
77 isa_expr_t expr; /* for virtual "derived" fields */ member
116 * A bitset consists of N "cases", with the last one (with case->expr==NULL)
124 isa_expr_t expr; member
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
H A DDebug.cpp68 AssertFail(const char *expr, in AssertFail() argument
73 DebugPrintf("%s:%u:%s: Assertion `%s' failed.\n", file, line, function, expr); in AssertFail()
/third_party/rust/crates/heck/src/
H A Dshouty_kebab.rs52 ($t:ident : $s1:expr => $s2:expr) => {
H A Dtitle.rs52 ($t:ident : $s1:expr => $s2:expr) => {
H A Dkebab.rs51 ($t:ident : $s1:expr => $s2:expr) => {

Completed in 18 milliseconds

1...<<11121314151617181920>>...39