Searched refs:insert (Results 1 - 25 of 165) sorted by relevance

1234567

/haiku-fatelf/src/apps/cortex/addons/LoggingConsumer/
H A DLogWriter.cpp163 else mFilters.insert(what);
178 // mFilters.insert(LOG_QUIT); // don't disable our quit messages
179 mFilters.insert(LOG_SET_RUN_MODE);
180 mFilters.insert(LOG_PREROLL);
181 mFilters.insert(LOG_SET_TIME_SOURCE);
182 mFilters.insert(LOG_REQUEST_COMPLETED);
183 mFilters.insert(LOG_GET_PARAM_VALUE);
184 mFilters.insert(LOG_SET_PARAM_VALUE);
185 mFilters.insert(LOG_FORMAT_SUGG_REQ);
186 mFilters.insert(LOG_FORMAT_PROPOSA
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Ddict.c566 xmlDictEntryPtr insert; local
581 insert = NULL;
583 for (insert = &(dict->dict[key]); insert->next != NULL;
584 insert = insert->next) {
586 if (insert->len == len) {
587 if (!memcmp(insert->name, name, len))
588 return(insert->name);
591 if ((insert
684 xmlDictEntryPtr insert; local
777 xmlDictEntryPtr insert; local
[all...]
H A Dhash.c491 xmlHashEntryPtr insert; local
522 insert = NULL;
525 for (insert = &(table->table[key]); insert->next != NULL;
526 insert = insert->next) {
527 if ((insert->name == name) &&
528 (insert->name2 == name2) &&
529 (insert->name3 == name3))
533 if ((insert
607 xmlHashEntryPtr insert; local
[all...]
/haiku-fatelf/src/bin/gdb/include/opcode/
H A Dv850.h84 /* Insertion function. This is used by the assembler. To insert an
100 unsigned long (* insert)
99 unsigned long (* insert) member in struct:v850_operand
H A Dtic80.h77 /* Insertion function. This is used by the assembler. To insert an
94 unsigned long (*insert)
93 unsigned long (*insert) member in struct:tic80_operand
H A Dalpha.h96 /* Insertion function. This is used by the assembler. To insert an
112 unsigned (*insert) (unsigned instruction, int op, const char **errmsg);
150 are identical. The assembler should call the insert function with
111 unsigned (*insert) (unsigned instruction, int op, const char **errmsg); member in struct:alpha_operand
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DTestFactoryRegistry.cpp78 m_registries.insert(
87 m_registries.insert( std::make_pair( name, factory ) );
89 m_factoriesToDestroy.insert( factory );
100 m_destroyedFactories.insert( factory );
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtemplates.c196 xmlNodePtr oldInsert, insert = NULL; local
211 insert = xmlNewDocNode(ctxt->output, NULL,
213 if (insert == NULL) {
218 oldInsert = ctxt->insert;
219 ctxt->insert = insert;
223 ctxt->insert = oldInsert;
225 ret = xmlNodeGetContent(insert);
226 if (insert != NULL)
227 xmlFreeNode(insert);
[all...]
H A Dtransform.c535 xmlNodePtr node, xmlNodePtr insert, int literal);
1023 * @insert: the parent in the result tree.
1026 * and insert it as last child of @insert
1037 xmlNodePtr insert) {
1040 if ((node->type == XML_DTD_NODE) || (insert == NULL))
1044 return(xsltCopyText(ctxt, insert, node, 0));
1045 copy = xmlDocCopyNode(node, insert->doc, 0);
1048 xmlAddChild(insert, copy);
1060 } else if ((insert
1036 xsltCopyNode(xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr insert) argument
1091 xsltCopyTreeList(xsltTransformContextPtr ctxt, xmlNodePtr list, xmlNodePtr insert, int literal) argument
1180 xsltCopyTree(xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr insert, int literal) argument
1974 xmlNodePtr cur = NULL, insert, copy = NULL; local
[all...]
/haiku-fatelf/headers/cpp/
H A Dstl_list.h343 iterator insert(iterator __position, const _Tp& __x) { function in class:list
351 iterator insert(iterator __position) { return insert(__position, _Tp()); } function in class:list
358 insert(__pos, (size_type) __n, (_Tp) __x);
367 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:list
373 void insert(iterator __position, const _Tp* __first, const _Tp* __last);
374 void insert(iterator __position,
377 void insert(iterator __pos, size_type __n, const _Tp& __x);
379 void push_front(const _Tp& __x) { insert(begin(), __x); }
380 void push_front() {insert(begi
566 list<_Tp, _Alloc>::insert(iterator __position, function in class:list
575 list<_Tp, _Alloc>::insert(iterator __position, function in class:list
586 list<_Tp, _Alloc>::insert(iterator __position, size_type __n, const _Tp& __x) function in class:list
[all...]
H A Dstl_multiset.h137 // insert/erase
138 iterator insert(const value_type& __x) { function in class:multiset
141 iterator insert(iterator __position, const value_type& __x) { function in class:multiset
148 void insert(_InputIterator __first, _InputIterator __last) { function in class:multiset
152 void insert(const value_type* __first, const value_type* __last) { function in class:multiset
155 void insert(const_iterator __first, const_iterator __last) { function in class:multiset
H A Dstl_set.h131 // insert/erase
132 pair<iterator,bool> insert(const value_type& __x) { function in class:set
136 iterator insert(iterator __position, const value_type& __x) { function in class:set
142 void insert(_InputIterator __first, _InputIterator __last) { function in class:set
146 void insert(const_iterator __first, const_iterator __last) { function in class:set
149 void insert(const value_type* __first, const value_type* __last) { function in class:set
H A Dstl_map.h154 __i = insert(__i, value_type(__k, _Tp()));
159 // insert/erase
161 pair<iterator,bool> insert(const value_type& __x) function in class:map
163 iterator insert(iterator position, const value_type& __x) function in class:map
167 void insert(_InputIterator __first, _InputIterator __last) { function in class:map
171 void insert(const value_type* __first, const value_type* __last) { function in class:map
174 void insert(const_iterator __first, const_iterator __last) { function in class:map
/haiku-fatelf/src/tests/kits/storage/
H A DBasicTest.h91 fUntestedNames.insert(name);
110 fUntestedNames.insert(fTestedNames.begin(), fTestedNames.end());
119 fTestedNames.insert(name);
/haiku-fatelf/src/kits/media/
H A DBufferCache.cpp49 fMap.insert(std::make_pair(id, buffer));
/haiku-fatelf/src/tests/
H A DUnitTester.cpp49 fLibDirs.insert(defaultLibDir);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfRgbaFile.cpp73 ch.insert ("Y", Channel (HALF, 1, 1));
78 ch.insert ("RY", Channel (HALF, 2, 2, true));
79 ch.insert ("BY", Channel (HALF, 2, 2, true));
85 ch.insert ("R", Channel (HALF, 1, 1));
88 ch.insert ("G", Channel (HALF, 1, 1));
91 ch.insert ("B", Channel (HALF, 1, 1));
95 ch.insert ("A", Channel (HALF, 1, 1));
256 fb.insert ("Y",
267 fb.insert ("RY",
275 fb.insert ("B
[all...]
H A DImfHeader.cpp100 header.insert ("displayWindow", Box2iAttribute (displayWindow));
101 header.insert ("dataWindow", Box2iAttribute (dataWindow));
102 header.insert ("pixelAspectRatio", FloatAttribute (pixelAspectRatio));
103 header.insert ("screenWindowCenter", V2fAttribute (screenWindowCenter));
104 header.insert ("screenWindowWidth", FloatAttribute (screenWindowWidth));
105 header.insert ("lineOrder", LineOrderAttribute (lineOrder));
106 header.insert ("compression", CompressionAttribute (compression));
107 header.insert ("channels", ChannelListAttribute ());
193 insert (*i->first, *i->second);
227 insert (*
236 Header::insert (const char name[], const Attribute &attribute) function in class:Imf::Header
[all...]
H A DImfTiledRgbaFile.cpp74 ch.insert ("Y", Channel (HALF, 1, 1));
87 ch.insert ("R", Channel (HALF, 1, 1));
90 ch.insert ("G", Channel (HALF, 1, 1));
93 ch.insert ("B", Channel (HALF, 1, 1));
97 ch.insert ("A", Channel (HALF, 1, 1));
229 fb.insert ("Y", Slice (HALF, // type
234 fb.insert ("A", Slice (HALF, // type
388 fb.insert ("R", Slice (HALF, (char *) &base[0].r, xs, ys));
389 fb.insert ("G", Slice (HALF, (char *) &base[0].g, xs, ys));
390 fb.insert ("
[all...]
H A DImfAttribute.cpp126 tMap.insert (TypeMap::value_type (typeName, newAttribute));
H A DImfChannelListAttribute.cpp121 _value.insert
/haiku-fatelf/src/bin/diffutils/po/
H A DMakefile358 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
360 .SUFFIXES: .insert-header .po-update-en
365 .insert-header.po-update-en:
373 if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
389 en@quot.insert-header: insert-header.sin
390 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
392 en@boldquot.insert-header: insert
[all...]
/haiku-fatelf/src/libs/alm/
H A DSharedSolver.cpp238 autoConstraints.insert(row->fPrefSizeConstraint);
244 autoConstraints.insert(column->fPrefSizeConstraint);
255 autoConstraints.insert(min);
257 autoConstraints.insert(max);
299 constraints.insert(area->fMinContentWidth);
301 constraints.insert(area->fMaxContentWidth);
303 constraints.insert(area->fMinContentHeight);
305 constraints.insert(area->fMaxContentHeight);
307 constraints.insert(area->fContentAspectRatioC);
/haiku-fatelf/src/libs/print/libprint/
H A DPrintProcess.cpp121 fPages.insert(fIt, new PageData(file, reverse));
127 fPages.insert(fIt, new PageData);
/haiku-fatelf/src/system/libroot/posix/malloc_debug/
H A Dheap.cpp698 // insert this area in the all_areas list so it stays ordered by base
703 heap_area *insert = heap->all_areas; local
704 while (insert->all_next && insert->all_next->base > area->base)
705 insert = insert->all_next;
707 area->all_next = insert->all_next;
708 insert->all_next = area;
831 heap_area *insert = area->next; local
832 while (insert
880 heap_area *insert = area->prev; local
1282 heap_page *insert = page->next; local
[all...]

Completed in 225 milliseconds

1234567