Home | History | Annotate | Download | only in SetupBrowserDxe

Lines Matching refs:Form

430   @param  Level                  Which type this expression belong to. Form, 

458 @param Level Which type this expression belong to. Form,
487 @param Level Which type this expression belong to. Form,
531 @param Level Which type this expression belong to. Form,
777 Get Form given its FormId.
779 @param FormSet The formset which contains this form.
780 @param FormId Id of this form.
782 @retval Pointer The form.
783 @retval NULL Specified Form is not found in the formset.
793 FORM_BROWSER_FORM *Form;
797 Form = FORM_BROWSER_FORM_FROM_LINK (Link);
799 if (Form->FormId == FormId) {
800 return Form;
811 Search a Question in Form scope using its QuestionId.
813 @param Form The form which contains this Question.
817 @retval NULL Specified Question not found in the form.
822 IN FORM_BROWSER_FORM *Form,
829 if (QuestionId == 0 || Form == NULL) {
836 Link = GetFirstNode (&Form->StatementListHead);
837 while (!IsNull (&Form->StatementListHead, Link)) {
844 Link = GetNextNode (&Form->StatementListHead, Link);
854 @param FormSet The formset which contains this form.
855 @param Form The form which contains this Question.
859 @retval NULL Specified Question not found in the form.
865 IN FORM_BROWSER_FORM *Form,
873 // Search in the form scope first
875 Question = IdToQuestion2 (Form, QuestionId);
885 Form = FORM_BROWSER_FORM_FROM_LINK (Link);
887 Question = IdToQuestion2 (Form, QuestionId);
894 GetQuestionValue (FormSet, Form, Question, GetSetValueWithHiiDriver);
910 @param Form The form which contains this Expression.
914 @retval NULL Specified Expression not found in the form.
919 IN FORM_BROWSER_FORM *Form,
926 Link = GetFirstNode (&Form->ExpressionListHead);
927 while (!IsNull (&Form->ExpressionListHead, Link)) {
934 Link = GetNextNode (&Form->ExpressionListHead, Link);
2418 FORM_BROWSER_FORM *Form;
2431 Form = NULL;
2467 // Search form in the formset scope
2471 Form = FORM_BROWSER_FORM_FROM_LINK (Link);
2473 Question = IdToQuestion2 (Form, QuestionId);
2479 Form = NULL;
2481 ASSERT (Form != NULL);
2486 Status = GetQuestionValue(FormSet, Form, Question, GetSetValueWithEditBuffer);
2511 @param Form Form associated with this expression.
2526 IN FORM_BROWSER_FORM *Form,
2585 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2605 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2611 Question2 = IdToQuestion (FormSet, Form, OpCode->QuestionId2);
2630 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2656 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2839 Question = IdToQuestion (FormSet, Form, Value->Value.u16);
2856 RuleExpression = RuleIdToExpression (Form, OpCode->RuleId);
2865 Status = EvaluateExpression (FormSet, Form, RuleExpression);
2955 Question = IdToQuestion (FormSet, Form, Value->Value.u16);
3532 Status = EvaluateExpression (FormSet, Form, SubExpression);
3549 Status = EvaluateExpression (FormSet, Form, SubExpression);
3663 @param Form Form associated with this expression.
3674 IN FORM_BROWSER_FORM *Form OPTIONAL
3694 Status = EvaluateExpression (FormSet, Form, ExpList->Expression[Index++]);