/trunk/main/toolkit/src2xml/source/ |
H A D | srcparser.py | 100 def __init__ (self, tokens, defines): argument 101 self.tokens = tokens 110 token = self.tokens[self.pos] 119 self.tokens[self.pos:self.pos+1] = macro.tokens 125 for mtoken in macro.tokens: 190 return self.tokens 196 self.tokens = tokens 233 tk = self.tokens[i] 371 tk = self.tokens[i] 404 def parseMapAppfont (self, tokens): argument [all …]
|
H A D | macroexpander_test.py | 29 def run (tokens, defines): argument 33 tokens = mcExpander.getTokens() 34 print(tokens) 41 macro.tokens = ['Here', 'comes', 'X', 'and', 'Y'] 43 TestCase.run(tokens, defines) 50 macro.tokens = ['Here', 'comes', 'X', 'and', 'Y'] 54 TestCase.run(tokens, defines) 61 macro.tokens = ['Here', 'comes', 'X', 'and', 'Y'] 65 TestCase.run(tokens, defines) 77 macro.tokens = ['FUNC_FOO'] [all …]
|
H A D | srclexer.py | 52 def dumpTokens (tokens, toError=False): argument 59 for token in tokens: 95 self.tokens = [] 142 self.tokens = [] 147 return self.tokens 221 self.tokens.append(self.token) 231 dumpTokens(self.tokens, toError) 236 self.tokens.append(self.token) 423 hdrData.tokens = mclexer.getTokens() 493 self.tokens.append('"'+literal+'"')
|
H A D | expression.py | 58 def __init__ (self, tokens): argument 59 self.tokens = tokens 68 for token in self.tokens:
|
H A D | macroparser.py | 126 self.macro.tokens = mclexer.getTokens() 128 print(self.macro.tokens) 141 n = len(macro.tokens)
|
H A D | expression_test.py | 28 tokens = exp.split() 29 expparser = expression.ExpParser(tokens)
|
/trunk/main/oox/source/token/ |
H A D | Makefile | 59 $(WORKDIR_TOKEN)/tokens.hxx : $(SRCDIR_TOKEN)/tokens.hxx.head $(WORKDIR_TOKEN)/tokenids.inc $(SRCDI… 63 $(WORKDIR_TOKEN)/tokenids.inc : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl 66 mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 1 < $< > $@ \ 69 $(WORKDIR_TOKEN)/tokennames.inc : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl 72 mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 2 < $< > $@ \ 81 $(WORKDIR_TOKEN)/tokenhash.gperf : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl 84 mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 3 < $< > $@ \ 112 tokens.hxx \
|
H A D | parsexsd.pl | 25 my %tokens; 40 $tokens{$2} = 1; 45 $tokens{$2} = 1; 56 $tokens{$1} = 1; 67 foreach( sort(keys(%tokens)) )
|
/trunk/main/autodoc/ |
H A D | Executable_autodoc.mk | 258 autodoc/source/parser/tokens/stmstarr \ 259 autodoc/source/parser/tokens/stmstate \ 260 autodoc/source/parser/tokens/stmstfin \ 261 autodoc/source/parser/tokens/tkpstama \ 262 autodoc/source/parser/tokens/tkp \ 263 autodoc/source/parser/tokens/tkpcontx \ 264 autodoc/source/parser/tokens/tokdeal \ 300 autodoc/source/parser_i/tokens/stmstar2 \ 301 autodoc/source/parser_i/tokens/stmstat2 \ 302 autodoc/source/parser_i/tokens/stmstfi2 \ [all …]
|
/trunk/main/scripting/workben/mod/_scripting/ |
H A D | TestDataLoader.java | 96 StringTokenizer tokens = new StringTokenizer(pair, separator); in getParameters() local 101 if (tokens.countTokens() < 2) in getParameters() 104 name = tokens.nextToken(); in getParameters() 105 if (tokens.countTokens() == 1) in getParameters() 106 value = tokens.nextToken(); in getParameters() 108 StringBuffer buf = new StringBuffer(tokens.nextToken()); in getParameters() 109 while (tokens.hasMoreTokens()) in getParameters() 110 buf.append(separator).append(tokens.nextToken()); in getParameters()
|
/trunk/main/offapi/com/sun/star/sheet/ |
H A D | FormulaMapGroupSpecialOffset.idl | 43 /** Formula tokens containing the op-code obtained from this offset 73 /** Formula tokens containing the op-code obtained from this offset 84 /** Formula tokens containing the op-code obtained from this offset 97 /** Formula tokens containing the op-code obtained from this offset 112 /** Formula tokens containing the op-code obtained from this offset 122 /** Formula tokens containing the op-code obtained from this offset 136 /** Formula tokens containing the op-code obtained from this offset 148 /** Formula tokens containing the op-code obtained from this offset 171 /** Formula tokens containing the op-code obtained from this offset 185 /** Formula tokens containing the op-code obtained from this offset
|
H A D | XMultiFormulaTokens.idl | 45 /** gives access to multiple sets of formula tokens. 51 method. When the client code tries to access formula tokens at index that 59 /** returns the formula at specified index as sequence of tokens. 71 /** sets the formula at specified index as sequence of tokens.
|
/trunk/main/oox/ |
H A D | Package_generated.mk | 35 oox/source/token/tokens.hxx.head \ 36 oox/source/token/tokens.hxx.tail \ 37 oox/source/token/tokens.txt \ 38 oox/source/token/tokens.pl \ 48 $(eval $(call gb_Package_add_file,oox_generated,inc/oox/token/tokens.hxx,tokens.hxx))
|
H A D | Package_source.mk | 25 $(eval $(call gb_Package_add_file,oox_source,inc/oox/token/tokens.txt,token/tokens.txt))
|
/trunk/main/odk/source/com/sun/star/lib/loader/ |
H A D | InstallationFinder.java | 262 StringTokenizer tokens = new StringTokenizer( in getPathFromPathEnvVar() local 264 while ( tokens.hasMoreTokens() ) { in getPathFromPathEnvVar() 265 File file = new File( tokens.nextToken(), SOFFICE ); in getPathFromPathEnvVar() 440 StringTokenizer tokens = new StringTokenizer( in getPathFromSVersionFile() local 442 if ( tokens.countTokens() != 2 ) in getPathFromSVersionFile() 444 String key = tokens.nextToken(); in getPathFromSVersionFile() 445 String url = tokens.nextToken(); in getPathFromSVersionFile()
|
H A D | Loader.java | 233 StringTokenizer tokens = new StringTokenizer( data, delimiter ); in addUrls() local 234 while ( tokens.hasMoreTokens() ) { in addUrls() 236 urls.add( new File( tokens.nextToken() ).toURL() ); in addUrls()
|
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
H A D | DBTypeConversion.java | 283 String[] tokens = value.split("-"); in toDate() local 288 if (tokens.length > 0) { in toDate() 289 nYear = (short)safeParseInt(tokens[0]); in toDate() 291 if (tokens.length > 1) { in toDate() 292 nMonth = (short)safeParseInt(tokens[1]); in toDate() 294 if (tokens.length > 2) { in toDate() 295 nDay = (short)safeParseInt(tokens[2]); in toDate()
|
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/ |
H A D | SOFormulaParser.java | 155 final ArrayList tokens = new ArrayList(); in parseFormula() local 203 tokens.add(formulaToken); in parseFormula() 213 tokens.add(opCode.Token); in parseFormula() 224 for (int i = 0; i < tokens.size(); i++) in parseFormula() 235 tokens.remove(i); in parseFormula() 236 tokens.add(i, dest); in parseFormula() 247 return (FormulaToken[]) tokens.toArray(new FormulaToken[tokens.size()]); in parseFormula()
|
/trunk/main/offapi/com/sun/star/auth/ |
H A D | SSOManagerFactory.idl | 38 achieved via. the creation and processing of security tokens sent 51 security tokens received from the acceptor side and to create 52 security tokens to send to the acceptor side. On the acceptor side, 53 use the previously created context to process security tokens 54 received from the initiator side and to create security tokens to
|
/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/ |
H A D | FormulaCompiler.java | 96 public Vector RPN2Infix(Vector tokens) { in RPN2Infix() argument 98 ListIterator iter = tokens.listIterator(); in RPN2Infix() 128 public Vector infix2RPN(Vector tokens) { in infix2RPN() argument 131 ListIterator iter = tokens.listIterator(); in infix2RPN()
|
/trunk/main/scripting/java/org/openoffice/idesupport/ |
H A D | SVersionRCFile.java | 138 StringTokenizer tokens = new StringTokenizer(s, "="); in load() local 139 int count = tokens.countTokens(); in load() 144 String name = tokens.nextToken(); in load() 145 String path = tokens.nextToken(); in load()
|
/trunk/main/scripting/java/com/sun/star/script/framework/io/ |
H A D | XStorageHelper.java | 84 StringTokenizer tokens = new StringTokenizer(path, "/"); in XStorageHelper() local 86 if (tokens.countTokens() == 0) in XStorageHelper() 93 xStorages = new XStorage[tokens.countTokens() ]; in XStorageHelper() 99 String name = tokens.nextToken(); in XStorageHelper()
|
/trunk/main/libxmlsec/ |
H A D | xmlsec1-customkeymanage.patch | 103 +tokens.h \ 115 +tokens.h \ 186 +#include <xmlsec/nss/tokens.h> 247 +#include <xmlsec/nss/tokens.h> 694 + tokens.c \ 706 + akmngr.c keywrapers.c tokens.c 715 + libxmlsec1_nss_la-tokens.lo \ 755 +libxmlsec1_nss_la-tokens.lo: tokens.c 791 +#include <xmlsec/nss/tokens.h> 1161 +#include <xmlsec/nss/tokens.h> [all …]
|
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/actions/ |
H A D | ParcelFolderSupport.java | 238 StringTokenizer tokens = new StringTokenizer(classpath, File.pathSeparator); in getConfigureClasspath() local 240 while(tokens.hasMoreTokens()) in getConfigureClasspath() 241 result.addElement(tokens.nextToken()); in getConfigureClasspath()
|
/trunk/main/filter/qa/complex/filter/detection/typeDetection/ |
H A D | Helper.java | 127 String[] tokens = content.get(row).split(";"); in getToDoList() local 128 for (String token : tokens) { in getToDoList() 131 for (int i = tokens.length; i < fieldCount; i++) in getToDoList()
|