Searched defs:Replace (Results 1 - 11 of 11) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTAString.cpp444 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const self_type& readable ) function in class:nsTAString_CharT
447 AsSubstring()->Replace(cutStart, cutLength, readable);
453 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple ) function in class:nsTAString_CharT
456 AsSubstring()->Replace(cutStart, cutLength, tuple);
H A DnsTSubstring.cpp411 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length ) function in class:nsTSubstring_CharT
426 Replace(cutStart, cutLength, temp);
451 Replace(cutStart, cutLength, temp);
465 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple ) function in class:nsTSubstring_CharT
470 Replace(cutStart, cutLength, temp);
485 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable ) function in class:nsTSubstring_CharT
487 Replace(cutStart, cutLength, readable.ToSubstring());
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DMainTextEditor.c693 CHAR16 *Replace; local
704 // Below is the scenario of Search/Replace command:
706 // IF user press ESC, Search/Replace command ends.
707 // IF user just press Enter, Search/Replace command ends.
710 // 2. An Input Bar is prompted: "Replace With:".
711 // IF user press ESC, Search/Replace command ends.
716 // and Search/Replace command ends
719 // 4. An Input Bar will be prompted: "Replace ( Yes/No/All/Cancel )?"
723 // will be replaced with R and Search/Replace command ends.
724 // IF user press 'c' or 'C' or ESC, Search/Replace comman
[all...]
H A DFileBuffer.c3038 Replace SearchLen characters from current position on with Replace.
3042 @param[in] Replace The string to replace.
3051 IN CONST CHAR16 *Replace,
3062 ReplaceLen = StrLen (Replace);
3104 Buffer[Index] = Replace[Index];
3112 Buffer[Index] = Replace[Index];
3130 Buffer[Index] = Replace[Index];
3050 FileBufferReplace( IN CONST CHAR16 *Replace, IN CONST UINTN SearchLen ) argument
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsTSubstring.h327 void Replace( index_type cutStart, size_type cutLength, char_type c ) { Replace(cutStart, cutLength, &c, 1); } function in class:nsTSubstring_CharT
328 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) );
329 void Replace( index_type cutStart, size_type cutLength, const self_type& str ) { Replace(cutStart, cutLength, str.Data(), str.Length()); } function in class:nsTSubstring_CharT
330 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple );
331 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable );
335 void Append( char_type c ) { Replace(mLength, 0, c); }
336 void Append( const char_type* data, size_type length = size_type(-1) ) { Replace(mLength, 0, data, length); }
337 void Append( const self_type& str ) { Replace(mLengt
[all...]
H A DnsStringAPI.h705 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) ) function in class:nsAString_external
709 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, char_type c ) function in class:nsAString_external
711 Replace(cutStart, cutLength, &c, 1);
713 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable ) function in class:nsAString_external
720 NS_HIDDEN_(void) Append( char_type c ) { Replace(size_type(-1), 0, c); }
721 NS_HIDDEN_(void) Append( const char_type* data, size_type length = size_type(-1) ) { Replace(size_type(-1), 0, data, length); }
722 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); }
728 NS_HIDDEN_(void) Insert( char_type c, index_type pos ) { Replace(pos, 0, c); }
729 NS_HIDDEN_(void) Insert( const char_type* data, index_type pos, size_type length = size_type(-1) ) { Replace(pos, 0, data, length); }
730 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(po
787 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) ) function in class:nsACString_external
791 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, char_type c ) function in class:nsACString_external
795 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable ) function in class:nsACString_external
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMisc.py477 # Replace the Edk macros
484 # Replace the default dir to current dir
515 # Replace the Edk macros
522 # Replace the default dir to current dir
761 ## Replace the string template with dictionary of placeholders and append it to previous one
773 ## Replace the string template with dictionary of placeholders
779 def Replace(self, Dictionary=None): member in class:TemplateString
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellProtocol.c3044 @param[in] Replace If TRUE and the alias already exists, then the existing alias will be replaced. If
3052 @retval EFI_ACCESS_DENIED The alias is a built-in alias or already existed and Replace was set to
3060 IN BOOLEAN Replace,
3074 if (EfiShellGetAlias(Command, NULL) != NULL && !Replace) {
3057 EfiShellSetAlias( IN CONST CHAR16 *Command, IN CONST CHAR16 *Alias, IN BOOLEAN Replace, IN BOOLEAN Volatile ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c2512 CHAR16 *Replace; local
2523 Replace = NULL;
2525 Replace = StrnCatGrow(&Replace, NULL, ReplaceWith, 0);
2527 Replace = AllocateZeroPool(StrSize(ReplaceWith) + 2*sizeof(CHAR16));
2528 if (Replace != NULL) {
2529 UnicodeSPrint(Replace, StrSize(ReplaceWith) + 2*sizeof(CHAR16), L"\"%s\"", ReplaceWith);
2532 if (Replace == NULL) {
2546 if ((Size + (StrLen(Replace)*sizeof(CHAR16))) > NewSize) {
2547 FreePool(Replace);
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinternl.h552 BOOLEAN Replace; member in struct:_FILE_RENAME_INFORMATION
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinternl.h552 BOOLEAN Replace; member in struct:_FILE_RENAME_INFORMATION

Completed in 126 milliseconds