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

<<41424344454647484950>>

  /external/icu4c/i18n/unicode/
ucal.h 23 * UCalendar C API is used for converting between a <code>UDate</code> object
24 * and a set of integer fields such as <code>UCAL_YEAR</code>, <code>UCAL_MONTH</code>,
25 * <code>UCAL_DAY</code>, <code>UCAL_HOUR</code>, and so on
    [all...]
rbtz.h 37 * Constructs a <code>RuleBasedTimeZone</code> object with the ID and the
38 * <code>InitialTimeZoneRule</code>. The input <code>InitialTimeZoneRule</code>
39 * is adopted by this <code>RuleBasedTimeZone</code>, thus the caller must not
68 * Return true if the given <code>TimeZone</code> objects ar
    [all...]
fieldpos.h 39 * <code>FieldPosition</code> is a simple class used by <code>Format</code>
41 * identified by constants, whose names typically end with <code>_FIELD</code>,
42 * defined in the various subclasses of <code>Format</code>. See
43 * <code>ERA_FIELD</code> and its friends in <code>DateFormat</code> fo
    [all...]
  /frameworks/base/docs/html/guide/topics/media/
index.jd 78 <li>Put the sound (or other media resource) file into the <code>res/raw</code>
81 <li>Create an instance of <code>MediaPlayer</code>, referencing that resource using
94 (<code>create()</code> calls <code>prepare()</code> the first time.)</p>
102 <li>Create an instance of the <code>MediaPlayer</code> using <code>new</code></li
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Date.java 31 * {@code Date} represents a specific moment in time, to the millisecond.
56 * Initializes this {@code Date} instance to the current time.
63 * Constructs a new {@code Date} initialized to midnight in the default {@code TimeZone} on
84 * Constructs a new {@code Date} initialized to the specified date and time in the
85 * default {@code TimeZone}.
109 * Constructs a new {@code Date} initialized to the specified date and time in the
110 * default {@code TimeZone}.
136 * Initializes this {@code Date} instance using the specified millisecond value. The
147 * Constructs a new {@code Date} initialized to the date and time parsed from th
    [all...]
Currency.java 54 // In some places the code XXX is used as the fall back currency.
69 * Returns the {@code Currency} instance for the given currency code.
73 * the currency code.
74 * @return the {@code Currency} instance for this currency code.
77 * if the currency code is not a supported ISO 4217 currency
78 * code.
92 * Returns the {@code Currency} instance for this {@code Locale}'s country
    [all...]
  /external/icu4c/common/unicode/
utf16.h 21 * This file defines macros to deal with 16-bit Unicode (UTF-16) code units and strings.
42 /* single-code point definitions -------------------------------------------- */
45 * Does this code unit alone encode a code point (BMP, not a surrogate)?
46 * @param c 16-bit code unit
53 * Is this code unit a lead surrogate (U+d800..U+dbff)?
54 * @param c 16-bit code unit
61 * Is this code unit a trail surrogate (U+dc00..U+dfff)?
62 * @param c 16-bit code unit
69 * Is this code unit a surrogate (U+d800..U+dfff)
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/zip/
Inflater.java 29 * library and is used as such by {@code InflaterInputStream} and its
32 * The typical usage of a {@code Inflater} outside this package consists of a
34 * of {@code InflaterInputStream}.
60 * stream. Use {@code Inflater(boolean)} if the input comes without a ZLIB
72 * {@code true} indicates that no ZLIB header comes with the
82 * Release any resources associated with this {@code Inflater}. Any unused
102 * Indicates if the {@code Inflater} has inflated the entire deflated
103 * stream. If deflated bytes remain and {@code needsInput()} returns {@code
104 * true} this method will return {@code false}. This method should b
    [all...]
  /external/guava/javadoc/com/google/common/base/
Predicates.html 104 Contains static factory methods for creating <code>Predicate</code> instances.
131 <CODE>static
135 <CODE>&lt;T&gt; <A HREF="../../../../com/google/common/base/Predicate.html" title="interface in com.google.common.base">Predicate</A>&lt;T&gt;</CODE></FONT></TD>
138 </CODE></FONT></TD>
139 <TD><CODE><B><A HREF="../../../../com/google/common/base/Predicates.html#alwaysFalse()">alwaysFalse</A></B>()</CODE>
142 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a predicate that always evaluates to <code>false</code>.</TD
    [all...]
  /external/guava/javadoc/com/google/common/base/class-use/
