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

<<21222324252627282930>>

  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpConfiguration.java 27 * An <code>HttpConfiguration</code> contains all the details needed to create an http connection
29 * will either consist of a <code>Proxy<code> or a port number (<code>int</code>)
30 * and host name (<code>String</code>) or all three, depending on whether or not a
31 * <code>Proxy</code> is used and the type of <code>Proxy</code> it is
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/cert/
CRLTest.java 38 * Tests for <code>java.security.cert.CRL</code> fields and methods
53 * Test for <code>CRL(String type)</code> constructor<br>
81 * Test #1 for <code>getType()</code> method<br>
82 * Assertion: returns <code>CRL</code> type
96 * Test #2 for <code>getType()</code> method<br
    [all...]
  /external/proguard/docs/manual/
limitations.html 22 have to use the <code>-dontskipnonpubliclibraryclasses</code> option, and
23 maybe even the <code>-dontskipnonpubliclibraryclassmembers</code> option.
28 processed code never <b>intentionally throws NullPointerExceptions</b> or
31 it may remove a method call <code>myObject.myMethod()</code> if that call
33 <code>myObject</code> might be null, causing a NullPointerException. In
34 some way this is a good thing: optimized code may throw fewer exceptions
    [all...]
  /frameworks/base/docs/html/guide/tutorials/notepad/
notepad-extra-credit.jd 11 <li><em>How to run your application in debug mode</code></em></li>
26 <p>Using the working <code>Notepadv3</code>, put breakpoints in the code at the
27 beginning of the <code>onCreate()</code>, <code>onPause()</code>,
28 <code>onSaveInstanceState()</code> and <code>onResume()</code> methods in th
    [all...]
  /frameworks/base/docs/html/guide/tutorials/views/
hello-tablelayout.jd 92 <p>Notice how this resembles the structure of an HTML table. <code>TableLayout</code> is like the
93 <code>table</code> element; <code>TableRow</code> is like a <code>tr</code> element; but for our cells like
94 the html <code>td</code> element, we can use any kind of View. Here, we use <code>TextView</code> for the cells.</p
    [all...]
  /frameworks/base/docs/html/resources/tutorials/notepad/
notepad-extra-credit.jd 11 <li><em>How to run your application in debug mode</code></em></li>
26 <p>Using the working <code>Notepadv3</code>, put breakpoints in the code at the
27 beginning of the <code>onCreate()</code>, <code>onPause()</code>,
28 <code>onSaveInstanceState()</code> and <code>onResume()</code> methods in th
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.content.Intent.html 74 Class android.content.<A HREF="../../../../reference/android/content/Intent.html" target="_top"><font size="+2"><code>Intent</code></font></A>
87 <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#replaceExtras(android.content.Intent)" target="_top"><code>replaceExtras</code></A>(<code>Intent</code>)</nobr>
94 <nobr><code>Intent</code>&nbsp;<A HREF="../../../../reference/android/content/Intent.html#replaceExtras(android.os.Bundle)" (…)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.java 48 * Invokes the delegate's <code>read()</code> method.
57 * Invokes the delegate's <code>read(byte[])</code> method.
67 * Invokes the delegate's <code>read(byte[], int, int)</code> method.
79 * Invokes the delegate's <code>skip(long)</code> method.
89 * Invokes the delegate's <code>available()</code> method.
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexEncodedValue.java 20 * {@code DexEncodedValue} represents an encoded value. The value of a {@code
21 * DexAnnotationValue} is encoded as {@code DexEncodedValue}.
26 * Returns the type of this {@code DexEncodedValue}.
28 * @return the type of this {@code DexEncodedValue}
33 * Returns the value of this {@code DexEncodedValue}.
35 * @return the value of this {@code DexEncodedValue}
  /cts/tools/signature-tools/src/signature/compare/model/
