/third_party/ffmpeg/libavfilter/ |
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/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", \
|
/third_party/python/Parser/ |
H A D | pegen.h | 85 expr_ty expr; member 242 #define UNUSED(expr) do { (void)(expr); } while (0)
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | text_format_test.py | 465 except e_class as expr: 466 if str(expr) != e: 469 str(expr).encode('string_escape'),
|
/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...] |
H A D | core-util.h | 165 int pa_match(const char *expr, const char *v); 166 bool pa_is_regex_valid(const char *expr);
|
/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...] |
/kernel/linux/linux-5.10/arch/um/include/shared/ |
H A D | os.h | 16 #define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR))
|
/kernel/linux/linux-6.6/arch/um/include/shared/ |
H A D | os.h | 21 #define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR))
|
/kernel/linux/linux-5.10/scripts/genksyms/ |
H A D | parse.y | 478 struct string_list *expr = copy_list_range(*$3, *$2); 479 add_symbol(name, SYM_ENUM_CONST, expr, 0);
|
/kernel/linux/linux-6.6/kernel/events/ |
H A D | hw_breakpoint_test.c | 23 #define TEST_EXPECT_NOSPC(expr) KUNIT_EXPECT_EQ(test, -ENOSPC, PTR_ERR(expr))
|
/kernel/linux/linux-6.6/scripts/genksyms/ |
H A D | parse.y | 481 struct string_list *expr = copy_list_range(*$3, *$2); 482 add_symbol(name, SYM_ENUM_CONST, expr, 0);
|
/third_party/ffmpeg/libavresample/tests/ |
H A D | avresample.c | 41 #define PUT_FUNC(name, fmt, type, expr) \ 46 type v = expr; \
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | lower_int64.cpp | 222 expr(unpack_opcode, swizzle(temp, i, 1)))); in expand_source() 246 expr(pack_opcode, result[i]), in compact_destination()
|
/third_party/node/deps/uv/src/ |
H A D | uv-common.h | 60 #define STATIC_ASSERT(expr) \ 61 void uv__static_assert(int static_assert_failed[1 - 2 * !(expr)])
|
/third_party/libabigail/include/ |
H A D | abg-ini.h | 456 function_call_expr_sptr& expr); 460 function_call_expr_sptr& expr);
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLType.h | 509 std::unique_ptr<Expression> coerceExpression(std::unique_ptr<Expression> expr, 513 bool checkForOutOfRangeLiteral(const Context& context, const Expression& expr) const;
|