Home
last modified time | relevance | path

Searched refs:filePath (Results 26 – 45 of 45) sorted by last modified time

12

/plugin/sequencediagram/bower_components/lodash/test/
H A Dremove.js11 var filePath = path.resolve(args[1]), variable
24 fs.writeFileSync(filePath, fs.readFileSync(filePath, 'utf8').replace(pattern, function(match) {
/plugin/sequencediagram/bower_components/lodash/lib/common/
H A Dfile.js33 return _.transform(glob.sync(pattern), (result, filePath) => {
34 const key = path.basename(filePath, path.extname(filePath));
35 result[key] = _.template(fs.readFileSync(filePath, 'utf8'));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php1080 $filePath = (string) $file->textContent;
1082 if ($filePath) {
1083 $files[] = $this->toAbsolutePath($filePath);
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DExample.php27 private $filePath; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Example
47 Assert::notEmpty($filePath);
51 $this->filePath = $filePath;
68 $filePath = '"' . $this->filePath . '"';
70 $filePath = $this->isUriRelative($this->filePath)
72 :$this->filePath;
75 return trim($filePath . ' ' . parent::getDescription());
91 $filePath = null;
94 $filePath = $matches[1];
120 $filePath !== null?$filePath:$fileUri,
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DSplFileInfoPatch.php63 $filePath = str_replace('\\','\\\\',__FILE__);
64 $constructor->setCode('return parent::__construct("' . $filePath .'");');
70 $filePath = str_replace('\\','\\\\',__FILE__);
71 $constructor->setCode('return parent::__construct("' . $filePath .'", "", "");');
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php113 * @param string $filePath absolute path to file
116 function DetectHtml( $filePath ) argument
118 $fp = @fopen( $filePath, 'rb' ) ;
183 * @param string $filePath absolute path to file
188 function IsImageValid( $filePath, $extension ) argument
190 if (!@is_readable($filePath)) {
220 if ( @getimagesize( $filePath ) === false ) {
/plugin/authfacebook/lib/FileUpload/
H A DFacebookFile.php58 * @param string $filePath
64 public function __construct($filePath, $maxLength = -1, $offset = -1) argument
66 $this->path = $filePath;
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php113 * @param string $filePath absolute path to file
116 function DetectHtml( $filePath ) argument
118 $fp = @fopen( $filePath, 'rb' ) ;
183 * @param string $filePath absolute path to file
188 function IsImageValid( $filePath, $extension ) argument
190 if (!@is_readable($filePath)) {
220 if ( @getimagesize( $filePath ) === false ) {
/plugin/src/
H A Dsyntax.php223 $filePath = preg_replace('/^(\.)(\:)?((\w+\-*\:*)+\z)/sm', '$3', $filePath);
224 $filePath = preg_replace('/^((\.:{0,1}){0,1}((\w+\.*\-*)+)\z)/smu', '$3', $filePath);
225 …$filePath = $this->_mb_str_replace(':', '/', $filePath); //путь к файлу (запись согласно namespace…
226 $filePath = $startDir . '/' . $namespace . '/' . $filePath;
230 $filePath = preg_replace('/^(\:*)((\w+\.*\-*\:{0,5})*\z)/smu', '$2', $filePath);
231 …$filePath = $this->_mb_str_replace(':', '/', $filePath); //путь к файлу (запись согласно namespace…
232 $filePath = $startDir . '/' . '' . $filePath;
236 $filePath = preg_replace('/^(\.:)?(\.\.):?((\w+\.*\-*\:{0,5})*\z)/smu', '$3', $filePath);
237 …$filePath = $this->_mb_str_replace(':', '/', $filePath); //путь к файлу (запись согласно namespace…
240 $filePath = $startDir . '/' . $this->dirUp($namespace) . $midSlash . $filePath;
[all …]
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DBarcodeFactory.php292 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
293 if (count($filePath) == 1 ) {
371 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
372 if (count($filePath) == 1 ) {
H A DDatamatrixFactory.php269 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
270 if (count($filePath) == 1 ) {
333 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
334 if (count($filePath) == 1 ) {
H A DPDF417Factory.php273 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
274 if (count($filePath) == 1 ) {
337 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
338 if (count($filePath) == 1 ) {
H A DQRcodeFactory.php321 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
322 if (count($filePath) == 1 ) {
392 $filePath = explode(DIRECTORY_SEPARATOR, $this->file);
393 if (count($filePath) == 1 ) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DFixer.php233 * @param string $filePath Optional file path to diff the file against.
240 public function generateDiff($filePath=null, $colors=true) argument
242 if ($filePath === null) {
243 $filePath = $this->_currentFile->getFilename();
247 if (strpos($filePath, $cwd) === 0) {
248 $filename = substr($filePath, strlen($cwd));
250 $filename = $filePath;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/
H A DIncludeSystemSniff.php323 $filePath = $phpcsFile->findNext(T_CONSTANT_ENCAPSED_STRING, ($stackPtr + 1));
324 $filePath = $tokens[$filePath]['content'];
325 $filePath = trim($filePath, " '");
326 $filePath = basename($filePath, '.inc');
327 return strtolower($filePath);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
H A DCodeSniffer.php1588 $filePath = self::realpath($file->getPathname());
1589 if ($filePath === false) {
1593 if (is_dir($filePath) === true) {
1743 $filePath = self::realpath($file);
1744 if ($filePath === false) {
1745 $filePath = $file;
1752 if ($contents === null && is_readable($filePath) === true) {
1753 $handle = fopen($filePath, 'r');
1763 echo 'Ignoring '.basename($filePath).PHP_EOL;
/plugin/eventline/
H A Dsyntax.php195 $str .= 'var plugin_eventline_filePath = "'.$filePath.'";';
/plugin/stats/
H A Dsyntax.php675 $filePath = $path."/".$file;
677 if (is_file($rootPath.$filePath)) {
678 $filens = substr($filePath, 0, strrpos($filePath , '.txt'));
685 $nbPages += $this->_pages_xhtml_r($filePath, $rootPath);
967 $filePath = "$path/$file";
969 if (is_file($rootPath.$filePath)) {
970 $filens = substr($filePath, 0, strrpos($filePath , '.txt'));
988 $pagesSizes[$filens] = filesize($rootPath.$filePath);
991 foreach($this->getAllPagesSizes($filePath, $rootPath, $depthLevel) as $ns => $size) {
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf_util.cfm57 <cfargument name="filePath" required="true" type="String">
69 <cfset objImage = ImageRead(ARGUMENTS.filePath) >
71 <!--- <cfimage action="info" source="#ARGUMENTS.filePath#" structName="imageInfo" /> --->
74 <cfset imageInfo = imageCFC.getImageInfo("", ARGUMENTS.filePath)>
94 <cfargument name="filePath" required="true" type="String">
97 <cfset var chunk = lcase( Trim( BinaryFileRead( ARGUMENTS.filePath, 1024 ) ) )>
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php84 * @param string $filePath absolute path to file
87 function DetectHtml( $filePath ) argument
89 $fp = fopen( $filePath, 'rb' ) ;
145 * @param string $filePath absolute path to file
150 function IsImageValid( $filePath, $extension ) argument
178 if ( @getimagesize( $filePath ) === false ) {

12