Home
last modified time | relevance | path

Searched refs:line (Results 26 – 50 of 665) sorted by relevance

12345678910>>...27

/trunk/main/offapi/com/sun/star/drawing/
H A DLineProperties.idl40 <p>The properties for line ends and line starts are only supported by
41 shapes with open line ends.
45 /** This property contains the type of the line.
51 /** This property contains the dash of the line.
57 /** This property contains the name of the dash of the line.
63 /** This property contains the line color.
75 /** This property contains the width of the line in 1/100th mm.
101 <p>If this string is empty, no line end polygon is rendered.
119 /** If this property is <TRUE/>, the line will
132 /** If this property is <TRUE/>, the line will end
[all …]
/trunk/main/i18npool/source/localedata/data/
H A Dcurrency-check.awk44 line = 0
56 ++line
61 print "Error: not Unix line ending in line " line
106 FormatLine[nFormats] = file " line " line
127 oldline = line
129 line = 0
132 ++line
136 if ( !line )
140 line = oldline
173 IDLine[nCurrencies] = file " line " line \
[all …]
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DInfoDir.java184 String line = null; in createInfoFile() local
188 fileContent.add(line); in createInfoFile()
190 fileContent.add(line); in createInfoFile()
192 fileContent.add(line); in createInfoFile()
194 fileContent.add(line); in createInfoFile()
196 fileContent.add(line); in createInfoFile()
198 fileContent.add(line); in createInfoFile()
200 fileContent.add(line); in createInfoFile()
202 fileContent.add(line); in createInfoFile()
203 line = "GetUidFile=" + data.getGetUidPath(); in createInfoFile()
[all …]
/trunk/main/svx/source/dialog/
H A Dsendreportunx.cxx54 string line; in read_line() local
69 line.append( szBuffer ); in read_line()
72 rLine = line; in read_line()
101 string line; in get_profile_string() local
104 while ( read_line( fp, line ) ) in get_profile_string()
106 line = trim_string( line ); in get_profile_string()
108 if ( line.length() && line[0] == '[' ) in get_profile_string()
110 line.erase( 0, 1 ); in get_profile_string()
111 string::size_type end = line.find( ']', 0 ); in get_profile_string()
114 section = trim_string( line.substr( 0, end ) ); in get_profile_string()
[all …]
/trunk/main/i18npool/source/isolang/
H A Dlangid.pl133 while (my $line = <IN>)
135 if ($line =~ /$regex/)
142 chomp( $line);
143 print "$line\n";
144 push( @result, $line);
151 if ($line =~ /$addregex[0]/)
168 chomp( $line);
169 print "$line\n";
173 if ($line =~ /$arecloser/)
352 while (my $line = <LD>)
[all …]
/trunk/main/filter/source/config/tools/merge/
H A DpyAltFCFGMerge130 def unescapestr(line): argument
134 for i in range(len(line)):
135 c = line[i]
221 line = buff.readline()
222 if not line:
224 line = line.strip()
227 if not line:
231 if line[0] in ('#','!'):
236 while i < len(line):
237 c = line[i]
[all …]
/trunk/main/solenv/bin/modules/installer/
H A Djavainstaller.pm418 foreach my $line (@returns)
605 … if (($line =~ /^\s*\Q$namestring\E\s*\=/) && ($line =~ /\-\Q$searchstring\E/)) { $do_delete = 1; }
616 $line = ${$xmlfile}[$startline];
617 … if (($line =~ /^\s*\Q$namestring\E\s*\=/) && ($line =~ /\-\Q$searchstring\E/)) { $do_delete = 1; }
668 push(@removed_lines, $line);
676 push(@removed_lines, $line);
731 my ($xmlfile, $unit, $line) = @_;
770 if (($line =~ /^\s*\Q$namestring\E\s*\=/) && ($line =~ /\Q$searchstring\E/)) { $do_delete = 1; }
779 if (($line =~ /^\s*\Q$namestring\E\s*\=/) && ($line =~ /\Q$searchstring\E/)) { $do_delete = 1; }
1404 my $line = ${$xmlfile}[$i];
[all …]
H A Dworker.pm441 $line =~ s/\s*$//g;
1489 my $line = "";
1505 $line = $1 . "\n";
1672 $line = $line . "\tXXXXX\t" . $olddestination . "\n";
1783 $line =~ s/^\s*//;
1784 $line =~ s/\s*$//;
1818 $line =~ s/^\s*//;
1819 $line =~ s/\s*$//;
2799 my $line = ": 1 10\n";
2800 push(@pkgmap, $line);
[all …]
/trunk/main/basegfx/source/workbench/
H A Dbezierclip.cxx106 line.b = (c.p0.x - c.p3.x); in Impl_calcFatLine()
109 const double len( sqrt( line.a*line.a + line.b*line.b ) ); in Impl_calcFatLine()
112 line.a /= len; in Impl_calcFatLine()
113 line.b /= len; in Impl_calcFatLine()
116 line.c = -(line.a*c.p0.x + line.b*c.p0.y); in Impl_calcFatLine()
123 const double dP2( calcLineDistance(line.a, line.b, line.c, c.p1.x, c.p1.y ) ); in Impl_calcFatLine()
124 const double dP3( calcLineDistance(line.a, line.b, line.c, c.p2.x, c.p2.y ) ); in Impl_calcFatLine()
1508 FatLine line; in main() local
1529 << line.c-line.dMin << ",t), liney(" in main()
1535 << line.c-line.dMax << ",t), liney(" in main()
[all …]
/trunk/main/l10ntools/source/
H A Dinireader.cxx39 string line; in read() local
45 while( std::getline( aFStream , line ) ) in read()
47 trim( line ); in read()
48 if( line.empty() ){ in read()
50 else if( is_section( line , section ) ) in read()
56 else if ( is_parameter( line , param_key , param_value ) ) in read()
84 bool INIreader::is_section( string& line , string& section_str ) in is_section() argument
88 UnicodeString target( line.c_str() , line.length() ); in is_section()
105 bool INIreader::is_parameter( string& line , string& parameter_key , string& parameter_value ) in is_parameter() argument
109 UnicodeString target( line.c_str() , line.length() ); in is_parameter()
/trunk/main/solenv/bin/modules/par2script/
H A Dfiles.pm75 my ($itemkey, $itemvalue, $line);
79 $line = "";
81 $line = $itemkey . "=" . $itemvalue . "\n";
82 push(@printcontent, $line);
96 my ($itemkey, $itemvalue, $line, $hashref);
100 $line = "";
107 $line = $line . $itemkey . "=" . $itemvalue . "\t";
110 $line = $line . "\n";
112 push(@printcontent, $line);
/trunk/main/solenv/bin/modules/pre2par/
H A Dfiles.pm76 my ($itemkey, $itemvalue, $line);
80 $line = "";
82 $line = $itemkey . "=" . $itemvalue . "\n";
83 push(@printcontent, $line);
97 my ($itemkey, $itemvalue, $line, $hashref);
101 $line = "";
108 $line = $line . $itemkey . "=" . $itemvalue . "\t";
111 $line = $line . "\n";
113 push(@printcontent, $line);
/trunk/main/crashrep/source/unx/
H A Dmain.cxx676 string line; in read_line() local
691 line.append( szBuffer ); in read_line()
694 rLine = line; in read_line()
705 string line; in get_script_string() local
708 while ( read_line( fp, line ) ) in get_script_string()
710 line = trim_string( line ); in get_script_string()
754 string line; in get_profile_string() local
757 while ( read_line( fp, line ) ) in get_profile_string()
759 line = trim_string( line ); in get_profile_string()
761 if ( line.length() && line[0] == '[' ) in get_profile_string()
[all …]
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/utils/
H A DPackageRemover.java46 String line; in removeDeclaration() local
47 while ((line = in.readLine()) != null) { in removeDeclaration()
48 if (line.startsWith("package")) { in removeDeclaration()
49 String newDeclaration = evaluate(line); in removeDeclaration()
56 out.write(line, 0, line.length()); in removeDeclaration()
79 public static String evaluate(String line) { in evaluate() argument
81 int idx = line.indexOf(ParcelZipper.CONTENTS_DIRNAME); in evaluate()
83 return line; in evaluate()
86 if (line.charAt(idx) == '.') in evaluate()
87 return "package " + line.substring(idx + 1);; in evaluate()
/trunk/main/l10ntools/scripts/tool/
H A Dxtxex.py43 line = sdfdata[sdfline.get_id()].text.replace("\\n", '\n')
47 f.write(line)
70 lines = [line for line in lines if len(line) > 0 and not line[0] == '#']
72 lines = [line.replace('\n', "\\n") for line in lines]
73 line = ''.join(lines)
74 test = str(line)
77 sdf_entity.text = line
/trunk/main/scp2/source/templates/
H A Dmodules.pl89 my $line = $infile[$i];
90 if (( $line =~ /^\s*\*/ ) || ( $line =~ /^\s*\/\*/ )) { next; }
91 $line =~ s/\<LANGUAGE\>/$language/g;
92 $line =~ s/\<LANGUAGE_\>/$language_/g;
93 $line =~ s/\<LANGUAGEBIG_\>/$languagebig_/g;
94 $line =~ s/\<SORTKEY\>/$sortkey/g;
95 print OUTFILE $line;
163 while ( $line = <OLDFILE> ) {
164 if ( $line =~ /^\/\/.*completelangiso:/ ) {
165 $lastcompletelangiso_var = $line;
/trunk/main/soltools/mkdepend/
H A Dcppsetup.c62 cppsetup(line, filep, inc) in cppsetup() argument
63 register char *line; in cppsetup()
78 inp = newp = line;
117 const char *line; member
136 fprintf (stderr, "%s: %s", prefix, pd->line);
137 i = cp - pd->line;
138 if (i > 0 && pd->line[i-1] != '\n') {
210 int cppsetup(line, filep, inc) in cppsetup() argument
211 register char *line; in cppsetup()
221 pd.line = line;
[all …]
/trunk/main/testgraphical/source/
H A DCallExternals.pm69 my $line;
78 while ($line = <IN_FILE>)
80 chomp($line);
82 push(@result, $line);
151 my $line;
167 while ($line = <IN_FILE>)
169 chomp($line);
170 log_print ("- $line\n");
242 my $line;
249 while ($line = <IN_FILE>)
[all …]
/trunk/main/l10ntools/scripts/
H A Dfast_merge.pl55 line => '$',
158 my $line = readline ( $obj->FILEHANDLE );
159 if ( $line eq undef )
168 $obj->line ( $1 );
175 $obj->line ( "" );
188 my $line = readline ( $obj->FILEHANDLE );
189 if ( $line eq undef )
195 $line =~ /^(([^\t]*)\t([^\t]*).*)/o ;
198 $obj->line ( $1 );
205 $obj->line ( "" );
[all …]
/trunk/main/solenv/bin/modules/installer/windows/
H A Dmsiglobal.pm733 push(@{$setupinifile}, $line);
747 push(@{$setupinifile}, $line);
761 push(@{$setupinifile}, $line);
775 push(@{$setupinifile}, $line);
787 push(@{$setupinifile}, $line);
816 push(@{$setupinifile}, $line);
829 push(@{$setupinifile}, $line);
878 my $line = "\[setup\]\n";
879 push(@setupinifile, $line);
888 $line = "\[languages\]\n";
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/share/
H A DDescGetter.java55 String line = ""; in getScenario() local
70 while (line != null) in getScenario()
74 if (line.startsWith("-o")) in getScenario()
76 String job = line.substring(3, line.length()).trim(); in getScenario()
115 else if (line.startsWith("-sce")) in getScenario()
117 DescEntry[] subs = getScenario(line.substring(5, in getScenario()
118 line.length()).trim(), descPath, in getScenario()
126 else if (line.startsWith("-p")) in getScenario()
129 line.substring(3).trim(), debug); in getScenario()
143 line = scenario.readLine(); in getScenario()
/trunk/main/extensions/source/update/check/
H A Dtransform.pl44 $line = $prop;
45 $line =~ s/\" oor:type/_$lang\" oor:type/;
46 print $line;
47 $line = $_;
48 $line =~ s/ xml:lang=\".*\"//;
49 print $line;
50 $line = $prop;
51 $line =~ s/<prop.*/<\/prop>/;
52 print $line;
/trunk/main/toolkit/src2xml/source/
H A Dsrclexer.py56 line = ''
61 if len(line) > 0:
63 line = ''
68 if len(line) > 0:
70 line = ''
75 if len(line) > 0:
77 line = ''
83 if len(line) > 0:
84 chars += line
451 line = ''
[all …]
/trunk/main/offapi/com/sun/star/style/
H A DPageProperties.idl120 /** determines the style of the left border line of the page.
124 /** determines the style of the right border line of the page.
128 /** determines the style of the top border line of the page.
132 /** determines the style of the bottom border line of the page.
240 /** determines the style of the left border line of the header.
248 /** determines the style of the top border line of the header.
343 /** contains the style of the left border line of the footer.
347 /** contains the style of the right border line of the footer.
351 /** contains the style of the top border line of the footer.
355 /** contains the style of the bottom border line of the footer.
[all …]
/trunk/main/offapi/com/sun/star/text/
H A DLineNumberingProperties.idl37 /** provides access to the settings of the line numbering.
43 /** If <TRUE/>, line numbering is used.
49 /** The name of the character style that is used for the line number.
65 /** specifies the distance between the line number and the start or
71 /** Line numbers are shown on every <var>Interval</var>th line.
76 /** specifies the string that is used for the line separator.
81 /** The line separator is shown every <var>SeparatorInterval</var>th line.
86 /** specifies the position of the line number (constant LineNumberPositions
97 /** specifies if the line numbering should start from the
100 <p>If set to <FALSE/> the line numbering will be continuous.</p>

Completed in 122 milliseconds

12345678910>>...27