Home
last modified time | relevance | path

Searched refs:expr (Results 926 - 950 of 1373) sorted by relevance

1...<<31323334353637383940>>...55

/third_party/ffmpeg/libavfilter/
H A Daf_volume.c93 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 Dvf_delogo.c59 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 DMf2Serializer.java192 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 Dintel_nullhw.c94 #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 DvktGlobalPriorityQueueUtils.cpp92 #define SAVEEXPR(expr, text, file, line) (text=#expr,file=__FILE__,line=__LINE__,expr)
/third_party/openssl/test/
H A Dcmp_msg_test.c69 #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 Dthread.cpp71 #define CHECK_WIN32(expr) \
73 auto res = expr; \
75 MARL_ASSERT(res == TRUE, #expr " failed with error: %d", \
/third_party/python/Parser/
H A Dpegen.h85 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 Dtext_format_test.py465 except e_class as expr:
466 if str(expr) != e:
469 str(expr).encode('string_escape'),
/third_party/selinux/libsepol/cil/src/
H A Dcil_build_ast.c1373 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 Dcore-util.c807 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 Dcore-util.h165 int pa_match(const char *expr, const char *v);
166 bool pa_is_regex_valid(const char *expr);
/third_party/node/tools/
H A Dtest.py1068 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 Dattr.rs1271 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 Dattr.rs1271 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 Dos.h16 #define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR))
/kernel/linux/linux-6.6/arch/um/include/shared/
H A Dos.h21 #define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR))
/kernel/linux/linux-5.10/scripts/genksyms/
H A Dparse.y478 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 Dhw_breakpoint_test.c23 #define TEST_EXPECT_NOSPC(expr) KUNIT_EXPECT_EQ(test, -ENOSPC, PTR_ERR(expr))
/kernel/linux/linux-6.6/scripts/genksyms/
H A Dparse.y481 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 Davresample.c41 #define PUT_FUNC(name, fmt, type, expr) \
46 type v = expr; \
/third_party/mesa3d/src/compiler/glsl/
H A Dlower_int64.cpp222 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 Duv-common.h60 #define STATIC_ASSERT(expr) \
61 void uv__static_assert(int static_assert_failed[1 - 2 * !(expr)])
/third_party/libabigail/include/
H A Dabg-ini.h456 function_call_expr_sptr& expr);
460 function_call_expr_sptr& expr);
/third_party/skia/src/sksl/ir/
H A DSkSLType.h509 std::unique_ptr<Expression> coerceExpression(std::unique_ptr<Expression> expr,
513 bool checkForOutOfRangeLiteral(const Context& context, const Expression& expr) const;

Completed in 27 milliseconds

1...<<31323334353637383940>>...55