Searched defs:append (Results 1 - 25 of 352) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.c46 __u8 append:1; // append only member in struct:__anon34306
447 h->append = (oflag & O_APPEND) ? 1 : 0;
594 if(h->append)
/external/zlib/src/contrib/minizip/
H A Dzip.c849 extern zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_32_def* pzlib_filefunc64_32_def) argument
864 (append == APPEND_STATUS_CREATE) ?
871 if (append == APPEND_STATUS_CREATEAFTER)
893 if (append == APPEND_STATUS_ADDINZIP)
920 extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def) argument
926 return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
929 return zipOpen3(pathname, append, globalcomment, NULL);
932 extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def) argument
940 return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
943 return zipOpen3(pathname, append, globalcommen
948 zipOpen(const char* pathname, int append) argument
953 zipOpen64(const void* pathname, int append) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java182 public void append(byte b) method in class:ByteBuffer
196 public void append(byte[] bytes, int offset, int len) method in class:ByteBuffer
208 public void append(byte[] bytes) method in class:ByteBuffer
210 append(bytes, 0, bytes.length);
218 public void append(ByteBuffer anotherBuffer) method in class:ByteBuffer
220 append(anotherBuffer.buffer, 0, anotherBuffer.length);
/external/valgrind/main/coregrind/m_demangle/
H A Dcplus-dem.c2038 /*append=*/1);
3072 /* Consumed everything up to the cplus_marker, append the
3253 string *result, int isfuncname, int append);
3260 state of the append flag.
3264 constructor or destructor function, append an appropriate
3277 string *result, int isfuncname, int append)
3363 /* Here we always append to TEMP since we will want to use
3422 /* If we are using the result as a function name, we need to append
3435 /* Now either prepend the temp buffer to the result, or append it,
3436 depending upon the state of the append fla
3276 demangle_qualified(struct work_stuff *work, const char **mangled, string *result, int isfuncname, int append) argument
[all...]
/external/tinyxml/
H A Dtinystr.cpp72 TiXmlString& TiXmlString::append(const char* str, size_type len) function in class:TiXmlString
100 tmp.append(b, b_len);
109 tmp.append(a, a_len);
/external/stlport/stlport/stl/
H A D_rope.h171 // Sequence must provide an append operation that appends an
218 _M_prefix->append(_M_buffer, _M_buffer + _M_buf_count);
256 void append(const value_type *__s, size_t __len) { function in class:sequence_buffer
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
272 append(__s, __len);
1661 _Self& append(const _CharT* __iter, size_t __n) { function in class:rope
1666 _Self& append(const _CharT* __c_string) { function in class:rope
1668 append(__c_string, __len);
1672 _Self& append(cons function in class:rope
1677 _Self& append(const_iterator __s, const_iterator __e) { function in class:rope
1685 _Self& append(_CharT __c) { function in class:rope
1690 _Self& append() { return append(_CharT()); } // XXX why? function in class:rope
1692 _Self& append(const _Self& __y) { function in class:rope
1698 _Self& append(size_t __n, _CharT __c) { function in class:rope
[all...]
H A D_string.c180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { function in class:_Alloc
230 append(__n - size(), __c);
H A D_string.h408 append(__n - size(), __c);
451 _Self& operator+=(const _Self& __s) { return append(__s); }
452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); }
493 { return append((size_type) __n, (_CharT) __x); }
503 _Self& append(_InputIter __first, _InputIter __last) { function in class:basic_string
509 _Self& append(const _CharT* __first, const _CharT* __last) { function in class:basic_string
516 _Self& append(const _Self& __s) function in class:basic_string
519 _Self& append(const _Self& __s, function in class:basic_string
527 _Self& append(const _CharT* __s, size_type __n) function in class:basic_string
529 _Self& append(cons function in class:basic_string
[all...]
H A D_string_sum.h124 _BStrOnLeft operator += (const _BString& __s) { return append(__s); }
127 _CStrOnLeft operator += (const _CharT* __s) { return append(__s); }
132 //append
133 _BStrOnLeft append (const _BString& __s) function in class:__bstr_sum
135 _BString& append(const _BString& __s, size_type __pos, size_type __n) function in class:__bstr_sum
136 { return _M_get_storage().append(__s, __pos, __n); }
137 _CStrOnLeft append(const _CharT* __s) { function in class:__bstr_sum
141 _CStrOnLeft append(const _CharT* __s, size_type __n) function in class:__bstr_sum
143 _BString& append(size_type __n, _CharT __c) function in class:__bstr_sum
144 {return _M_get_storage().append(__
146 _BString& append(_InputIter __first, _InputIter __last) function in class:__bstr_sum
[all...]
H A D_string_workaround.h162 _Self& append(const _Self& __s) { function in class:basic_string
163 _Base::append(__s);
167 _Self& append(const _Self& __s, function in class:basic_string
169 _Base::append(__s, __pos, __n);
173 _Self& append(const _CharT* __s, size_type __n) { function in class:basic_string
175 _Base::append(__s, __n);
178 _Self& append(const _CharT* __s) { function in class:basic_string
180 _Base::append(__s);
183 _Self& append(size_type __n, _CharT __c) { function in class:basic_string
184 _Base::append(__
191 _Self& append(_InputIter __first, _InputIter __last) { function in class:basic_string
198 _Self& append(const _CharT* __f, const _CharT* __l) { function in class:basic_string
[all...]
/external/stlport/stlport/stl/debug/
H A D_string.h234 _Self& operator+=(const _Self& __s) { return append(__s); }
238 return append(__s);
240 _Self& operator+=(_CharT __c) { return append(1, __c); }
244 _Self& append(_InputIter __first, _InputIter __last) { function in class:basic_string
247 _M_non_dbg_impl.append(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last));
255 _Self& append(const _CharT* __f, const _CharT* __l) { function in class:basic_string
259 _M_non_dbg_impl.append(__f, __l);
264 _Self& append(const_iterator __f, const_iterator __l) { function in class:basic_string
267 _M_non_dbg_impl.append(__f._M_iterator, __l._M_iterator);
273 _Self& append(cons function in class:basic_string
280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { function in class:basic_string
287 _Self& append(const _CharT* __s, size_type __n) { function in class:basic_string
296 _Self& append(const _CharT* __s) { function in class:basic_string
305 _Self& append(size_type __n, _CharT __c) { function in class:basic_string
[all...]
/external/srec/shared/include/
H A Dlstring.h46 * @param value Value to append.
48 ESR_ReturnCode(*append)(struct LString_t* self, const LCHAR* value); member in struct:LString_t
84 * @param value Value to append.
/external/skia/src/animator/
H A DSkAnimateActive.cpp57 void SkActive::append(SkApply* apply) { function in class:SkActive
89 // SkDEBUGF(("%8x %8x active append: post on end\n", this, oldGuard));
419 debugOut.append(" active start adjust delay id=");
420 debugOut.append(fApply._id);
421 debugOut.append("; ");
422 debugOut.append(fAnimators[index]->_id);
423 debugOut.append("=");
425 debugOut.append(":");
435 debugOut.append(":");
442 debugOut.append(" (les
[all...]
H A DSkDisplayApply.cpp94 void SkApply::append(SkApply* apply) { function in class:SkApply
98 fActive->append(apply);
124 *typedValues.append() = temp;
171 *result->fAnimators.append() = anim;
308 debugOut.append(" apply enable id=");
309 debugOut.append(_id);
310 debugOut.append("; start=");
317 append(this);
326 append(this);
350 goto append;
[all...]
H A DSkDisplayList.cpp27 void SkDisplayList::append(SkActive* active) { function in class:SkDisplayList
28 *fActiveList.append() = active;
H A DSkTDArray_Experimental.h38 int32_t* append() { return this->append(1, NULL); } function in class:SkDS32Array
39 int32_t* append(U16CPU count, const int32_t* src = NULL);
43 int32_t* result = this->append();
115 T* append() { return (T*) SkDS32Array::append(); } function in class:SkTDS32Array
117 T* append(U16CPU count, const T* src = NULL) { return (T*) SkDS32Array::append(count, (const int32_t*) src); } function in class:SkTDS32Array
125 T* push() { return this->append(); }
126 void push(T& elem) { *this->append()
[all...]
H A DSkTypedArray.cpp103 int32_t* SkDS32Array::append(U16CPU count, const int32_t* src) function in class:SkDS32Array
/external/skia/src/core/
H A DSkDataTable.cpp157 void SkDataTableBuilder::append(const void* src, size_t size) { function in class:SkDataTableBuilder
165 SkDataTable::Dir* dir = fDir.append();
H A DSkPathHeap.cpp46 int SkPathHeap::append(const SkPath& path) { function in class:SkPathHeap
49 *fPaths.append() = p;
79 int newSlot = this->append(path);
H A DSkRecord.h19 // Though an enterprising user may find calling alloc(), append(), visit(), and mutate() enough to
74 T* append() { function in class:SkRecord
148 // The cost to append a T into this structure is 1 + sizeof(void*) + sizeof(T).
219 // fAlloc needs to be a data structure which can append variable length data in contiguous
222 // fRecords and fTypes need to be data structures that can append fixed length data, and need to
H A DSkStream.cpp515 const void* append(const void* data, size_t size) function in struct:SkDynamicMemoryWStream::Block
560 buffer = fTail->append(buffer, size);
570 block->append(buffer, count);
/external/skia/src/pathops/
H A DSkIntersections.cpp10 void SkIntersections::append(const SkIntersections& i) { function in class:SkIntersections
H A DSkOpAngle.cpp21 static bool CompareResult(SkString* bugOut, int append, bool compare) { argument
22 SkDebugf("%s %c %d\n", bugOut->c_str(), compare ? 'T' : 'F', append);
26 #define COMPARE_RESULT(append, compare) CompareResult(&bugOut, append, compare)
28 #define COMPARE_RESULT(append, compare) compare
/external/skia/src/pdf/
H A DSkPDFTypes.cpp232 result.append("<");
236 result.append(">");
254 result.append("(");
259 result.append("\\");
261 result.append(&val, 1);
263 result.append(")");
265 result.append("<");
271 result.append(">");
305 result.append("#");
309 result.append(inpu
365 SkPDFObject* SkPDFArray::append(SkPDFObject* value) { function in class:SkPDFArray
[all...]
/external/skia/tools/flags/
H A DSkCommandLineFlags.h143 void append(const char* string) { function in class:SkCommandLineFlags::StringArray
147 void append(const char* string, size_t length) { function in class:SkCommandLineFlags::StringArray
324 void append(const char* string) { function in class:SkFlagInfo
326 fStrings->append(string);
328 SkDEBUGFAIL("Can only append to kString_FlagType");

Completed in 4225 milliseconds

1234567891011>>