/vbox/src/libs/xpcom18a4/xpcom/string/src/ |
H A D | nsTPromiseFlatString.cpp | 60 nsTPromiseFlatString_CharT::Init(const abstract_string_type& readable) argument 62 if (readable.mVTable == nsTObsoleteAString_CharT::sCanonicalVTable) 63 Init(*readable.AsSubstring()); 65 Init(readable.ToSubstring());
|
H A D | nsTDependentSubstring.cpp | 40 nsTDependentSubstring_CharT::Rebind( const abstract_string_type& readable, PRUint32 startPos, PRUint32 length ) argument 42 size_type strLength = readable.GetReadableBuffer((const char_type**) &mData);
|
H A D | nsTAString.cpp | 73 nsTAString_CharT::Equals( const self_type& readable ) const 76 return AsSubstring()->Equals(readable); 78 return ToSubstring().Equals(readable); 82 nsTAString_CharT::Equals( const self_type& readable, const comparator_type& comparator ) const argument 85 return AsSubstring()->Equals(readable, comparator); 87 return ToSubstring().Equals(readable, comparator); 226 nsTAString_CharT::Assign( const self_type& readable ) 229 AsSubstring()->Assign(readable); 231 AsObsoleteString()->do_AssignFromReadable(readable); 309 nsTAString_CharT::Append( const self_type& readable ) 390 Insert( const self_type& readable, index_type pos ) argument [all...] |
H A D | nsTSubstring.cpp | 377 nsTSubstring_CharT::Assign( const abstract_string_type& readable ) 380 if (readable.mVTable == nsTObsoleteAString_CharT::sCanonicalVTable) 381 Assign(*readable.AsSubstring()); 383 Assign(readable.ToSubstring()); 485 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable ) 487 Replace(cutStart, cutLength, readable.ToSubstring()); 566 nsTSubstring_CharT::Equals( const abstract_string_type& readable ) const 569 size_type length = readable.GetReadableBuffer(&data); 575 nsTSubstring_CharT::Equals( const abstract_string_type& readable, const comparator_type& comp ) const argument 578 size_type length = readable [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Include/ |
H A D | fileobject.h | 31 int readable; member in struct:__anon9930
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Include/ |
H A D | fileobject.h | 43 int readable; member in struct:__anon9934
|
/vbox/src/VBox/Main/src-server/xpcom/ |
H A D | server_module.cpp | 99 PRFileDesc *readable = nsnull, *writable = nsnull; local 109 if (PR_CreatePipe(&readable, &writable) != PR_SUCCESS) 140 if ( PR_Read(readable, msg, sizeof(msg)-1) != 5 152 if (readable) 153 PR_Close(readable);
|
H A D | server.cpp | 618 PRFileDesc *readable = nsnull, *writable = nsnull; local 638 if (PR_CreatePipe(&readable, &writable) != PR_SUCCESS) 669 if ( PR_Read(readable, msg, sizeof(msg)-1) != 5 676 if (readable) 677 PR_Close(readable);
|
/vbox/src/libs/xpcom18a4/xpcom/string/public/ |
H A D | nsTSubstring.h | 212 NS_COM PRBool NS_FASTCALL Equals( const abstract_string_type& readable ) const; 213 NS_COM PRBool NS_FASTCALL Equals( const abstract_string_type& readable, const comparator_type& comp ) const; 318 self_type& operator=( const abstract_string_type& readable ) { Assign(readable); return *this; } 331 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable ); 339 void Append( const abstract_string_type& readable ) { Replace(mLength, 0, readable); } 362 self_type& operator+=( const abstract_string_type& readable ) { Append(readable); return *this; } 368 void Insert( const abstract_string_type& readable, index_typ argument [all...] |
H A D | nsStringAPI.h | 713 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable ) 716 PRUint32 dataLen = NS_StringGetData(readable, &data); 722 NS_HIDDEN_(void) Append( const self_type& readable ) { Replace(size_type(-1), 0, readable); } 726 NS_HIDDEN_(self_type&) operator+=( const self_type& readable ) { Append(readable); return *this; } 730 NS_HIDDEN_(void) Insert( const self_type& readable, index_type pos ) { Replace(pos, 0, readable); } argument 795 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable ) 798 PRUint32 dataLen = NS_CStringGetData(readable, 812 Insert( const self_type& readable, index_type pos ) argument [all...] |
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/ |
H A D | ipcdclient.cpp | 1270 PRFileDesc *readable = nsnull, *writable = nsnull; local 1282 if (PR_CreatePipe(&readable, &writable) != PR_SUCCESS) 1311 if ((PR_Read(readable, &c, 1) != 1) && (c != IPC_STARTUP_PIPE_MAGIC)) 1316 if (readable) 1317 PR_Close(readable);
|
/vbox/src/VBox/Devices/Audio/ |
H A D | DevIchHda.cpp | 780 uint32_t readable; member in struct:HDAREGDESC 1318 Assert(((pThis->au32Regs[g_aHdaRegMap[iReg].mem_idx] & g_aHdaRegMap[iReg].readable) & 0xffffff00) == 0); 1331 Assert(((pThis->au32Regs[g_aHdaRegMap[iReg].mem_idx] & g_aHdaRegMap[iReg].readable) & 0xffff0000) == 0); 1344 Assert(((pThis->au32Regs[g_aHdaRegMap[iReg].mem_idx] & g_aHdaRegMap[iReg].readable) & 0xff000000) == 0); 1359 *pu32Value = pThis->au32Regs[iRegMem] & g_aHdaRegMap[iReg].readable;
|
/vbox/src/VBox/Devices/Network/ |
H A D | DevE1000.cpp | 1330 uint32_t readable; member in struct:E1kRegMap_st 2772 /* Make use of 'writable' and 'readable' masks. */ 5551 * Bits corresponding to 0s in 'readable' mask will always read as 0s. 5566 *pu32Value = pThis->auRegs[index] & g_aE1kRegMap[index].readable; 5724 if (g_aE1kRegMap[index].readable) 5782 * Lookup the register and check that it's readable. 5788 if (RT_UNLIKELY(g_aE1kRegMap[idxReg].readable))
|