HomeSort by relevance Sort by last modified time
    Searched full:code (Results 876 - 900 of 26167) sorted by null

<<31323334353637383940>>

  /dalvik/dx/tests/087-ssa-local-vars/
info.txt 1 This is a test case to ensure proper preservation of local variable information through the register renamer and dead code remover at the beginning of the SSA conversion.
3 This test compares emitted code against a known-good (via eyeballing)
  /dalvik/libcore/dom/src/test/resources/
hc_nodtdstaff.xml 5 <code>Accountant</code>
  /dalvik/libcore/luni/src/main/java/java/lang/reflect/
TypeVariable.java 20 * This interface represents a type variables such as {@code 'T'} in {@code
21 * 'public interface Comparable&lt;T&gt;'}, the bounded {@code 'T'} in {@code
22 * 'public interface A&lt;T extends Number&gt;'} or the multiple bounded {@code
23 * 'T'} in {@code 'public interface B&lt;T extends Number & Cloneable&gt;'}.
32 * Returns the upper bounds of this type variable. {@code Object} is the
54 * code.
  /dalvik/libcore/luni/src/main/java/java/util/
IllegalFormatCodePointException.java 22 * An {@code IllegalFormatCodePointException} will be thrown if an invalid
23 * Unicode code point (defined by {@link Character#isValidCodePoint(int)}) is
35 * Constructs a new {@code IllegalFormatCodePointException} which is
36 * specified by the invalid Unicode code point.
39 * the invalid Unicode code point.
46 * Returns the invalid Unicode code point.
48 * @return the invalid Unicode code point.
62 buffer.append("Code point is ");
  /dalvik/libcore/prefs/src/main/java/java/util/prefs/
InvalidPreferencesFormatException.java 23 * in the {@code Preferences}).
30 * Constructs a new {@code InvalidPreferencesFormatException} instance with
41 * Constructs a new {@code InvalidPreferencesFormatException} instance with
42 * a detailed exception message and a nested {@code Throwable}.
47 * the nested {@code Throwable}.
54 * Constructs a new {@code InvalidPreferencesFormatException} instance with
55 * a nested {@code Throwable}.
58 * the nested {@code Throwable}.
  /dalvik/libcore/security/src/main/java/java/security/
AccessControlException.java 21 * {@code AccessControlException} is thrown if the access control infrastructure
31 * Constructs a new instance of {@code AccessControlException} with the
42 * Constructs a new instance of {@code AccessControlException} with the
43 * given message and the requested {@code Permission} which was not granted.
48 * the requested {@code Permission} which was not granted.
56 * Returns the requested permission that caused this Exception or {@code
57 * null} if there is no corresponding {@code Permission}.
59 * @return the requested permission that caused this Exception, maybe {@code null}.
Key.java 23 * {@code Key} is the common interface for all keys.
31 * The {@code serialVersionUID} to be compatible with JDK1.1.
37 * unknown, {@code null} is returned.
39 * @return the name of the algorithm of this key or {@code null} if the
45 * Returns the name of the format used to encode this key, or {@code null}
48 * @return the name of the format used to encode this key, or {@code null}
54 * Returns the encoded form of this key, or {@code null} if encoding is not
57 * @return the encoded form of this key, or {@code null} if encoding is not
KeyPairGenerator.java 27 * {@code KeyPairGenerator} is an engine class which is capable of generating a
51 * Constructs a new instance of {@code KeyPairGenerator} with the name of
62 * Returns the name of the algorithm of this {@code KeyPairGenerator}.
64 * @return the name of the algorithm of this {@code KeyPairGenerator}
71 * Returns a new instance of {@code KeyPairGenerator} that utilizes the
76 * @return a new instance of {@code KeyPairGenerator} that utilizes the
80 * if {@code algorithm} is {@code null}
103 * Returns a new instance of {@code KeyPairGenerator} that utilizes the
110 * @return a new instance of {@code KeyPairGenerator} that utilizes th
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 42 * Tests for <code>CertPathValidatorException</code> class constructors and
57 * Test for <code>CertPathValidatorException()</code> constructor
73 * Test for <code>CertPathValidatorException(String)</code> constructor
75 * Parameter <code>msg</code> is not null.
94 * Test for <code>CertPathValidatorException(String)</code> constructo
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCRL.java 29 * Stub class for <code>java.security.cert.CRL</code> tests
44 * @return <code>String</code> representation
52 * @param cert <code>Certificate</code> to be checked
53 * @return always <code>false</code>
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
Comment.java 16 * This interface inherits from <code>CharacterData</code> and represents the
18 * <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. Note that this is
22 * therefore possible to have the character sequence <code>"--"</code>
  /dalvik/libnativehelper/
README 5 class libraries. All code here:
7 - MUST not be associated with an android.* class (that code lives in
  /development/pdk/docs/porting/
lights.jd 18 <code>hardware/libhardware/include/hardware/lights.h</code>.
33 <p> To implement a Lights driver, create a shared library that implements the interface defined in <code>lights.h</code>. You must name your shared library
34 <code>liblights.so</code> so that it will get loaded from <code>/system/lib</code> at runtime.
  /external/e2fsprogs/lib/et/
com_err.c 20 default_com_err_proc (const char *whoami, errcode_t code, const
25 default_com_err_proc (const char *whoami, errcode_t code, const
32 if (code) {
33 fputs(error_message(code), stderr);
48 void com_err_va (const char *whoami, errcode_t code, const char *fmt,
51 (*com_err_hook) (whoami, code, fmt, args);
55 errcode_t code,
63 com_err_va (whoami, code, fmt, pvar);
  /external/guava/src/com/google/common/collect/
ImmutableSortedSet.java 36 * An immutable {@code SortedSet} that stores its elements in a sorted array.
42 * of a separate collection that can still change, an instance of {@code
44 * change. This class is convenient for {@code public static final} sets
57 * {@code ImmutableSortedSet} doesn't use {@link Object#equals} to determine if
59 * following relation determines whether elements {@code x} and {@code y} are
60 * equivalent: <pre> {@code
65 * two elements are equivalent: <pre> {@code
69 * <b>Warning:</b> Like most sets, an {@code ImmutableSortedSet} will not
185 * @throws NullPointerException if any of {@code elements} is nul
    [all...]
  /external/icu4c/common/
errorcode.cpp 23 UErrorCode code = errorCode; local
25 return code;
  /external/opencore/codecs_v2/audio/aac/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/codecs_v2/audio/gsm_amr/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/codecs_v2/audio/mp3/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/codecs_v2/audio/sbc/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/codecs_v2/video/avc_h264/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/codecs_v2/video/m4v_h263/
patent_disclaimer.txt 5 source code is made available hereunder are unencumbered by
6 third-party patents. Those intending to use this source code in
  /external/opencore/doc/oscl_html/
oscl__uuid_8h-source.html 14 00011 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__base_8h.html">oscl_base.h</a>"</span>
18 00015 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__mem__basic__functions_8h.html">oscl_mem_basic_functions.h</a>"</span>
22 00019 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__string__utils_8h.html">oscl_string_utils.h</a>"</span>
26 00023 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__stdstring_8h.html">oscl_stdstring.h</a>"</span>
30 <a name="l00027"></a><a class="code" href="oscl__uuid_8h.html#a1">00027</a> <span class="keyword">typedef</span> uint32 <a class="code" href="oscl__uuid_8h.html#a1">OsclUid32</a>;
31 <a name="l00028"></a><a class="code" href="oscl__uuid_8h.html#a2">00028</a> <span class="keyword">const</span> <span class="keywordtype">char</span> <a class="code" href="oscl__uuid_8h.html#a2">PV_CHAR_CLOSE_BRACKET</a> = <span class="charliteral">')'</span>;
32 <a name="l00029"></a><a class="code" href="oscl__uuid_8h.html#a3">00029</a> <span class="keyword">const</span> <span class="keywordtype">char</span> <a class="code" href="oscl__uuid_8h.html#a3">PV_CHAR_COMMA</a> = <span class="charliteral">','</span>
    [all...]
  /external/stlport/test/compiler/
ttei2.cpp 2 * It is known that this code not compiled by following compilers:
4 * It is known that this code compiled by following compilers:
  /external/webkit/WebCore/manual-tests/inspector/
debugger-pause-during-load.html 2 debugger; // You should see this code and execution line in the Scripts panel.
4 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=19053">Bug 19053: Source code not visible when script is paused before onload fires</a>.</p>

Completed in 229 milliseconds

<<31323334353637383940>>