IExecutableMemberDelta.java 24 * {@code IExecutableMemberDelta} models the delta between two
31 * Returns a set of modifier deltas or {@code null} if no deltas are
34 * @return a set of modifier deltas, maybe {@code null}
39 * Returns a set of exception deltas or {@code null} if no deltas are
42 * @return a set of exception deltas, maybe {@code null}
47 * Returns a set of parameter deltas or {@code null} if no deltas are
50 * @return a set of parameter deltas, maybe {@code null}
IParameterizedTypeDelta.java 24 * {@code IParameterizedTypeDelta} models the delta between two
31 * Returns a raw type delta or {@code null} if no delta is available.
33 * @return a raw type delta, maybe {@code null}
38 * Returns a owner type delta or {@code null} if no delta is available.
40 * @return a owner type delta, maybe {@code null}
45 * Returns a set of argument type deltas or {@code null} if no deltas are
48 * @return a set of argument type deltas, maybe {@code null}
  /dalvik/libcore/luni/src/main/java/java/net/
ResponseCache.java 23 * This class is an implementation of {@code URLConnection} caches intended
26 * The system's default cache can be registered by invoking the method {@code
27 * setDefault(ResponseCache)} and be retrieved by invoking the method {@code
28 * getDefault()}. If {@code URLConnection#useCaches} is set, {@code
29 * URLConnection} class will use {@code ResponseCache} to store and get
32 * Whether the resource is cached depends on the implementation of {@code
33 * ResponseCache}. If so, a {@code CacheResponse} is returned from which the
37 * To write to the cache, the protocol handlers call {@code put()}, upon which a
38 * {@code CacheRequest} is supplied to which the resources are written
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
Array.java 51 * the effect of {@code array[index]}. If the array component is a primitive
64 * if {@code array} is not an array
66 * if {@code index < 0 || index >= array.length}
107 * {@code boolean}, if possible. This reproduces the effect of {@code
118 * if the {@code array} is {@code null}
120 * if {@code array} is not an array or the element at the
123 * if {@code index < 0 || index >= array.length}
142 * {@code byte}, if possible. This reproduces the effect of {@cod
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/spec/
RSAMultiPrimePrivateCrtKeySpec.java 49 * Creates a new {@code RSAMultiPrimePrivateCrtKeySpec} with the specified
54 * the modulus {@code n}.
56 * the public exponent {@code e}.
58 * the private exponent {@code d}.
60 * the prime factor {@code p} of {@code n}.
62 * the prime factor {@code q} of {@code n}.
64 * the exponent of the prime {@code p}.
66 * the exponent of the prime {@code q}
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
SQLData.java 25 * Usually within an implementation of {@code SQLData}, there is a corresponding
27 * SQL {@code DISTINCT}. When the UDT is returned within a {@code ResultSet}, it
29 * object which is an instance of the class defined by the {@code SQLData}
33 * into the SQL {@code UDT}.
36 * a tool requiring the name of the SQL {@code UDT}, the name
38 * the UDT attributes are mapped. The tool can then implement the {@code
39 * SQLData}, {@code readSQL}, and {@code writeSQL} methods. {@code readSQL} read
    [all...]
Connection.java 39 * SQL {@code WHERE} clause</br></li>
86 * Subsequent calls to {@link #getWarnings()} will return {@code null}
101 * Although the {@code finalize} method of the connection closes the
103 * leave the {@code close} operation to take place in this way. Mainly
112 * Commits all of the changes made since the last {@code commit} or
113 * {@code rollback} of the associated transaction. All locks in the database
115 * connection objects in {@code auto-commit} mode leads to an error.
124 * Returns a new instance of {@code Statement} for issuing SQL commands to
127 * {@code ResultSets} generated by the returned statement will default to
128 * type {@code ResultSet.TYPE_FORWARD_ONLY} and concurrency level {@cod
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/
ErrorListener.java 24 * use the <code>setErrorListener</code> method to register an instance of the
26 * <code>Transformer</code> then reports all errors and warnings through this
30 * <code>ErrorListener</code>, the default <code>ErrorListener</code>
31 * is used which reports all warnings and errors to <code>System.err</code>
    [all...]
  /external/dropbear/libtommath/
bn_error.c 19 int code; member in struct:__anon1648
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code)
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
  /external/giflib/
gif_hash.h 38 #define HT_MAX_KEY 8191 /* 13bits - 1, maximal code possible */
39 #define HT_MAX_CODE 4095 /* Biggest code possible in 12 bits. */
41 /* The 32 bits of the long are divided into two parts for the key & code: */
42 /* 1. The code is 12 bits as our compression algorithm is limited to 12bits */
43 /* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. */
44 /* The key is the upper 20 bits. The code is the lower 12. */
56 void _InsertHashTable(GifHashTableType *HashTable, UINT32 Key, int Code);
  /external/opencore/doc/oscl_html/
oscl__registry__serv__impl__tls_8h-source.html 19 00022 <span class="preprocessor">#include "<a class="code" href="osclconfig__proc_8h.html">osclconfig_proc.h</a>"</span>
21 00024 <span class="preprocessor">#include "<a class="code" href="oscl__registry__serv__impl_8h.html">oscl_registry_serv_impl.h</a>"</span>
22 00025 <span class="preprocessor">#include "<a class="code" href="oscl__registry__types_8h.html">oscl_registry_types.h</a>"</span>
23 00026 <span class="preprocessor">#include "<a class="code" href="oscl__vector_8h.html">oscl_vector.h</a>"</span>
24 00027 <span class="preprocessor">#include "<a class="code" href="oscl__mem_8h.html">oscl_mem.h</a>"</span>
29 <a name="l00032"></a><a class="code" href="classOsclRegistryServTlsImpl.html">00032</a> <span class="keyword">class </span><a class="code" href="classOsclRegistryServTlsImpl.html">OsclRegistryServTlsImpl</a>
32 00035 <a class="code" href="classOsclRegistryServTlsImpl.html#b0">OsclRegistryServTlsImpl</a>();
33 00036 <span class="keyword">virtual</span> <a class="code" href="classOsclRegistryServTlsImpl.html#b1">~OsclRegistryServTlsImpl</a>();
35 00038 int32 <a class="code" href="classOsclRegistryServTlsImpl.html#b2">Connect</a>()
    [all...]
  /external/strace/linux/
ioctlsort.c 16 unsigned long code; member in struct:ioctlent
27 unsigned long code1 = ((struct ioctlent *) a)->code;
28 unsigned long code2 = ((struct ioctlent *) b)->code;
40 ioctls[i].code &= ~_IOC_DIRMASK;
46 if (i == 0 || ioctls[i].code != ioctls[i-1].code ||
49 ioctls[i].header, ioctls[i].name, ioctls[i].code);
  /external/strace/strace/linux/
ioctlsort.c 16 unsigned long code; member in struct:ioctlent
27 unsigned long code1 = ((struct ioctlent *) a)->code;
28 unsigned long code2 = ((struct ioctlent *) b)->code;
40 ioctls[i].code &= ~_IOC_DIRMASK;
46 if (i == 0 || ioctls[i].code != ioctls[i-1].code ||
49 ioctls[i].header, ioctls[i].name, ioctls[i].code);
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.ContactMethods.html 74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html" target="_top"><font size="+2"><code>Contacts.ContactMethods</code></font></A>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#addPostalLocation(android.content.Context, long, double, double)" target="_top"><code>addPostalLocation</code></A>(<code>Context,</nobr> long<nobr>,</nobr> double<nobr>,</nobr> double<nobr><nobr></code>) </nobr>
98 <nobr><code>Object</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#decodeImProtoco (…)
    [all...]
android.provider.Contacts.Intents.Insert.html 74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#Contacts.Intents.Insert()" target="_top"><code>Contacts.Intents.Insert</code></A>() </nobr>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#ACTION" target="_top"><code>ACTION</code></font></A></nobr> </TD>
116 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#COMPANY" target (…)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
Cancelable.java 26 * Requests this <code>Cancelable</code> to be canceled. This function will
27 * return <code>true</code> if and only if the task is originally running
31 * the code like this: <pre>
42 * Gets the results of this <code>Cancelable</code> task.

Completed in 105 milliseconds

<<21222324252627282930>>