OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ | 7 #ifndef FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ |
8 #define FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ | 8 #define FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ |
9 | 9 |
10 #include "JS_Define.h" | 10 #include "JS_Define.h" |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 static FX_BOOL IsDigit(wchar_t ch); | 172 static FX_BOOL IsDigit(wchar_t ch); |
173 static FX_BOOL IsAlphabetic(wchar_t ch); | 173 static FX_BOOL IsAlphabetic(wchar_t ch); |
174 static FX_BOOL IsAlphaNumeric(wchar_t ch); | 174 static FX_BOOL IsAlphaNumeric(wchar_t ch); |
175 | 175 |
176 static FX_BOOL maskSatisfied(wchar_t c_Change, wchar_t c_Mask); | 176 static FX_BOOL maskSatisfied(wchar_t c_Change, wchar_t c_Mask); |
177 static FX_BOOL isReservedMaskChar(wchar_t ch); | 177 static FX_BOOL isReservedMaskChar(wchar_t ch); |
178 | 178 |
179 static double AF_Simple(const FX_WCHAR* sFuction, | 179 static double AF_Simple(const FX_WCHAR* sFuction, |
180 double dValue1, | 180 double dValue1, |
181 double dValue2); | 181 double dValue2); |
182 static CJS_Array AF_MakeArrayFromList(v8::Isolate* isolate, CJS_Value val); | 182 static CJS_Array AF_MakeArrayFromList(CJS_Runtime* pRuntime, CJS_Value val); |
183 }; | 183 }; |
184 | 184 |
185 #endif // FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ | 185 #endif // FPDFSDK_SRC_JAVASCRIPT_PUBLICMETHODS_H_ |
OLD | NEW |