You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
@ -48,6 +48,16 @@
|
||||
line-height: 0px;
|
||||
}
|
||||
|
||||
.mapi-codeblock {
|
||||
display: block;
|
||||
padding: 5pt 5pt;
|
||||
margin: 10pt;
|
||||
white-space: pre;
|
||||
font-family: monospace;
|
||||
border: 1px solid rgba(233,233,233,1);
|
||||
background-color: rgba(249,249,249,1);
|
||||
}
|
||||
|
||||
.mapi-entry code {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
@ -241,7 +251,8 @@ mono_string_new (MonoDomain *domain, const char *text)
|
||||
<div> A newly created string object which contains <i>text</i>.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> This function asserts if it cannot allocate a new string.</div>
|
||||
<div>
|
||||
This function asserts if it cannot allocate a new string.</div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -353,7 +364,8 @@ mono_string_from_utf16 (gunichar2 *data)
|
||||
<div> a <code>MonoString</code>.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> Converts a <code>NULL</code>-terminated UTF-16 string (LPWSTR) to a <code>MonoString</code>.</div>
|
||||
<div>
|
||||
Converts a <code>NULL</code>-terminated UTF-16 string (LPWSTR) to a <code>MonoString</code>.</div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -377,7 +389,8 @@ mono_string_from_utf32 (mono_unichar4 *data)
|
||||
<div> a <code>MonoString</code>.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> Converts a UTF-32 (UCS-4) string to a <code>MonoString</code>.</div>
|
||||
<div>
|
||||
Converts a UTF-32 (UCS-4) string to a <code>MonoString</code>.</div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
|
||||
@ -449,7 +462,10 @@ mono_string_to_utf8_checked (MonoString *s, MonoError *error)
|
||||
<p />
|
||||
<div class="mapi-section">Parameters</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>s</i></td><td> a <code>System.String</code></td></tr><tr><td><i>error</i></td><td> a <code>MonoError</code>.</td></tr></tbody></table> <div class="mapi-section">Description</div>
|
||||
<div> Converts a <code>MonoString</code> to its UTF-8 representation. May fail; check <i>error</i> to determine whether the conversion was successful. The resulting buffer should be freed with <code>mono_free()</code>.</div>
|
||||
<div>
|
||||
Converts a <code>MonoString</code> to its UTF-8 representation. May fail; check
|
||||
<i>error</i> to determine whether the conversion was successful.
|
||||
The resulting buffer should be freed with <code>mono_free()</code>.</div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -499,7 +515,10 @@ mono_string_equal (MonoString *s1, MonoString *s2)
|
||||
<div> <code>FALSE</code> if the strings differ.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> <p /> Compares two <code>MonoString*</code> instances ordinally for equality. <p /></div>
|
||||
<div>
|
||||
<p />
|
||||
Compares two <code>MonoString*</code> instances ordinally for equality.
|
||||
<p /></div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -523,7 +542,9 @@ mono_string_hash (MonoString *s)
|
||||
<div> the hash for the string.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> <p /> Compute the hash for a <code>MonoString*</code></div>
|
||||
<div>
|
||||
<p />
|
||||
Compute the hash for a <code>MonoString*</code></div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -547,7 +568,8 @@ mono_string_intern (MonoString *str)
|
||||
<div> The interned string.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div> Interns the string passed. </div>
|
||||
<div>
|
||||
Interns the string passed. </div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
@ -590,7 +612,8 @@ mono_string_new_wrapper (const char *text)
|
||||
<p />
|
||||
<div class="mapi-section">Parameters</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>text</i></td><td> pointer to UTF-8 characters.</td></tr></tbody></table> <div class="mapi-section">Description</div>
|
||||
<div> Helper function to create a string object from <i>text</i> in the current domain.</div>
|
||||
<div>
|
||||
Helper function to create a string object from <i>text</i> in the current domain.</div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
|
Reference in New Issue
Block a user