Home
last modified time | relevance | path

Searched refs:counter (Results 1 – 25 of 165) sorted by relevance

1234567

/aoo41x/main/rsc/source/rscpp/
H A Dcpp1.c407 register int counter; /* newlines and spaces */ local
438 counter = 0; /* Count empty lines */
443 ++counter; /* Do nothing now */
446 counter = control(counter); /* Yes, do a #command */
455 counter++; /* Count it, too. */
468 if ((wrongline && infile->fp != NULL) || counter > 4)
471 while (--counter >= 0) /* them out ourselves */
480 for (counter = 0; (type[(c = get())] == SPA);) {
483 counter++;
485 counter++; /* Skip over blanks */
[all …]
H A Dcpp2.c74 control(int counter) in control() argument
91 return (counter + 1); in control()
147 return (counter + 1); in control()
153 if (counter > 0 && (hash == L_line || hash == L_pragma)) { in control()
155 counter--; in control()
313 return (counter + 1); in control()
/aoo41x/main/solenv/bin/modules/installer/
H A Dconfiguration.pm89 my $counter = 1;
111 $nodename = "node". $counter;
139 $counter++
146 $nodename = "node". $counter;
180 $oneconfig->{'nodenumber'} = $counter;
633 my $counter = 0;
644 $counter++;
652 $counter++;
660 $counter--;
664 if ($counter > 0)
[all …]
H A Dziplist.pm227 my $counter = 0;
275 $counter++;
280 $counter--;
283 if ($counter == 0)
309 my $counter = 0;
347 $counter++;
366 $counter--;
379 $line .= "\t##$counter##\n";
397 my $counter = 0;
427 $counter++;
[all …]
H A Dsetupscript.pm255 my $counter = $i + 1;
264 if ( $counter > $#{$scriptref} ) {
267 $line = ${$scriptref}[$counter];
268 $counter++;
300 $valuecounter = $counter;
H A Dsimplepackage.pm224 my $counter = $i;
226 push(@language_block, ${$languagefile}[$counter]);
227 $counter++;
229 while (( $counter <= $#{$languagefile} ) && (!( ${$languagefile}[$counter] =~ /^\s*\[/ )))
231 push(@language_block, ${$languagefile}[$counter]);
232 $counter++;
/aoo41x/main/odk/examples/cpp/
H A Dmakefile.mk39 $(DESTDIRCPPEXAMPLES)$/counter$/counter.cxx \
40 $(DESTDIRCPPEXAMPLES)$/counter$/counter.uno.xml \
41 $(DESTDIRCPPEXAMPLES)$/counter$/countermain.cxx \
42 $(DESTDIRCPPEXAMPLES)$/counter$/Makefile \
43 $(DESTDIRCPPEXAMPLES)$/counter$/XCountable.idl
/aoo41x/main/solenv/bin/modules/installer/windows/
H A Didtglobal.pm82 my $counter = 0;
90 $counter++;
114 return $counter
127 my $counter = 0;
136 $counter++;
665 my $counter = $i;
668 $counter++;
673 $counter++;
2023 my $counter = $i + 1;
2166 my $counter = 0;
[all …]
H A Dfile.pm161 my $counter = $installer::globals::cabfilecounter{$cabfile};
166 ${$filesref}[$directaccessnumber]->{'assignedsequencenumber'} = $counter;
167 $counter++;
410 my $counter = 0;
413 $counter++;
418 $uniquefilename =~ s/\./$counter\./;
422 $uniquefilename = $uniquefilenamebase . $counter;
H A Dmedia.pm247 my $counter = 0;
254 if (( $counter >= $maxfilenumber ) || ( $i == $#{$filesref} )) { $cabfull = 1; }
256 $counter++; # counting the files in the cab file
301 $counter = 0;
/aoo41x/main/qadevOOo/tests/java/ifc/container/
H A D_XEnumeration.java65 int counter = 0; in _hasMoreElements() local
70 counter ++; in _hasMoreElements()
71 if (counter - tmpCounter > 10000) { in _hasMoreElements()
72 log.println(counter+ " Elements"); in _hasMoreElements()
73 tmpCounter = counter; in _hasMoreElements()
88 boolean locResult = counter == ec; in _hasMoreElements()
92 log.println("\tFound: "+counter); in _hasMoreElements()
/aoo41x/main/solenv/bin/modules/pre2par/
H A Dlanguage.pm85 my $counter = $i;
87 push(@language_block, ${$langfile}[$counter]);
88 $counter++;
90 while (( $counter <= $#{$langfile} ) && (!( ${$langfile}[$counter] =~ /^\s*\[/ )))
92 push(@language_block, ${$langfile}[$counter]);
93 $counter++;
/aoo41x/main/sal/rtl/source/
H A Dunload.cxx124 osl_incrementInterlockedCount( &pMod->counter); in rtl_moduleCount_acquire()
130 OSL_ENSURE( pMod->counter >0 , "library counter incorrect" ); in rtl_moduleCount_release()
131 osl_decrementInterlockedCount( &pMod->counter); in rtl_moduleCount_release()
132 if( pMod->counter == 0) in rtl_moduleCount_release()
180 if (that->counter == 0) in rtl_moduleCount_canUnload()
183 if (libUnused && (that->counter == 0)) in rtl_moduleCount_canUnload()
188 return (that->counter == 0); in rtl_moduleCount_canUnload()
/aoo41x/main/solenv/bin/
H A Dsubsequenttests129 my $counter = 0;
133 ++$counter;
134 print("$counter: make $testpath\n");
136 defined($pid) or die("$counter: $!");
138 chdir($testpath) or die("$counter: $!");
140 open(OUTPUT, $cmd) or die("$counter: $!");
143 print("$counter: $_\n");
/aoo41x/main/postprocess/signing/
H A Dsigning.pl216 my $counter = 0;
221 ++$counter;
222 if ( $counter >= $max_files ) {
224 $counter = 0; # reset counter
228 execute($commandline) if ($counter > 0);
/aoo41x/main/l10ntools/java/receditor/java/transex3/controller/
H A DEditorController.java157 int counter = 0; in initView() local
160 …sourceStringData[ counter ][ 0 ] = aSdfString.getSourceString().getProject()+"\\"+aSdfString.getSo… in initView()
161 sourceStringData[ counter ][ 1 ] = aSdfString.getSourceString().getGid(); in initView()
162 sourceStringData[ counter ][ 2 ] = aSdfString.getSourceString().getLid(); in initView()
163 sourceStringData[ counter ][ 3 ] = aSdfString.getSourceString().getText(); in initView()
164 if( counter == 0 ){ in initView()
182 counter++; in initView()
/aoo41x/main/qadevOOo/runner/helper/
H A DProcessHandler.java485 int counter = 1; in kill() local
486 while (counter < 3 && !exit) in kill()
492 Thread.sleep(1000 * counter); // 5000 in kill()
506 counter++; in kill()
512 if (counter < 3) in kill()
514 … dbg("kill: Couldn't close process after " + counter + " attempts, trying again"); in kill()
516 counter++; in kill()
/aoo41x/main/linguistic/qa/complex/linguistic/
H A DHangulHanjaConversion.java127 int counter = 0; in checkXConversionDictionaryList() local
133 String[] HangulHanja = getLeftAndRight(counter, xSheet); in checkXConversionDictionaryList()
135 counter++; in checkXConversionDictionaryList()
261 private String[] getLeftAndRight(int counter, XSpreadsheet xSpreadsheet) { in getLeftAndRight() argument
263 re[0] = getCell(0, counter, xSpreadsheet).getFormula().trim(); in getLeftAndRight()
264 re[1] = getCell(1, counter, xSpreadsheet).getFormula().trim(); in getLeftAndRight()
/aoo41x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/
H A DConverter.java42 int counter = 0; in convertHashmapToStringArray() local
47 myStringArray[counter] = env; in convertHashmapToStringArray()
48 counter = counter + 1; in convertHashmapToStringArray()
/aoo41x/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DDefaultNameGenerator.java104 int counter = 0; in generateName() local
107 if (counter < 0) // wraparound should not happen.. in generateName()
113 firstFileName.append(counter); in generateName()
128 counter++; in generateName()
/aoo41x/main/scp2/source/templates/
H A Dmodules.pl74 my $counter = 0;
85 $counter++;
86 my $sortkey = 100 * $counter;
102 $globalcounter = $counter;
/aoo41x/main/libxmlsec/
H A Dxmlsec1-customkeymanage.patch4405 + int counter ;
4412 + for( counter = 0 ; *( mechanismList + counter ) != CKM_INVALID_MECHANISM ; counter ++ ) ;
4422 + for( ; counter >= 0 ; counter -- )
4434 + int counter ;
4440 + for( counter = 0 ; *( keySlot->mechanismList + counter ) != CKM_INVALID_MECHANISM ; counter ++ )…
4452 + for( counter -= 1 ; counter >= 0 ; counter -- )
4467 + int counter ;
4471 + for( counter = 0 ; *( keySlot->mechanismList + counter ) != CKM_INVALID_MECHANISM ; counter ++ ) {
4600 + for( counter = 0 ; *( keySlot->mechanismList + counter ) != CKM_INVALID_MECHANISM ; counter ++ )…
4610 + for( ; counter >= 0 ; counter -- )
[all …]
/aoo41x/main/jurt/com/sun/star/comp/bridgefactory/
H A DBridgeFactory.java199 token = counter.toString(); in UniqueToken()
200 counter = counter.add(BigInteger.ONE); in UniqueToken()
209 private static BigInteger counter = BigInteger.ZERO; field in BridgeFactory.UniqueToken
/aoo41x/test/testuno/source/pvt/uno/
H A DConversion.java88 private static int counter = -1; field in Conversion
125 counter++; in Conversion()
145 …result.addRow("data", sourceFileId, scenario, counter % repeat , closeTime, saveTime, loadTime, so… in after()
149 } else if ("file".equalsIgnoreCase(clean) && counter % repeat == 0) { in after()
/aoo41x/main/qadevOOo/tests/java/ifc/task/
H A D_XJobExecutor.java59 XNamed counter = (XNamed) tEnv.getObjRelation("CallCounter"); in _trigger() local
61 int before = Integer.parseInt(counter.getName()); in _trigger()
69 int after = Integer.parseInt(counter.getName()); in _trigger()

Completed in 163 milliseconds

1234567