/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | function.h | 978 /// @param expr a typed expression 980 TypedExpression InferFunctionStorageClass(TypedExpression expr); 1225 /// @param expr the expression to take the address of 1226 /// @returns a TypedExpression that is the address-of `expr` (`&expr`) 1227 /// @note `expr` must be a reference type 1228 TypedExpression AddressOf(TypedExpression expr); 1230 /// Returns AddressOf(expr) if expr is has reference type and 1231 /// the instruction has a pointer result type. Otherwise returns expr [all...] |
/third_party/rust/crates/memchr/src/memmem/ |
H A D | mod.rs | 89 ($fwd:expr, $rev:expr) => { 133 ($fwd:expr, $rev:expr) => {
|
/third_party/rust/crates/syn/src/gen/ |
H A D | fold.rs | 16 ($e:expr) => { 22 ($e:expr) => { 1342 expr: (node.expr).map(|it| Box::new(f.fold_expr(*it))), in fold_expr_break() 1366 expr: Box::new(f.fold_expr(*node.expr)), in fold_expr_cast() 1440 expr: Box::new(f.fold_expr(*node.expr)), in fold_expr_for_loop() 1453 expr: Box::new(f.fold_expr(*node.expr)), in fold_expr_group() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_dctdnoiz.c | 47 AVExpr *expr[MAX_THREADS]; member 84 { "expr", "set coefficient factor expression", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, 356 AVExpr *expr, double *var_values, \ 370 if (expr) { \ 372 *b *= av_expr_eval(expr, var_values, NULL); \ 396 s->expr[thread_id], s->var_values[thread_id], 0); \ 587 int ret = av_expr_parse(&s->expr[i], s->expr_str, var_names, in config_input() 799 av_expr_free(s->expr[i]); in uninit()
|
H A D | vf_rotate.c | 289 char *expr; in config_props() local 315 if ((ret = av_expr_parse(&rot->angle_expr, expr = rot->angle_expr_str, var_names, in config_props() 323 ret = av_expr_parse_and_eval(&res, expr = rot->name##_expr_str, \ in config_props() 330 opt_name, expr, res); \ in config_props() 336 av_expr_parse_and_eval(&res, expr = rot->outw_expr_str, var_names, rot->var_values, in config_props()
|
H A D | vf_eq.c | 137 static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx) in set_expr() argument 144 ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx); in set_expr() 148 expr, option); in set_expr()
|
H A D | af_volume.c | 93 static int set_expr(AVExpr **pexpr, const char *expr, void *log_ctx) in set_expr() argument 100 ret = av_expr_parse(pexpr, expr, var_names, in set_expr() 104 "Error when evaluating the volume expression '%s'\n", expr); in set_expr()
|
H A D | vf_delogo.c | 59 static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx) in set_expr() argument 66 ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx); in set_expr() 70 expr, option); in set_expr()
|
/third_party/jinja2/ |
H A D | parser.py | 228 expr = self.parse_tuple() 229 return nodes.Assign(target, expr, lineno=lineno) 565 expr = self.parse_math1() 583 return expr 584 return nodes.Compare(expr, ops, lineno=lineno) 872 def ensure(expr: bool) -> None: 873 if not expr:
|
/third_party/fsverity-utils/programs/ |
H A D | utils.h | 29 __cold __noreturn void assertion_failed(const char *expr,
|
/third_party/vk-gl-cts/execserver/ |
H A D | xsDefs.hpp | 68 Error (const char* message, const char* expr, const char* file, int line);
|
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | unary_op_expression_test.cc | 31 EXPECT_EQ(u->expr, ident); in TEST_F()
|
/third_party/rust/crates/regex/examples/ |
H A D | shootout-regex-dna.rs | 13 ($re:expr) => {
|
/third_party/rust/crates/regex/tests/ |
H A D | noparse.rs | 2 ($name:ident, $re:expr) => (
|
/third_party/selinux/libsepol/src/ |
H A D | expand.c | 323 constraint_expr_t *expr, *expr_l = NULL; in constraint_node_clone() local 331 for (expr = src->expr; expr; expr = expr->next) { in constraint_node_clone() 338 new_expr->expr_type = expr->expr_type; in constraint_node_clone() 339 new_expr->attr = expr->attr; in constraint_node_clone() 340 new_expr->op = expr->op; in constraint_node_clone() 348 if (map_ebitmap(&expr in constraint_node_clone() [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_build_ast.c | 1373 struct cil_list_item *expr = NULL; in cil_destroy_userattribute() local 1384 expr = attr->expr_list->head; in cil_destroy_userattribute() 1385 while (expr != NULL) { in cil_destroy_userattribute() 1386 next = expr->next; in cil_destroy_userattribute() 1387 cil_list_item_destroy(&expr, CIL_FALSE); in cil_destroy_userattribute() 1388 expr = next; in cil_destroy_userattribute() 2012 struct cil_list_item *expr = attr->expr_list->head; in cil_destroy_roleattribute() local 2013 while (expr != NULL) { in cil_destroy_roleattribute() 2014 struct cil_list_item *next = expr->next; in cil_destroy_roleattribute() 2015 cil_list_item_destroy(&expr, CIL_FALS in cil_destroy_roleattribute() 2451 struct cil_list_item *expr = attr->expr_list->head; cil_destroy_typeattribute() local 2605 __cil_fill_expr_helper(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list *expr) __cil_fill_expr_helper() argument 2635 __cil_fill_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list *expr) __cil_fill_expr() argument 2664 cil_gen_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list **expr) cil_gen_expr() argument 2785 __cil_fill_constraint_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list **expr) __cil_fill_constraint_expr() argument 2847 cil_gen_constraint_expr(struct cil_tree_node *current, enum cil_flavor flavor, struct cil_list **expr) cil_gen_constraint_expr() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-util.c | 807 int pa_match(const char *expr, const char *v) { in pa_match() argument 813 pa_assert(expr); in pa_match() 816 if (regcomp(&re, expr, REG_NOSUB|REG_EXTENDED) != 0) { in pa_match() 841 bool pa_is_regex_valid(const char *expr) { in pa_is_regex_valid() argument 845 if (expr == NULL || regcomp(&re, expr, REG_NOSUB|REG_EXTENDED) != 0) { in pa_is_regex_valid() 870 const char *expr; in pa_parse_boolean() local 872 if ((expr = nl_langinfo(YESEXPR))) in pa_parse_boolean() 873 if (expr[0]) in pa_parse_boolean() 874 if (pa_match(expr, in pa_parse_boolean() [all...] |
/third_party/node/tools/ |
H A D | test.py | 1068 def __init__(self, expr): 1070 self.expr = expr 1071 self.length = len(expr) 1076 return self.expr[self.index:self.index+length] 1216 def ParseCondition(expr): 1218 tokens = Tokenizer(expr).Tokenize() 1220 print("Malformed expression: '%s'" % expr) 1225 print("Malformed expression: '%s'" % expr) 1228 print("Malformed expression: '%s'" % expr) [all...] |
/third_party/rust/crates/serde/serde_derive_internals/src/ |
H A D | attr.rs | 1271 let expr = syn::ExprPath { in from_ast() 1276 deserialize_with.set_if_none(expr); in from_ast() 1288 let expr = syn::ExprPath { in from_ast() 1293 deserialize_with.set_if_none(expr); in from_ast() 1477 let expr: syn::Expr = meta.value()?.parse()?; in get_lit_str2() 1478 let mut value = &expr; in get_lit_str2() 1480 value = &e.expr; in get_lit_str2() 1497 expr, in get_lit_str2() 1540 Ok(expr) => Some(expr), in parse_lit_into_expr_path() [all...] |
/third_party/rust/crates/serde/serde_derive/src/internals/ |
H A D | attr.rs | 1271 let expr = syn::ExprPath { in from_ast() 1276 deserialize_with.set_if_none(expr); in from_ast() 1288 let expr = syn::ExprPath { in from_ast() 1293 deserialize_with.set_if_none(expr); in from_ast() 1477 let expr: syn::Expr = meta.value()?.parse()?; in get_lit_str2() 1478 let mut value = &expr; in get_lit_str2() 1480 value = &e.expr; in get_lit_str2() 1497 expr, in get_lit_str2() 1540 Ok(expr) => Some(expr), in parse_lit_into_expr_path() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | Mf2Serializer.java | 192 result.addLocalVariable(declaration.variableName, declaration.expr); in parseMessage() 294 declaration.expr = exprResult.resultValue; in parseDeclaration() 345 Expression expr; field in Mf2Serializer.Declaration
|
/third_party/mesa3d/src/intel/nullhw-layer/ |
H A D | intel_nullhw.c | 94 #define VK_CHECK(expr) \ 96 VkResult __result = (expr); \ 99 #expr, __LINE__, vk_Result_to_str(__result)); \
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
H A D | vktGlobalPriorityQueueUtils.cpp | 92 #define SAVEEXPR(expr, text, file, line) (text=#expr,file=__FILE__,line=__LINE__,expr)
|
/third_party/openssl/test/ |
H A D | cmp_msg_test.c | 69 #define EXECUTE_MSG_CREATION_TEST(expr) \ 73 TEST_ptr(msg = (expr)) && TEST_true(valid_asn1_encoding(msg)) : \ 74 TEST_ptr_null(msg = (expr)); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | thread.cpp | 71 #define CHECK_WIN32(expr) \ 73 auto res = expr; \ 75 MARL_ASSERT(res == TRUE, #expr " failed with error: %d", \
|