Lines Matching full:type
94 ctx->field_labels[ctx->num_fields]->type = field_type; in CeedQFunctionContextRegisterGeneric()
214 @param[in] mem_type Memory type to check
302 @param[in] field_type Type of field to set
313 // Check field type in CeedQFunctionContextSetGeneric()
314 …CeedCheck(field_label->type == field_type, CeedQFunctionContextReturnCeed(ctx), CEED_ERROR_UNSUPPO… in CeedQFunctionContextSetGeneric()
316 CeedContextFieldTypes[field_label->type], CeedContextFieldTypes[field_type]); in CeedQFunctionContextSetGeneric()
334 @param[in] field_type Type of field to read
346 // Check field type in CeedQFunctionContextGetGenericRead()
347 …CeedCheck(field_label->type == field_type, CeedQFunctionContextReturnCeed(ctx), CEED_ERROR_UNSUPPO… in CeedQFunctionContextGetGenericRead()
349 CeedContextFieldTypes[field_label->type], CeedContextFieldTypes[field_type]); in CeedQFunctionContextGetGenericRead()
372 @param[in] field_type Type of field to restore
381 // Check field type in CeedQFunctionContextRestoreGenericRead()
382 …CeedCheck(field_label->type == field_type, CeedQFunctionContextReturnCeed(ctx), CEED_ERROR_UNSUPPO… in CeedQFunctionContextRestoreGenericRead()
384 CeedContextFieldTypes[field_label->type], CeedContextFieldTypes[field_type]); in CeedQFunctionContextRestoreGenericRead()
550 @param[out] f_mem_type Memory type to use when passing data into `f`
641 @param[in] mem_type Memory type of the data being passed
663 @brief Take ownership of the data in a `CeedQFunctionContext` via the specified memory type.
668 @param[in] mem_type Memory type on which to access the data.
669 If the backend uses a different memory type, this will perform a copy.
670 @param[out] data Data on memory type mem_type
697 @brief Get read/write access to a `CeedQFunctionContext` via the specified memory type.
702 @param[in] mem_type Memory type on which to access the data.
703 If the backend uses a different memory type, this will perform a copy.
704 @param[out] data Data on memory type mem_type
731 @brief Get read only access to a `CeedQFunctionContext` via the specified memory type.
736 @param[in] mem_type Memory type on which to access the data.
737 If the backend uses a different memory type, this will perform a copy.
738 @param[out] data Data on memory type mem_type
892 if (field_type) *field_type = label->type; in CeedContextFieldLabelGetDescription()
965 …abeled %s field: %s\n", tabs, CeedContextFieldTypes[ctx->field_labels[i]->type], ctx->field_labels… in CeedQFunctionContextView()
975 @param[in] f_mem_type Memory type to use when passing data into `f`