Lines Matching refs:op_composite
25 CeedOperator op_sub_1, op_sub_2, op_composite; in main() local
76 CeedOperatorCreateComposite(ceed, &op_composite); in main()
77 CeedOperatorCompositeAddSub(op_composite, op_sub_1); in main()
78 CeedOperatorCompositeAddSub(op_composite, op_sub_2); in main()
81 CeedOperatorGetContextFieldLabel(op_composite, "time", &time_label); in main()
83 CeedOperatorSetContextDouble(op_composite, time_label, &value_time); in main()
89 CeedOperatorGetContextDoubleRead(op_composite, time_label, &num_values, &values); in main()
92 CeedOperatorRestoreContextDoubleRead(op_composite, time_label, &values); in main()
96 CeedOperatorGetContextFieldLabel(op_composite, "other", &other_label); in main()
98 CeedOperatorGetContextFieldLabel(op_composite, "other", &other_label); in main()
101 CeedOperatorSetContextDouble(op_composite, other_label, &value_other); in main()
106 CeedOperatorGetContextFieldLabel(op_composite, "bad", &bad_label); in main()
128 CeedOperatorDestroy(&op_composite); in main()