Home
last modified time | relevance | path

Searched refs:ToJavaScript (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/fxfa/formcalc/
Dcxfa_fmexpression.cpp115 bool CXFA_FMNullExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMNullExpression
130 bool CXFA_FMNumberExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMNumberExpression
145 bool CXFA_FMStringExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMStringExpression
186 bool CXFA_FMIdentifierExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMIdentifierExpression
223 bool CXFA_FMAssignExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMAssignExpression
231 if (!exp1->ToJavaScript(&tempExp1, ReturnType::kInferred)) in ToJavaScript()
240 if (!exp2->ToJavaScript(&tempExp2, ReturnType::kInferred)) in ToJavaScript()
266 bool CXFA_FMBinExpression::ToJavaScript(WideTextBuffer* js, in ToJavaScript() function in CXFA_FMBinExpression
273 if (!GetFirstExpression()->ToJavaScript(js, ReturnType::kInferred)) in ToJavaScript()
276 if (!GetSecondExpression()->ToJavaScript(js, ReturnType::kInferred)) in ToJavaScript()
[all …]
Dcxfa_fmexpression.h27 virtual bool ToJavaScript(WideTextBuffer* js, ReturnType type) const = 0;
69 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
80 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
93 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
106 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
119 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
131 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
280 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
325 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
346 bool ToJavaScript(WideTextBuffer* js, ReturnType type) const override;
[all …]
Dcxfa_fmexpression_unittest.cpp36 callExp->ToJavaScript(&js, CXFA_FMAssignExpression::ReturnType::kInferred); in TEST_F()
61 exp->ToJavaScript(&accumulator, in TEST_F()
71 exp->ToJavaScript(&accumulator, in TEST_F()
81 exp->ToJavaScript(&accumulator, in TEST_F()
92 exp->ToJavaScript(&accumulator, in TEST_F()
102 exp->ToJavaScript(&accumulator, in TEST_F()
113 expr->ToJavaScript(&accumulator, in TEST_F()
129 expr->ToJavaScript(&accumulator, in TEST_F()
146 expr->ToJavaScript(&accumulator, in TEST_F()
163 expr->ToJavaScript(&accumulator, in TEST_F()
Dcxfa_fmparser_unittest.cpp22 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
38 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
68 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
138 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
204 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
243 absl::optional<WideTextBuffer> buf = ast->ToJavaScript(); in TEST_F()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp5301 absl::optional<WideTextBuffer> wsJavaScript = ast->ToJavaScript(); in Translate()