/aoo41x/main/soltools/cpp/ |
H A D | _macro.c | 52 tp = trp->tp + 1; in dodefine() 67 if (tp < trp->lp && tp->type == LP && tp->wslen == 0) in dodefine() 114 trp->tp = tp; in dodefine() 246 for (tp = trp->tp; tp < trp->lp;) in expandrow() 251 || quicklook(tp->t[0], tp->len > 1 ? tp->t[1] : 0) == 0 in expandrow() 259 trp->tp = tp; in expandrow() 297 tp = trp->tp; in expandrow() 531 tp = rtr->tp; in substargs() 539 rtr->tp = tp; in substargs() 681 for (tp = vp->bp; tp < vp->lp; tp++) in stringify() [all …]
|
H A D | _tokens.c | 274 Token *tp = trp->tp; in makespace() local 358 for (tp = trp->tp; tp < trp->lp; tp++) in normtokenrow() 383 tp = trp->tp; in peektokens() 387 if (tp < trp->bp || tp > trp->lp) in peektokens() 389 for (tp = trp->bp; tp < trp->lp && tp < trp->bp + 32; tp++) in peektokens() 393 int c = tp->t[tp->len]; in peektokens() 395 tp->t[tp->len] = 0; in peektokens() 399 fprintf(stderr, tp == trp->tp ? "{%x*} " : "{%x} ", tp->type); in peektokens() 415 for (; tp < trp->lp; tp++) in puttokens() 420 p = tp->t - tp->wslen; in puttokens() [all …]
|
H A D | _cpp.c | 126 Token *tp; in control() local 128 tp = trp->tp; in control() 200 for (tp = trp->tp - 1; ((tp->type != NL) && (tp < trp->lp)); tp++) in control() 266 trp->tp = tp + 1; in control() 271 trp->tp = tp + 1; in control() 275 if (tp + 1 >= trp->lp || tp->type != NUMBER || tp + 3 < trp->lp in control() 285 tp = tp + 1; in control() 342 Token *tp; in error() local 376 fprintf(stderr, "%.*s", (int)tp->len, tp->t); in error() 381 for (tp = trp->tp; tp < trp->lp && tp->type != NL; tp++) in error() [all …]
|
H A D | _lex.c | 349 tp = trp->lp; in gettokens() 380 tp->t = ip; in gettokens() 382 tp->flag = 0; in gettokens() 405 tp->len = ip - tp->t; in gettokens() 411 tp->len = ip - tp->t; in gettokens() 412 nmac |= quicklook(tp->t[0], tp->len > 1 ? tp->t[1] : 0); in gettokens() 417 tp->wslen = ip - tp->t; in gettokens() 529 tp->t = ++ip; in gettokens() 531 tp->wslen = 1; in gettokens() 547 tp->len = ip - tp->t; in gettokens() [all …]
|
H A D | _eval.c | 256 Token *tp; in eval() local 260 trp->tp++; in eval() 279 for (rnd = 0, tp = trp->bp + ntok; tp < trp->lp; tp++) in eval() 281 switch (tp->type) in eval() 318 if (tp->type == STAR || tp->type == AND) in eval() 621 tokval(Token * tp) in tokval() argument 631 switch (tp->type) in tokval() 651 p = tp->t; in tokval() 652 c = p[tp->len]; in tokval() 691 tp->t[tp->len] = c; in tokval() [all …]
|
H A D | _include.c | 59 trp->tp += 1; in doinclude() 60 if (trp->tp >= trp->lp) in doinclude() 62 if (trp->tp->type != STRING && trp->tp->type != LT) in doinclude() 81 trp->tp++; in doinclude() 84 if (trp->tp > trp->lp || len + trp->tp->len + 2 >= sizeof(fname)) in doinclude() 86 strncpy(fname + len, (char *) trp->tp->t, trp->tp->len); in doinclude() 88 trp->tp++; in doinclude() 95 trp->tp += 2; in doinclude() 181 tr.tp = tr.bp; in genline() 223 tr.tp = tr.bp; in genimport() [all …]
|
H A D | _nlist.c | 105 lookup(Token * tp, int install) in lookup() argument 112 for (cp = tp->t, cpe = cp + tp->len; cp < cpe;) in lookup() 118 if (*tp->t == *np->name && tp->len == (unsigned int)np->len in lookup() 119 && strncmp((char *)tp->t, (char *)np->name, tp->len) == 0) in lookup() 130 np->len = tp->len; in lookup() 131 np->name = newstring(tp->t, tp->len, 0); in lookup() 134 quickset(tp->t[0], tp->len > 1 ? tp->t[1] : 0); in lookup()
|
H A D | _mcrvalid.c | 144 Token * tp; in tokenrow_zeroTokenIdentifiers() local 145 for (tp = trp->bp; tp < trp->lp; tp++) in tokenrow_zeroTokenIdentifiers() 147 tp->identifier = 0; in tokenrow_zeroTokenIdentifiers()
|
/aoo41x/main/rsc/source/rscpp/ |
H A D | cpp2.c | 85 register char *tp; in control() local 120 if (!streq(tp, token)) in control() 177 for (tp = work; isdigit(*tp) || type[(int)*tp] == SPA; tp++) in control() 180 if (*tp == '"' && (ep = strrchr(tp + 1, '"')) != NULL) { in control() 516 register char *tp; in hasdirectory() local 518 if ((tp = strrchr(source, '/')) == NULL) in hasdirectory() 522 result[tp - source + 1] = EOS; in hasdirectory() 537 register char *tp; in hasdirectory() 539 if ((tp = strrchr(source, ']')) == NULL in hasdirectory() 540 && (tp = strrchr(source, ':')) == NULL) in hasdirectory() [all …]
|
H A D | cpp6.c | 1070 register char *tp; in domsg() local 1082 tp = file->buffer; /* Print current file */ in domsg() 1083 fprintf(stderr, "%s", tp); /* name, making sure */ in domsg() 1084 if (tp[strlen(tp) - 1] != '\n') /* there's a newline */ in domsg() 1091 tp = file->buffer; in domsg() 1095 file->line, tp); in domsg() 1096 if (tp[strlen(tp) - 1] != '\n') in domsg()
|
H A D | cpp5.c | 508 register TYPES *tp; in dosizeof() local 544 for (tp = basic_types; tp->name != NULLST; tp++) { in dosizeof() 545 if (streq(token, tp->name)) in dosizeof() 548 if (tp->name == NULLST) { in dosizeof() 552 typecode |= tp->type; /* Or in the type bit */ in dosizeof()
|
H A D | cpp3.c | 462 register char *tp; local 501 dp->repl = tp = getmem(27); 504 *tp++ = '"'; 505 strcpy(tp, ctime((const time_t*)&tvec)); 506 tp[24] = '"'; /* Overwrite newline */
|
/aoo41x/main/basic/source/comp/ |
H A D | token.cxx | 384 TokenTable *tp; in SbiTokenizer() local 390 for( nToken = 0, tp = pTokTable; tp->t; nToken++, tp++ ) {} in SbiTokenizer() 459 TokenTable* tp = pTokTable; in Symbol() local 462 if( tp->t == t ) in Symbol() 492 TokenTable *tp; in Next() local 562 if( !bStartOfLine && (tp->t == NAME || tp->t == LINE) ) in Next() 564 else if( tp->t == TEXT ) in Next() 570 if( tp->t == END ) in Next() 610 eCurTok = tp->t; in Next() 612 if( tp->t == AS ) in Next() [all …]
|
/aoo41x/main/odk/examples/java/Inspector/ |
H A D | HideableTreeModel.java | 98 TreePath tp = new TreePath(getPathToRoot(node)); in reload() local 99 fireTreeStructureChanged(new TreeModelEvent(this, tp)); in reload() 118 TreePath tp = new TreePath(getPathToRoot(node)); in nodeInserted() local 121 fireTreeNodesInserted(new TreeModelEvent(this, tp, ai, ac)); in nodeInserted() 128 TreePath tp = new TreePath(getPathToRoot(node)); in nodeRemoved() local 131 fireTreeNodesRemoved(new TreeModelEvent(this, tp, ai, ac)); in nodeRemoved() 138 TreePath tp = new TreePath(getPathToRoot(node)); in nodeChanged() local 139 fireTreeNodesChanged(new TreeModelEvent(this, tp, null, null)); in nodeChanged() 181 TreePath tp = (TreePath) aEnum.nextElement(); in addExpandedPaths() local 182 pathlist.add(tp); in addExpandedPaths() [all …]
|
H A D | SwingTreeControlProvider.java | 217 TreePath tp = event.getNewLeadSelectionPath(); in inspect() 218 if (tp != null){ in inspect()
|
/aoo41x/main/sal/osl/unx/ |
H A D | time.c | 44 struct timeval tp; in osl_getSystemTime() local 47 gettimeofday(&tp, NULL); in osl_getSystemTime() 49 TimeValue->Seconds = tp.tv_sec; in osl_getSystemTime() 50 TimeValue->Nanosec = tp.tv_usec * 1000; in osl_getSystemTime()
|
H A D | conditn.c | 235 struct timeval tp; in osl_waitCondition() local 238 gettimeofday(&tp, NULL); in osl_waitCondition() 240 SET_TIMESPEC( to, tp.tv_sec + pTimeout->Seconds, in osl_waitCondition() 241 tp.tv_usec * 1000 + pTimeout->Nanosec ); in osl_waitCondition()
|
/aoo41x/main/sal/osl/os2/ |
H A D | time.c | 44 struct timeval tp; in osl_getSystemTime() local 47 gettimeofday(&tp, NULL); in osl_getSystemTime() 49 TimeValue->Seconds = tp.tv_sec; in osl_getSystemTime() 50 TimeValue->Nanosec = tp.tv_usec * 1000; in osl_getSystemTime()
|
/aoo41x/main/sal/osl/w32/ |
H A D | security.c | 857 TOKEN_PRIVILEGES tp; in Privilege() local 868 if (!LookupPrivilegeValue(NULL, strPrivilege, &tp.Privileges[0].Luid)) in Privilege() 871 tp.PrivilegeCount = 1; in Privilege() 874 tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; in Privilege() 876 tp.Privileges[0].Attributes = 0; in Privilege() 881 if (!AdjustTokenPrivileges(hToken, FALSE, &tp, 0, (PTOKEN_PRIVILEGES)NULL, 0)) in Privilege()
|
/aoo41x/test/testcommon/source/org/openoffice/test/ |
H A D | Run.help | 10 …-tp [suite name:]<package name>[,package_name]... Define a test suite with test packages separated… 20 run -Dopenoffice.home=/Applications/OpenOffice.org.app/Contents -tp bvt 22 …ts/openoffice/install/linux64/Apache_OpenOffice_4.0.0_Linux_x86-64_install-arc_en-US.tar.gz -tp bvt
|
H A D | Run.java | 134 NamedRequest request = NamedRequest.tp(s); in main()
|
/aoo41x/main/soltools/mkdepend/ |
H A D | include.c | 182 char **tp = cp; local 185 *tp++ = *fp; /* move all the pointers down */
|
/aoo41x/main/writerfilter/qa/cppunittests/odiapi/ |
H A D | testProperty.cxx | 610 Property::Pointer_t tp = createTwipsProperty(NS_style::LN_position, "0,1 cm"); in testCreateInvalidTwipsProperty() local 623 Property::Pointer_t tp = createTwipsProperty(NS_style::LN_position, ""); in testCreateInvalidTwipsProperty2() local 636 Property::Pointer_t tp = createTwipsProperty(NS_style::LN_position, " cm"); in testCreateInvalidTwipsProperty3() local
|
/aoo41x/main/migrationanalysis/src/driver_docs/sources/word/ |
H A D | MigrationAnalyser.cls | 1320 Dim tp As Single 1340 tp = p.Range.ListFormat.ListTemplate.ListLevels.item(listLvl).TabPosition 1347 If tp <> customTabPos Then
|
/aoo41x/test/testcommon/source/org/openoffice/test/common/ |
H A D | NamedRequest.java | 88 public static NamedRequest tp(String arg) { in tp() method in NamedRequest
|