Searched refs:Append (Results 1 - 25 of 57) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenC.py932 AutoGenH.Append('\n#define %s %dU\n' % (PcdTokenName, TokenNumber))
950 AutoGenH.Append('#define %s LibPcdGetEx%s(&%s, %s)\n' % (GetModeName, DatumSizeLib, Pcd.TokenSpaceGuidCName, PcdTokenName))
952 AutoGenH.Append('#define %s(SizeOfBuffer, Buffer) LibPcdSetEx%s(&%s, %s, (SizeOfBuffer), (Buffer))\n' % (SetModeName, DatumSizeLib, Pcd.TokenSpaceGuidCName, PcdTokenName))
954 AutoGenH.Append('#define %s(Value) LibPcdSetEx%s(&%s, %s, (Value))\n' % (SetModeName, DatumSizeLib, Pcd.TokenSpaceGuidCName, PcdTokenName))
956 AutoGenH.Append('#define %s LibPcdGet%s(%s)\n' % (GetModeName, DatumSizeLib, PcdTokenName))
958 AutoGenH.Append('#define %s(SizeOfBuffer, Buffer) LibPcdSet%s(%s, (SizeOfBuffer), (Buffer))\n' %(SetModeName, DatumSizeLib, PcdTokenName))
960 AutoGenH.Append('#define %s(Value) LibPcdSet%s(%s, (Value))\n' % (SetModeName, DatumSizeLib, PcdTokenName))
1079 AutoGenH.Append('#define _PCD_PATCHABLE_%s_SIZE %s\n' % (Pcd.TokenCName, Pcd.MaxDatumSize))
1080 AutoGenH.Append('#define %s %s%s\n' %(PcdValueName, Type, PcdVariableName))
1081 AutoGenC.Append('GLOBAL_REMOVE_IF_UNREFERENCE
[all...]
/vbox/src/libs/xpcom18a4/xpcom/sample/
H A DnsSample.cpp161 foopy.Append(PRUnichar('f'));
162 foopy.Append(PRUnichar('o'));
163 foopy.Append(PRUnichar('o'));
164 foopy.Append(PRUnichar('p'));
165 foopy.Append(PRUnichar('y'));
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/common/
H A DtmVector.h95 PRInt32 Append(void *aElement);
H A DtmVector.cpp78 tmVector::Append(void *aElement){ function in class:tmVector
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcIDList.h78 void Append(const nsID &id) function in class:ipcIDList
80 Super::Append(new ipcIDNode(id));
H A DipcStringList.h84 void Append(const char *str) function in class:ipcStringList
86 Super::Append(new (str) ipcStringNode());
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsPersistentProperties.cpp169 key.Append(PRUnichar(c));
205 value.Append(PRUnichar('\t'));
208 value.Append(PRUnichar('\n'));
211 value.Append(PRUnichar('\r'));
214 value.Append((PRUnichar) c);
217 value.Append((PRUnichar) c);
238 value.Append((PRUnichar) uchar);
243 value.Append((PRUnichar) uchar);
248 value.Append((PRUnichar) uchar);
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcClient.cpp63 mTargets.Append(IPCM_TARGET);
95 mNames.Append(name);
114 mTargets.Append(target);
H A DipcClient.h111 void EnqueueOutboundMsg(ipcMessage *msg) { mOutMsgQ.Append(msg); }
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsStringAPI.h720 NS_HIDDEN_(void) Append( char_type c ) { Replace(size_type(-1), 0, c); } function in class:nsAString_external
721 NS_HIDDEN_(void) Append( const char_type* data, size_type length = size_type(-1) ) { Replace(size_type(-1), 0, data, length); } function in class:nsAString_external
722 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); } function in class:nsAString_external
724 NS_HIDDEN_(self_type&) operator+=( char_type c ) { Append(c); return *this; }
725 NS_HIDDEN_(self_type&) operator+=( const char_type* data ) { Append(data); return *this; }
726 NS_HIDDEN_(self_type&) operator+=( const self_type& readable ) { Append(readable); return *this; }
802 NS_HIDDEN_(void) Append( char_type c ) { Replace(size_type(-1), 0, c); } function in class:nsACString_external
803 NS_HIDDEN_(void) Append( const char_type* data, size_type length = size_type(-1) ) { Replace(size_type(-1), 0, data, length); } function in class:nsACString_external
804 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); } function in class:nsACString_external
806 NS_HIDDEN_(self_type&) operator+=( char_type c ) { Append(
[all...]
H A DnsTAString.h329 * 2) to prepare to |Append| or move characters around.
393 * |Append|, |operator+=| are used to add characters to the end of this string.
396 NS_COM void NS_FASTCALL Append( const self_type& readable );
397 NS_COM void NS_FASTCALL Append( const substring_tuple_type& tuple );
398 NS_COM void NS_FASTCALL Append( const char_type* data );
399 NS_COM void NS_FASTCALL Append( const char_type* data, size_type length );
400 NS_COM void NS_FASTCALL Append( char_type c );
420 self_type& operator+=( const self_type& readable ) { Append(readable); return *this; }
421 self_type& operator+=( const substring_tuple_type& tuple ) { Append(tuple); return *this; }
422 self_type& operator+=( const char_type* data ) { Append(dat
[all...]
H A DnsTSubstring.h335 void Append( char_type c ) { Replace(mLength, 0, c); } function in class:nsTSubstring_CharT
336 void Append( const char_type* data, size_type length = size_type(-1) ) { Replace(mLength, 0, data, length); } function in class:nsTSubstring_CharT
337 void Append( const self_type& str ) { Replace(mLength, 0, str); } function in class:nsTSubstring_CharT
338 void Append( const substring_tuple_type& tuple ) { Replace(mLength, 0, tuple); } function in class:nsTSubstring_CharT
339 void Append( const abstract_string_type& readable ) { Replace(mLength, 0, readable); } function in class:nsTSubstring_CharT
358 self_type& operator+=( char_type c ) { Append(c); return *this; }
359 self_type& operator+=( const char_type* data ) { Append(data); return *this; }
360 self_type& operator+=( const self_type& str ) { Append(str); return *this; }
361 self_type& operator+=( const substring_tuple_type& tuple ) { Append(tuple); return *this; }
362 self_type& operator+=( const abstract_string_type& readable ) { Append(readabl
[all...]
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTObsoleteAStringThunk.cpp148 concrete_self()->Append(s);
153 concrete_self()->Append(data);
158 concrete_self()->Append(data, length);
163 concrete_self()->Append(c);
H A DnsTAString.cpp309 nsTAString_CharT::Append( const self_type& readable ) function in class:nsTAString_CharT
312 AsSubstring()->Append(readable);
318 nsTAString_CharT::Append( const substring_tuple_type& tuple ) function in class:nsTAString_CharT
321 AsSubstring()->Append(tuple);
327 nsTAString_CharT::Append( const char_type* data ) function in class:nsTAString_CharT
332 AsSubstring()->Append(data);
338 nsTAString_CharT::Append( const char_type* data, size_type length ) function in class:nsTAString_CharT
341 AsSubstring()->Append(data, length);
381 nsTAString_CharT::Append( char_type c ) function in class:nsTAString_CharT
384 AsSubstring()->Append(
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/StringFactoringTests/
H A Dprofile_main.cpp290 s3.Append(s1);
291 s3.Append(s2);
295 cout << "s3.Append(s1); s3.Append(s2)" << endl;
316 s3.Append(s1);
317 s3.Append(s2);
322 cout << "repeated s3.Append(s1); s3.Append(s2)" << endl;
351 s1.Append('e');
355 cout << "s1.Append('
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DnsStringTest.h761 theDest.Append((float)100.100);
762 NS_ASSERTION(theDest=="100.1","Append(float) error");
765 theDest.Append(12345);
766 NS_ASSERTION(theDest=="12345","Append(int) error");
769 theDest.Append(pbuf1,1);
770 NS_ASSERTION(theDest=="a","Append(PRUnichar*,count) error");
773 theDest.Append('a');
774 NS_ASSERTION(theDest=="a","Append(char) error");
780 theDest.Append(pbuf,20); //try appending more chars than actual length of pbuf
781 NS_ASSERTION(theDest!=pbuf,"Append(PRUnicha
[all...]
/vbox/src/libs/xpcom18a4/java/src/
H A DnsJavaXPTCStub.cpp432 methodSig.Append(')');
437 methodSig.Append(retvalSig);
439 methodSig.Append('V');
619 aMethodSig.Append('B');
644 aMethodSig.Append('S');
669 aMethodSig.Append('I');
694 aMethodSig.Append('J');
717 aMethodSig.Append('F');
743 aMethodSig.Append('D');
766 aMethodSig.Append('
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConPlatformDxe/
H A DConPlatform.c286 // Append the device path to ConInDev only if it is in ConIn variable.
292 Append
303 Append
432 // Append the device path to ConOutDev only if it is in ConOut variable.
438 Append
442 // Append the device path to ErrOutDev only if it is in ErrOut variable.
448 Append
461 Append
469 Append
1093 // Append th
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsEscape.cpp419 result.Append(part, i);
475 result.Append(last, p - last);
480 result.Append(u);
488 result.Append(last, str + len - last);
H A DnsLocalFileCommon.cpp220 _retval.Append(nodeStr);
222 _retval.Append('/');
267 targetFile->Append(NS_ConvertUTF8toUCS2(nodeString));
269 targetFile->Append(NS_ConvertUTF8toUCS2(Substring(nodeBegin, nodeEnd)));
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/transmngr/module/
H A DtmQueue.cpp90 status = mListeners.Append((void*) aClientID);
187 status = mTransactions.Append(aTrans);
H A DtmTransactionManager.cpp145 PRInt32 index = mQueues.Append(queue);
/vbox/src/libs/xpcom18a4/xpcom/build/
H A DnsStringAPI.cpp103 aStr.Append(aData, aDataLength);
188 aStr.Append(aData, aDataLength);
/vbox/src/libs/xpcom18a4/xpcom/stub/
H A DnsStringAPI.cpp103 aStr.Append(aData, aDataLength);
188 aStr.Append(aData, aDataLength);
/vbox/src/VBox/Main/include/
H A DMediumLock.h161 HRESULT Append(const ComObjPtr<Medium> &aMedium, bool aLockWrite);

Completed in 107 milliseconds

123