���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/deps/icu-small/source/i18n/ |
// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ***************************************************************************************** * Copyright (C) 2015, International Business Machines * Corporation and others. All Rights Reserved. ***************************************************************************************** */ #include "unicode/utypes.h" #if !UCONFIG_NO_FORMATTING #include "unicode/ufieldpositer.h" #include "unicode/fpositer.h" #include "unicode/localpointer.h" U_NAMESPACE_USE U_CAPI UFieldPositionIterator* U_EXPORT2 ufieldpositer_open(UErrorCode* status) { if (U_FAILURE(*status)) { return NULL; } FieldPositionIterator* fpositer = new FieldPositionIterator(); if (fpositer == NULL) { *status = U_MEMORY_ALLOCATION_ERROR; } return (UFieldPositionIterator*)fpositer; } U_CAPI void U_EXPORT2 ufieldpositer_close(UFieldPositionIterator *fpositer) { delete (FieldPositionIterator*)fpositer; } U_CAPI int32_t U_EXPORT2 ufieldpositer_next(UFieldPositionIterator *fpositer, int32_t *beginIndex, int32_t *endIndex) { FieldPosition fp; int32_t field = -1; if (((FieldPositionIterator*)fpositer)->next(fp)) { field = fp.getField(); if (beginIndex) { *beginIndex = fp.getBeginIndex(); } if (endIndex) { *endIndex = fp.getEndIndex(); } } return field; } #endif /* #if !UCONFIG_NO_FORMATTING */