Home
last modified time | relevance | path

Searched refs:Reader (Results 126 – 150 of 438) sorted by last modified time

12345678910>>...18

/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DVCard21Test.php20 $vobj = Reader::read($input);
37 $vobj = Reader::read($input);
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DBase.php84 static function xmlDeserialize(Xml\Reader $reader) {
H A DElements.php102 static function xmlDeserialize(Xml\Reader $reader) {
115 if ($reader->nodeType === Xml\Reader::ELEMENT) {
H A DKeyValue.php101 static function xmlDeserialize(Xml\Reader $reader) {
114 if ($reader->nodeType === Xml\Reader::ELEMENT) {
123 } while ($reader->nodeType !== Xml\Reader::END_ELEMENT);
H A DUri.php93 static function xmlDeserialize(Xml\Reader $reader) {
H A DXmlFragment.php5 use Sabre\Xml\Reader; alias
60 $reader = new Reader();
82 case Reader::ELEMENT :
/plugin/davcal/vendor/sabre/xml/lib/
H A DReader.php20 class Reader extends XMLReader { class
H A DService.php44 * @return Reader
48 $r = new Reader();
H A DXmlDeserializable.php33 * @param Reader $reader
36 static function xmlDeserialize(Reader $reader);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/
H A DACLTest.php163 $reader = new \Sabre\Xml\Reader();
208 $reader = new \Sabre\Xml\Reader();
248 $reader = new \Sabre\Xml\Reader();
298 $reader = new \Sabre\Xml\Reader();
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js10020 function Reader(options) { function
10058 Reader.prototype.fromXML = function(xml, options, done) {
10334 Reader.prototype.handler = function(name) {
11243 var reader = new Reader(assign({ model: this, lax: true }, options));
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/tests/
H A D002-final.phpt2 Check that Reader class is not final
9 $reflectionClass = new \ReflectionClass('MaxMind\Db\Reader');
H A D003-open-basedir.phpt7 use MaxMind\Db\Reader;
9 $reader = new Reader('/usr/local/share/GeoIP/GeoIP2-City.mmdb');
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/
H A DInvalidDatabaseException.php3 namespace MaxMind\Db\Reader;
H A DDecoder.php3 namespace MaxMind\Db\Reader;
H A DMetadata.php3 namespace MaxMind\Db\Reader;
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/
H A DReader.php8 use MaxMind\Db\Reader\Decoder;
9 use MaxMind\Db\Reader\InvalidDatabaseException;
10 use MaxMind\Db\Reader\Metadata;
11 use MaxMind\Db\Reader\Util;
18 class Reader class
/plugin/quickstats/
H A Daction.php14 use GeoIp2\Database\Reader; alias
109 $reader = new Reader(QUICK_STATS .'GEOIP/vendor/GeoLite2-City/GeoLite2-City.mmdb');
546 $reader = new Reader(QUICK_STATS .'GEOIP/vendor/GeoLite2-City/GeoLite2-City.mmdb');
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/
H A DCHANGELOG.md39 * Additional error checking on the data returned from `MaxMind\Db\Reader`
139 `GeoIP2\Database\Reader` class now has an `anonymousIp` method which returns
158 * The check added to the `GeoIP2\Database\Reader` lookup methods in 0.8.0 did
165 * The `GeoIp2\Database\Reader` lookup methods (e.g., `city()`, `isp()`) now
169 * A `metadata()` method has been added to the `GeoIP2\Database\Reader` class.
170 This returns a `MaxMind\Db\Reader\Metadata` class with information about the
217 and Reader classes.
220 `\GeoIp2\Database\Reader` and `\GeoIp2\WebService\Client`.
226 `README.md` file and the `\GeoIp2\Database\Reader` class.
H A DREADME.md95 ## Database Reader ##
119 use GeoIp2\Database\Reader;
121 // This creates the Reader object, which should be reused across
123 $reader = new Reader('/usr/local/share/GeoIP/GeoIP2-City.mmdb');
150 use GeoIp2\Database\Reader;
168 use GeoIp2\Database\Reader;
186 use GeoIp2\Database\Reader;
204 use GeoIp2\Database\Reader;
238 use GeoIp2\Database\Reader;
242 $reader = new Reader('/usr/local/share/GeoIP/GeoIP2-ISP.mmdb');
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
H A DREADME.md1 # MaxMind DB Reader PHP API #
50 require('/path/to/MaxMind-DB-Reader-php/autoload.php');
56 use MaxMind\Db\Reader;
57 $reader = new Reader('example.mmdb');
87 use MaxMind\Db\Reader;
92 $reader = new Reader($databaseFile);
107 `MaxMind\Db\Reader`. In order to use this extension, you must install the
108 Reader API as described above and install the extension as described below. If
153 …his code using the [GitHub issue tracker](https://github.com/maxmind/MaxMind-DB-Reader-php/issues).
172 The MaxMind DB Reader PHP API uses [Semantic Versioning](https://semver.org/).
H A DCHANGELOG.md10 * A new method, `getWithPrefixLen`, was added to the `Reader` class.
59 * The `Reader` class for the `maxminddb` extension is no longer final.
98 * Previously the MaxMind DB extension would cause a segfault if the Reader
/plugin/quickstats/GEOIP/
H A Dcomposer.lock122 "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
127 …"url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/bd436094fc0a9b0558a899f…
163 "description": "MaxMind DB Reader API",
164 "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Database/
H A DReader.php7 use MaxMind\Db\Reader as DbReader;
8 use MaxMind\Db\Reader\InvalidDatabaseException;
34 class Reader implements ProviderInterface class
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dconfig.m42 [Whether to enable the MaxMind DB Reader extension],
3 [ --with-maxminddb Enable MaxMind DB Reader extension support])

12345678910>>...18