Function.html 124 <CODE>static
128 <CODE>&lt;A,B,C&gt; <A HREF="../../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;A,C&gt;</CODE></FONT></TD>
131 </CODE></FONT></TD>
132 <TD><CODE><B>Functions.</B><B><A HREF="../../../../../com/google/common/base/Functions.html#compose(com.google.common.base.Function, com.google.common.base.Function)">compose</A></B>(<A HREF="../../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;B,C&gt;&nbsp;g,
133 <A HREF="../../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;A,? extends B&gt;&nbsp;f)</CODE>
140 <CODE>static
144 <CODE>&lt;E&gt; <A HREF="../../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>,E&gt;</CODE></FONT></TD>
147 </CODE></FONT></TD
    [all...]
  /external/guava/javadoc/com/google/common/collect/
Multimap.html 95 <DT><DT><B>Type Parameters:</B><DD><CODE>K</CODE> - the type of keys maintained by this multimap<DD><CODE>V</CODE> - the type of mapped values</DL>
108 A collection similar to a <code>Map</code>, but which may associate multiple
109 values with a single key. If you call <A HREF="../../../../com/google/common/collect/Multimap.html#put(K, V)"><CODE>put(K, V)</CODE></A> twice, with the same key
113 <p>The methods <A HREF="../../../../com/google/common/collect/Multimap.html#get(K)"><CODE>get(K)</CODE></A>, <A HREF="../../../../com/google/common/collect/Multimap.html#keySet()"><CODE>keySet()</CODE> (…)
    [all...]
  /external/opencore/doc/oscl_html/
oscl__socket__serv__imp__pv_8h-source.html 13 00005 <span class="preprocessor">#include "<a class="code" href="oscl__socket__serv__imp__base_8h.html">oscl_socket_serv_imp_base.h</a>"</span>
14 00006 <span class="preprocessor">#include "<a class="code" href="oscl__socket__serv__imp__reqlist_8h.html">oscl_socket_serv_imp_reqlist.h</a>"</span>
15 00007 <span class="preprocessor">#include "<a class="code" href="oscl__socket__tuneables_8h.html">oscl_socket_tuneables.h</a>"</span>
19 00014 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__semaphore_8h.html">oscl_semaphore.h</a>"</span>
20 00015 <span class="preprocessor">#include "<a class="code" href="oscl__mutex_8h.html">oscl_mutex.h</a>"</span>
22 00017 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__scheduler__ao_8h.html">oscl_scheduler_ao.h</a>"</span>
28 00025 <span class="preprocessor"></span><span class="keyword">class </span><a class="code" href="classOsclSocketServI.html">OsclSocketServI</a>: <span class="keyword">public</span> <a class="code" href="classHeapBase.html">HeapBase</a>, <span class="keyword">public</span> <a class="code" href="classOsclSocketServIBase.html">OsclSocketServIBase</a>
30 <a name="l00027"></a><a class="code" href="classOsclSocketServI.html">00027</a> class <a class="code" href="classOsclSocketServI.html" (…)
    [all...]
  /frameworks/base/test-runner/src/android/test/
MoreAsserts.java 40 * Asserts that the class {@code expected} is assignable from the object
41 * {@code actual}. This verifies {@code expected} is a parent class or a
42 * interface that {@code actual} implements.
49 * Asserts that class {@code expected} is assignable from the class
50 * {@code actual}. This verifies {@code expected} is a parent class or a
51 * interface that {@code actual} implements.
61 * Asserts that {@code actual} is not equal {@code unexpected}, accordin
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 17 package com.android.dx.rop.code;
30 /** {@code >= 0;} the register count for the method */
34 * {@code non-null;} {@link RegisterSpecSet} to use when indicating a block
41 * {@code non-null;} array consisting of register sets representing the
47 /** {@code non-null;} map from instructions to the variable each assigns */
53 * @param method {@code non-null;} the method being represented by this instance
76 * @param label {@code >= 0;} the block label
77 * @param specs {@code non-null;} the register set to associate with the block
101 * @param label {@code >= 0;} the block label
102 * @param specs {@code non-null;} the register set to merge into the start se
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/cert/
CertStore.java 33 * This class provides the functionality to retrieve {@code Certificate}s and
34 * {@code CRL}s from a read-only repository. This repository may be very large
65 * Creates a new {@code CertStore} instance.
74 * the certificate store parameters (may be {@code null}.
85 * Creates a new {@code CertStore} instance with the specified type and
91 * the certificate store parameters (may be {@code null}).
100 * if the {@code type} is {@code null}.
124 * Creates a new {@code CertStore} instance from the specified provider with
130 * the certificate store parameters (may be {@code null})
    [all...]
CertPathValidatorException.java 28 * A {@code CertPathValidatorException} may optionally include the certification
47 * Creates a new {@code CertPathValidatorException} with the specified
60 * if {@code certPath} is {@code null} and index is not {@code
63 * if {@code certPath} is not {@code null} and index is not
83 * Creates a new {@code CertPathValidatorException} with the specified
96 * Creates a new {@code CertPathValidatorException} with the specified
107 * Creates a new {@code CertPathValidatorException} with the specifie
    [all...]
  /external/v8/tools/
codemap.js 6 // * Redistributions of source code must retain the above copyright
35 * Constructs a mapper that maps addresses into code entries.
41 * Dynamic code entries. Used for JIT compiled code.
51 * Static code entries. Used for statically compiled code.
56 * Libraries entries. Used for the whole static code libraries.
61 * Map of memory pages occupied with static code.
81 * Adds a dynamic (i.e. moveable and discardable) code entry.
84 * @param {devtools.profiler.CodeMap.CodeEntry} codeEntry Code entry object
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 17 package com.android.dx.dex.code;
29 /** {@code non-null;} the instruction format */
35 /** {@code non-null;} the name */
41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
44 * @param format {@code non-null;} the instruction format
47 * @param name {@code non-null;} the name
83 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode value
93 * @return {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
102 * @return {@code non-null;} the instruction forma
    [all...]
HighRegisterPrefix.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
21 import com.android.dx.rop.code.SourcePosition;
27 * {@code move*} instructions to move a set of registers into
28 * registers starting at {@code 0} sequentially. This is used
33 /** {@code null-ok;} cached instructions, if constructed */
38 * unknown ({@code -1}).
40 * @param position {@code non-null;} source position
41 * @param registers {@code non-null;} source register
    [all...]
OutputCollector.java 17 package com.android.dx.dex.code;
31 * {@code non-null;} the associated finisher (which holds the instruction
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
45 * @param initialCapacity {@code >= 0;} initial capacity of the output list
46 * @param suffixInitialCapacity {@code >= 0;} initial capacity of the output
48 * @param regCount {@code >= 0;} register count for the method
59 * @param insn {@code non-null;} the instruction to add
71 * {@code 0} is the most recently added instruction,
72 * {@code 1} is the instruction before that, etc
    [all...]
  /dalvik/libcore/logging/src/main/java/java/util/logging/
ErrorManager.java 24 * error that may happen during logging. {@code Handlers} should report errors
25 * to an {@code ErrorManager}, instead of throwing exceptions, which would
31 * The error code indicating a failure that does not fit in any of the
37 * The error code indicating a failure when writing to an output stream.
42 * The error code indicating a failure when flushing an output stream.
47 * The error code indicating a failure when closing an output stream.
52 * The error code indicating a failure when opening an output stream.
57 * The error code indicating a failure when formatting the error messages.
73 * Constructs an instance of {@code ErrorManager}.
80 * Reports an error using the given message, exception and error code. Thi
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 324 * Returns <code>comparator</code> for provided serializable
325 * <code>object</code>.
327 * The <code>comparator</code> is searched in the following order: <br>-
328 * if <code>test</code> implements SerializableAssert interface then it is
329 * selected as </code>comparator</code>.<br>- if passed <code>object</code
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTMIterator.java 25 * <code>DTMIterators</code> are used to step through a (possibly
94 * The root node of the <code>DTMIterator</code>, as specified when it
104 * Reset the root node of the <code>DTMIterator</code>, overriding
137 * <code>whatToShow</code> will be skipped, but their children may still
148 * precedence over <code>whatToShow</code> and the filter. </p
    [all...]
  /development/pdk/docs/porting/
power_management.jd 36 <li><code>WAKE_LOCK_SUSPEND</code>: prevents a full system suspend. </li>
37 <li><code></code><code>WAKE_LOCK_IDLE</code>: low-power states, which often cause large interrupt latencies or that disable a set of interrupts, will not be entered from idle until the wakelocks are released. </li>
39 <p>Unless the type is specified, this document refers to wakelocks of type <code>WAKE_LOCK_SUSPEND</code>. </p>
40 <p>If the suspend operation has already started when locking a wakelock, the system will abort the suspend operation as long it has not already reached the <code>suspend_late</code> stage. This means that locking a wakelock from an interrupt handler or a freezeable thread always (…)
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 25 * <p>Implementation of <code>Hashtable</code> that uses <code>WeakReference</code>'s
29 * <p>This class follows the symantics of <code>Hashtable</code> as closely as
35 * for <code>Hashtable</code> in <code>LogFactory</code>. This application require
    [all...]

Completed in 440 milliseconds

<<41424344454647484950>>