Home
last modified time | relevance | path

Searched refs:EOF (Results 1 – 25 of 239) sorted by relevance

12345678910

/aoo4110/main/setup_native/scripts/
H A Dupdate.sh65 cat >> $TMPCMD << \EOF
71 EOF
73 cat >> $TMPCMD << EOF heredoc
75 EOF
124 cat >> $ADMINFILE << EOF heredoc
131 EOF
H A Dinstall_solaris.sh171 cat > /tmp/userinstall_filer.$$ << EOF heredoc
177 EOF
236 cat > ${INSTALL_ROOT}/var/sadm/install/admin/default << EOF heredoc
242 EOF
252 cat > ${INSTALL_ROOT}/usr/lib/postrun << \EOF
270 EOF
H A Djavaloader.sh98 cat > $errorfile << EOF heredoc
102 EOF
H A Dlangpackscript.sh51 EOF
/aoo4110/main/
H A Dconfig.guess435 sed 's/^ //' << EOF >$dummy.c heredoc
455 EOF
542 EOF
644 EOF
678 sed 's/^ //' << EOF >$dummy.c heredoc
702 EOF
900 sed 's/^ //' << EOF >$dummy.c heredoc
904 EOF
919 sed 's/^ //' << EOF >$dummy.c heredoc
932 EOF
[all …]
/aoo4110/main/udkapi/com/sun/star/io/
H A DXTextInputStream.idl51 EOF is found and returns it as string (without CR, LF).
55 EOF is already reached before calling this method
66 or EOF is found and returns it as string (without delimiter).
70 delimiters is found, the stream will be read to EOF. The
72 defined by <member>setEncoding</member>. If EOF is already
82 /** Returns the EOF status.
H A DXInputStream.idl60 and the return value indicates that EOF has been reached. This means
62 available or the EOF is reached. </p>
65 of bytes (or less as a sign of EOF).
106 EOF has been reached. EOF has only been reached, when the method
141 <p>Note: This method offers no information on whether the EOF
/aoo4110/ext_libraries/coinmp/
H A Dcoinmp-1.7.6.patch176 @@ -3186,12 +3186,12 @@ EOF
191 @@ -3267,8 +3267,8 @@ EOF
390 @@ -3186,12 +3186,12 @@ EOF
405 @@ -3267,8 +3267,8 @@ EOF
591 @@ -3186,12 +3186,12 @@ EOF
606 @@ -3267,8 +3267,8 @@ EOF
792 @@ -3186,12 +3186,12 @@ EOF
807 @@ -3267,8 +3267,8 @@ EOF
993 @@ -3186,12 +3186,12 @@ EOF
1008 @@ -3267,8 +3267,8 @@ EOF
[all …]
/aoo4110/main/svtools/source/svrtf/
H A Dparrtf.cxx238 case sal_Unicode(EOF): in _GetNextToken()
471 case sal_Unicode(EOF): in ScanText()
492 if (sal_Unicode(EOF) == (nNextCh = GetNextChar())) in ScanText()
550 } while (sal_Unicode(EOF) != nNextCh && IsParserWorking()); in SkipGroup()
573 } while( sal_Unicode(EOF) != nNextCh && IsParserWorking() ); in SkipGroup()
/aoo4110/main/soltools/cpp/
H A D_lex.c434 while (s->inp + 1 >= s->inl && fillbuf(s) != EOF); in gettokens()
447 while (s->inp + 1 >= s->inl && fillbuf(s) != EOF); in gettokens()
558 while (s->inp + 2 >= s->inl && fillbuf(s) != EOF); in trigraph()
611 if ((s->inp + n >= s->inl) && (fillbuf(s) == EOF)) in foldline()
616 while (s->inp + (n + 1) >= s->inl && fillbuf(s) != EOF); in foldline()
644 return EOF; in fillbuf()
H A Dcpp.h30 #ifndef EOF
31 #define EOF (-1) macro
/aoo4110/main/writerfilter/source/rtftok/
H A DRTFScanner.skl26 static const int EOF=0;
94 /* Action number for EOF rule of a given start state. */
201 /* When an EOF's been seen but there's still some text to process
207 * When we actually see the EOF, we change the status to "new"
514 do_action: /* This label is used only to access EOF actions. */
757 { /* Don't try to fill the buffer, so this is an EOF. */
761 * treat this as a final EOF.
784 /* don't do the read, it's not guaranteed to return an EOF,
785 * just force an EOF
1023 return EOF;
[all …]
/aoo4110/main/toolkit/src2xml/source/
H A Dsrclexer.py26 class EOF(Exception): class
158 raise EOF
217 except EOF:
273 except EOF:
/aoo4110/main/svtools/source/svhtml/
H A Dparhtml.cxx375 case sal_Unicode(EOF): in FilterToken()
730 case sal_Unicode(EOF): in ScanText()
805 if( sal_Unicode(EOF) == (nNextCh = GetNextChar()) && in ScanText()
847 if( ( sal_Unicode(EOF) == (nNextCh = GetNextChar()) && in ScanText()
1059 case sal_Unicode(EOF): in _GetNextRawToken()
1255 if( sal_Unicode(EOF) == nNextCh && rInput.IsEof() ) in _GetNextToken()
1280 if( sal_Unicode(EOF) == nNextCh && rInput.IsEof() ) in _GetNextToken()
1383 case sal_Unicode(EOF): in _GetNextToken()
/aoo4110/main/rsc/source/rscpp/
H A Dcpp3.c396 if ( c != ' ' && c != CR && c != NL && c != HT && c != EOF)
404 if( c != EOF && bInQuotes )
420 while ( c != EOF );
/aoo4110/main/shell/source/unix/misc/
H A Duri-encode.c35 if (c == EOF) { in main()
39 if (putchar(c) == EOF) { in main()
/aoo4110/main/slideshow/qa/debug/
H A Dcolors.sh26 cat <<EOF | dot -Tps heredoc
36 EOF
/aoo4110/main/libxmlsec/
H A Dxmlsec1-update-config-sub-and-guess.patch401 sed 's/^ //' << EOF >$dummy.c
405 EOF
498 EOF
592 sed 's/^ //' << EOF >$dummy.c
596 EOF
712 - sed 's/^ //' << EOF >$dummy.c
719 -EOF
871 EOF
907 EOF
1031 -EOF
[all …]
/aoo4110/main/registry/tools/
H A Doptions.cxx96 int c = EOF; in checkCommandFile()
97 while ((c = fgetc(fp)) != EOF) in checkCommandFile()
/aoo4110/main/sw/source/filter/html/
H A Dparcss1.cxx53 DBG_ASSERT( nOldInPos!=nInPos || cNextCh==(sal_Unicode)EOF, where ); \
54 if( nOldInPos==nInPos && cNextCh!=(sal_Unicode)EOF ) \
94 return (sal_Unicode)EOF; in GetNextChar()
602 case (sal_Unicode)EOF: in GetNextToken()
/aoo4110/main/idlc/source/
H A Doptions.cxx143 int c = EOF; in checkCommandFile()
144 while ((c = fgetc(fp)) != EOF) in checkCommandFile()
/aoo4110/main/libtextcat/
H A Dlibtextcat-2.2.patch1862 - cat <<EOF >$dummy.s
1886 -EOF
2111 EOF
2206 EOF
2267 EOF
2309 EOF
2435 -EOF
2567 +EOF
2602 EOF
2725 -EOF
[all …]
/aoo4110/main/icc/source/create_sRGB_profile/
H A Dcreate_sRGB_profile.cpp510 if(achar == EOF) in main()
518 } while(achar != EOF ); in main()
/aoo4110/main/odk/examples/DevelopersGuide/UCB/data/
H A Ddata.txt1 sample sample sample sample sample sample sample sample EOF
/aoo4110/main/sysui/desktop/mandriva/
H A Dmandriva-menus.spec250 cat >> $RPM_BUILD_ROOT%{_menudir}/%{name} << EOF
253 EOF

Completed in 259 milliseconds

12345678910