/aoo41x/main/sal/qa/helper/gcov/ |
H A D | gcov_result.pl | 108 my $next = "?"; 116 $next = "&"; 125 $next = "&"; 132 $sURL = $sURL . "$next" . "used=$1"; 133 $next = "&"; 141 $next = "&"; 148 $next = "&"; 154 $next = "&"; 160 $next = "&"; 167 $next = "&"; [all …]
|
/aoo41x/main/vcl/source/fontsubset/ |
H A D | list.cxx | 47 struct _lnode *next; member 90 ptr->next = 0; in appendPrim() 113 ptr->next = flink; in prependPrim() 153 ptr = ptr->next; in listNewCopy() 216 ptr = ptr->next; in listPosition() 235 ptr = ptr->next; in listFind() 325 ptr->next = pThis->cptr->next; in listInsertAfter() 328 if (ptr->next != 0) { in listInsertAfter() 373 pThis->cptr->prev->next = pThis->cptr->next; in listRemove() 391 ptr = node->next; in listClear() [all …]
|
/aoo41x/main/jurt/com/sun/star/lib/uno/protocols/urp/ |
H A D | Cache.java | 66 last.next = null; in add() 68 e.next = first; in add() 79 e.prev.next = e.next; in add() 80 if (e.next == null) { in add() 83 e.next.prev = e.prev; in add() 86 e.next = first; in add() 96 public Entry(Object content, int index, Entry prev, Entry next) { in Entry() argument 100 this.next = next; in Entry() 106 public Entry next; field in Cache.Entry
|
/aoo41x/main/sc/source/ui/vba/testvba/TestDocuments-ooo-build/logs/unix/ |
H A D | stringplusdouble.log | 4 The next compute raises error: s = null, d = null, r = s + d 7 The next compute raises error: s = null, d = 20, r = s + d 14 The next compute raises error: s = 'abc', d = null, r = s + d 16 The next compute raises error: s = 'abc', d = null, r = s & d 18 The next compute raises error: s = 'abc', d = 20, r = s + d 20 The next compute raises error: s = 'abc', d = 20, r = s & d 24 The next compute raises error: s = null, d = null, r = s + d 27 The next compute raises error: s = null, d = 20, r = s + d 37 The next compute raises error: s = 'abc', d = 20, r = s + d 56 The next compute raises error: s = 'abc', d = 20, r = s + d [all …]
|
/aoo41x/main/sc/source/ui/vba/testvba/TestDocuments-ooo-build/logs/win/ |
H A D | stringplusdouble.log | 4 The next compute raises error: s = null, d = null, r = s + d 7 The next compute raises error: s = null, d = 20, r = s + d 14 The next compute raises error: s = 'abc', d = null, r = s + d 16 The next compute raises error: s = 'abc', d = null, r = s & d 18 The next compute raises error: s = 'abc', d = 20, r = s + d 20 The next compute raises error: s = 'abc', d = 20, r = s & d 24 The next compute raises error: s = null, d = null, r = s + d 27 The next compute raises error: s = null, d = 20, r = s + d 37 The next compute raises error: s = 'abc', d = 20, r = s + d 56 The next compute raises error: s = 'abc', d = 20, r = s + d [all …]
|
/aoo41x/main/sc/source/ui/vba/testvba/TestDocuments/logs/unix/ |
H A D | stringplusdouble.log | 4 The next compute raises error: s = null, d = null, r = s + d 7 The next compute raises error: s = null, d = 20, r = s + d 14 The next compute raises error: s = 'abc', d = null, r = s + d 16 The next compute raises error: s = 'abc', d = null, r = s & d 18 The next compute raises error: s = 'abc', d = 20, r = s + d 20 The next compute raises error: s = 'abc', d = 20, r = s & d 24 The next compute raises error: s = null, d = null, r = s + d 27 The next compute raises error: s = null, d = 20, r = s + d 37 The next compute raises error: s = 'abc', d = 20, r = s + d 56 The next compute raises error: s = 'abc', d = 20, r = s + d [all …]
|
/aoo41x/main/javaunohelper/test/com/sun/star/lib/uno/helper/ |
H A D | InterfaceContainer_Test.java | 503 it.next(); in Iterator_next() 534 it.next(); in Iterator_hasNext() 536 it.next(); in Iterator_hasNext() 538 it.next(); in Iterator_hasNext() 573 it.next(); in Iterator_remove() 675 it.next(); in ListIterator_hasNext() 677 it.next(); in ListIterator_hasNext() 679 it.next(); in ListIterator_hasNext() 714 it.next(); in ListIterator_remove() 851 it.next(); in ListIterator_nextIndex() [all …]
|
/aoo41x/main/sal/rtl/source/ |
H A D | alloc_impl.h | 160 (((entry)->m_##name##next == (entry)) && ((entry)->m_##name##prev == (entry))) 164 (entry)->m_##name##next = (entry); \ 170 (entry)->m_##name##prev->m_##name##next = (entry)->m_##name##next; \ 171 (entry)->m_##name##next->m_##name##prev = (entry)->m_##name##prev; \ 178 (entry)->m_##name##next = (head)->m_##name##next; \ 179 (head)->m_##name##next = (entry); \ 180 (entry)->m_##name##next->m_##name##prev = (entry); \ 185 (entry)->m_##name##next = (head); \ 188 (entry)->m_##name##prev->m_##name##next = (entry); \
|
H A D | alloc_arena.c | 366 rtl_arena_segment_type * next = curr->m_fnext; in rtl_arena_hash_rescale() local 373 curr = next; in rtl_arena_hash_rescale() 607 rtl_arena_segment_type *next, *prev; in rtl_arena_segment_coalesce() local 614 next = segment->m_snext; in rtl_arena_segment_coalesce() 615 if (next->m_type == RTL_ARENA_SEGMENT_TYPE_FREE) in rtl_arena_segment_coalesce() 618 segment->m_size += next->m_size; in rtl_arena_segment_coalesce() 621 rtl_arena_freelist_remove (arena, next); in rtl_arena_segment_coalesce() 624 QUEUE_REMOVE_NAMED(next, s); in rtl_arena_segment_coalesce() 627 rtl_arena_segment_put (arena, &next); in rtl_arena_segment_coalesce() 1106 rtl_arena_segment_type *next, *prev; in rtl_arena_free() local [all …]
|
/aoo41x/main/unoxml/source/dom/ |
H A D | node.cxx | 216 curAttr = curAttr->next; in lcl_nsexchange() 220 cur = cur->next; in lcl_nsexchange() 240 curAttr = curAttr->next; in nscleanup() 272 cur = cur->next; in nscleanup() 720 pNewChild->next = cur; in insertBefore() 734 cur = cur->next; in insertBefore() 922 pNew->prev->next = pNew; in replaceChild() 923 pNew->next = pOld->next; in replaceChild() 924 if (pNew->next != NULL) in replaceChild() 931 pOld->next = NULL; in replaceChild() [all …]
|
/aoo41x/main/offapi/com/sun/star/sdbc/ |
H A D | XSQLInput.idl | 90 /** reads the next attribute in the stream as string. 99 /** reads the next attribute in the stream as boolean. 108 /** reads the next attribute in the stream as byte. 117 /** reads the next attribute in the stream as short. 126 /** reads the next attribute in the stream as long. 135 /** reads the next attribute in the stream as hyper. 144 /** reads the next attribute in the stream as float. 153 /** reads the next attribute in the stream as double. 171 /** reads the next attribute in the stream as date. 180 /** reads the next attribute in the stream as time. [all …]
|
H A D | XSQLOutput.idl | 90 /** writes the next attribute to the stream as a string. 99 /** writes the next attribute to the stream as boolean. 108 /** writes the next attribute to the stream as byte. 117 /** writes the next attribute to the stream as short. 126 /** writes the next attribute to the stream as long. 135 /** writes the next attribute to the stream as hyper. 144 /** writes the next attribute to the stream as float. 153 /** writes the next attribute to the stream as double. 171 /** writes the next attribute to the stream as a date. 180 /** writes the next attribute to the stream as a time. [all …]
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/ |
H A D | IteratorRowCompare.java | 106 orgSeqObject = orgSeq.next(); in computeDiffs() 136 orgSeqObject = orgSeq.next(); in computeDiffs() 137 modSeqObject = modSeq.next(); in computeDiffs() 150 modSeqObject = modSeq.next(); in computeDiffs() 164 orgSeqObject = orgSeq.next(); in computeDiffs() 175 orgSeqObject = orgSeq.next(); in computeDiffs() 176 modSeqObject = modSeq.next(); in computeDiffs() 185 for (; modSeqObject != null; modSeqObject = modSeq.next(), j++) { in computeDiffs()
|
/aoo41x/main/javaunohelper/com/sun/star/lib/uno/helper/ |
H A D | InterfaceContainer.java | 232 Object o= e.next(); in addAll() 267 Object o= icol.next(); in addAll() 322 Object obj= it.next(); in containsAll() 534 Object obj= it.next(); in removeAll() 559 if (curElem == itColl.next()) in retainAll() 571 Object o= itColl.next(); in retainAll() 710 Object o= aIt.next(); in disposeAndClear() 756 public synchronized Object next() in next() method in InterfaceContainer.Itr 760 Object next = dataIt.get(cursor); in next() local 762 lastRetObj= next; in next() [all …]
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/merge/ |
H A D | PositionBaseRowMerge.java | 86 orgSeqObject = orgSeq.next(); in mergeCellSequences() 117 orgSeqObject = orgSeq.next(); in mergeCellSequences() 118 modSeqObject = modSeq.next(); in mergeCellSequences() 131 modSeqObject = modSeq.next(); in mergeCellSequences() 144 orgSeqObject = orgSeq.next(); in mergeCellSequences() 153 orgSeqObject = orgSeq.next(); in mergeCellSequences() 154 modSeqObject = modSeq.next(); in mergeCellSequences() 164 for (; modSeqObject != null; modSeqObject = modSeq.next()) { in mergeCellSequences()
|
/aoo41x/main/svx/source/unodraw/ |
H A D | UnoNamespaceMap.cxx | 127 sal_Bool next( ::rtl::OUString& rPrefix, ::rtl::OUString& rURL ); 147 sal_Bool NamespaceIteratorImpl::next( ::rtl::OUString& rPrefix, ::rtl::OUString& rURL ) in next() function in NamespaceIteratorImpl 177 return next( rPrefix, rURL ); in next() 194 return next( rPrefix, rURL ); in next() 223 bFound = aIter.next( aPrefix, aURL ); in getByName() 242 while( aIter.next( aPrefix, aURL ) ) in getElementNames() 270 bFound = aIter.next( aPrefix, aURL ); in hasByName() 290 return aIter.next( aPrefix, aURL ); in hasElements()
|
/aoo41x/main/udkapi/com/sun/star/script/ |
H A D | XDebugging.idl | 71 in the call stack, 1 the next and so on. 118 /** executes the next and only the next statement. 120 <p>If the next statement is a function call, the function is 126 /** executes the next and only the next statement. 128 <p>If the next statement is a function call, only the function 134 /** executes the program until the next return from this stack frame.
|
/aoo41x/main/scripting/workben/ifc/scripting/ |
H A D | _XScriptInfo.java | 67 Parameters testdata = (Parameters)tests.next(); in _getLogicalName() 98 Parameters testdata = (Parameters)tests.next(); in _getParcelURI() 128 Parameters testdata = (Parameters)tests.next(); in _getLanguage() 158 Parameters testdata = (Parameters)tests.next(); in _getFunctionName() 188 Parameters testdata = (Parameters)tests.next(); in _getLanguageProperties() 228 Parameters testdata = (Parameters)tests.next(); in _getFileSetNames() 265 Parameters testdata = (Parameters)tests.next(); in _getFilesInFileSet() 303 Parameters testdata = (Parameters)tests.next(); in _getDescription()
|
/aoo41x/main/scripting/workben/installer/ |
H A D | NavPanel.java | 29 …el(InstallWizard wizard, boolean bBack, boolean bNext, boolean bCancel, String prev, String next) { in NavPanel() argument 33 this.next = next; in NavPanel() 80 if ((ev.getSource() == navNext) && (next.length() != 0)) { in actionPerformed() 81 wizard.show(next); in actionPerformed() 131 private String next; field in NavPanel
|
/aoo41x/main/cppuhelper/test/ |
H A D | testcontainer.cxx | 88 ((XVetoableChangeListener*)iterator.next())->vetoableChange( PropertyChangeEvent() ); in test_interfacecontainer() 106 ((XVetoableChangeListener*)iterator.next())->vetoableChange( PropertyChangeEvent() ); in test_interfacecontainer() 108 ((XVetoableChangeListener*)iterator.next())->vetoableChange( PropertyChangeEvent() ); in test_interfacecontainer() 110 ((XVetoableChangeListener*)iterator.next())->vetoableChange( PropertyChangeEvent() ); in test_interfacecontainer() 132 Reference< XVetoableChangeListener > r = ((XVetoableChangeListener*)iterator.next()); in test_interfacecontainer() 142 Reference< XVetoableChangeListener > r = ((XVetoableChangeListener*)iterator.next()); in test_interfacecontainer()
|
/aoo41x/main/l10ntools/source/help/ |
H A D | HelpCompiler.cxx | 135 n1 = n1->next; in switchFind() 180 cnl = cnl->next; in clone() 184 caseNode = caseNode->next; in clone() 207 cnl = cnl->next; in clone() 213 caseNode = caseNode->next; in clone() 221 n = n->next; in clone() 260 list = list->next; in dump() 291 for (test = parentNode->xmlChildrenNode; test; test = test->next) in traverse() 341 for (xmlNodePtr nd = test->xmlChildrenNode; nd; nd = nd->next) in traverse()
|
/aoo41x/main/l10ntools/source/filter/utils/ |
H A D | Cache.java | 515 java.lang.String sType = (java.lang.String)aIt.next(); in toHTML() 557 java.lang.String sFilter = (java.lang.String)aIt.next(); in toHTML() 576 java.lang.String sType = (java.lang.String)aIt.next(); in toHTML() 672 java.lang.String sItem = (java.lang.String)it.next(); in toXML() 1546 lNames.add(it.next()); in getItemNames() 1579 java.lang.String sItemName = (java.lang.String)it.next(); in getMatchedItemNames() 1624 java.lang.String sMatchName = (java.lang.String)it.next(); in matchPropSet() 1823 java.lang.String sFilter = (java.lang.String)aIt1.next(); in analyze() 1840 java.lang.String sType = (java.lang.String)aIt1.next(); in analyze() 1939 java.lang.String sType = (java.lang.String)aIt1.next(); in validateTypes() [all …]
|
/aoo41x/main/sw/source/core/access/ |
H A D | accfrmobjslist.cxx | 90 next(); in SwAccessibleChildSList_const_iterator() 95 SwAccessibleChildSList_const_iterator& SwAccessibleChildSList_const_iterator::next() in next() function in SwAccessibleChildSList_const_iterator 154 next(); in next_visible() 159 next(); in next_visible() 167 return rList.IsVisibleChildrenOnly() ? next_visible() : next(); in operator ++()
|
/aoo41x/main/toolkit/workben/layout/ |
H A D | editor.cxx | 220 beans::Property prop = it.next(); in Widget() 283 Widget *next() in next() function in Widget 343 beans::Property prop = it.next(); in addChild() 578 beans::Property next() in next() function 622 Widget *next( Widget *pWidget ) in next() function 627 pNext = pWidget->next(); in next() 630 if ( (pNext = pUp->next()) != NULL ) in next() 1255 beans::Property prop = it.next(); in addProperties() 1554 for ( Widget *i = FlatLayout::next( mpRootWidget ); i; i = FlatLayout::next( i ) ) in rebuild() 1593 for ( Widget *i = FlatLayout::next( mpRootWidget ); i; i = FlatLayout::next( i ) ) in print() [all …]
|
/aoo41x/main/writerfilter/qa/cppunittests/odiapi/ |
H A D | testProperty.cxx | 166 for (iter->first(); !iter->isDone(); iter->next()) in testPropertyBagAsArray() 217 for (iter->first(); !iter->isDone(); iter->next(), i++) in testSortPropertyBag() 402 for (iter->first(); !iter->isDone(); iter->next(), i++) /* nothing to do */; in testDumpPropertyPool() 417 for (iter->first(); !iter->isDone(); iter->next(), i++) /* nothing to do */; in testDumpPropertyPool() 433 for (iter->first(); !iter->isDone(); iter->next(), i++) /* nothing to do */; in testDumpPropertyPool() 445 for (iter->first(); !iter->isDone(); iter->next(), i++) /*nothing to do*/; in testDumpPropertyPool() 471 for (iter->first(); !iter->isDone(); iter->next(), i++) /* nothing to do */; in testInsertPropertySubsets() 482 for (iter->first(); !iter->isDone(); iter->next(), i++) /*nothing to do*/; in testDumpEmptyPropertyPool() 543 for (iter->first(); !iter->isDone(); iter->next(), i++) /*nothing to do*/; in testDumpPropertyPoolAfterGarbageCollection() 553 for (iter->first(); !iter->isDone(); iter->next(), i++) /*nothing to do*/; in testDumpPropertyPoolAfterGarbageCollection()
|