HomeSort by relevance Sort by last modified time
    Searched full:code (Results 726 - 750 of 116262) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/main/java/java/lang/
Math.java 51 * <li>{@code abs(-0.0) = +0.0}</li>
52 * <li>{@code abs(+infinity) = +infinity}</li>
53 * <li>{@code abs(-infinity) = +infinity}</li>
54 * <li>{@code abs(NaN) = NaN}</li>
66 * <li>{@code abs(-0.0) = +0.0}</li>
67 * <li>{@code abs(+infinity) = +infinity}</li>
68 * <li>{@code abs(-infinity) = +infinity}</li>
69 * <li>{@code abs(NaN) = NaN}</li>
79 * If the argument is {@code Integer.MIN_VALUE}, {@code Integer.MIN_VALUE
    [all...]
StrictMath.java 60 * <li>{@code abs(-0.0) = +0.0}</li>
61 * <li>{@code abs(+infinity) = +infinity}</li>
62 * <li>{@code abs(-infinity) = +infinity}</li>
63 * <li>{@code abs(NaN) = NaN}</li>
75 * <li>{@code abs(-0.0) = +0.0}</li>
76 * <li>{@code abs(+infinity) = +infinity}</li>
77 * <li>{@code abs(-infinity) = +infinity}</li>
78 * <li>{@code abs(NaN) = NaN}</li>
88 * If the argument is {@code Integer.MIN_VALUE}, {@code Integer.MIN_VALUE
    [all...]
StringBuilder.java 28 * {@link StringBuffer} for non-concurrent use; unlike {@code StringBuffer} this
33 * <p>The majority of the modification methods on this class return {@code
35 * {@code new StringBuilder("a").append("b").append("c").toString()}.
50 * Constructs an instance with an initial capacity of {@code 16}.
63 * if the specified {@code capacity} is negative.
72 * specified {@code CharSequence}. The capacity of the new builder will be
73 * the length of the {@code CharSequence} plus 16.
76 * the {@code CharSequence} to copy into the builder.
78 * if {@code seq} is {@code null}
    [all...]
  /docs/source.android.com/src/source/
developing.jd 27 <p>To work with the Android code, you will need to use both Git and Repo. In most situations, you can use Git instead of Repo, or mix Repo and Git commands to form complex commands. Using Repo for basic across-network operations will make your work much simpler, however.</p>
39 <p><strong>Gerrit</strong> is a web-based code review system for projects that use git. Gerrit encourages more centralized use of Git by allowing all authorized users to submit changes, which are automatically merged if they pass code review. In addition, Gerrit makes reviewing easier by displaying changes side by side in-browser and enabling inline comments. </p>
48 <p>Use <code>repo start</code> to start a new topic branch.</p>
54 <p>Use <code>git add</code> to stage changes.</p>
57 <p>Use <code>git commit</code> to commit changes.</p>
60 <p>Use <code>repo upload</code> to upload changes to the review server.</p
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 37 * of this class. Read the source code of CtClassType if you are
44 * An instance of <code>CtClass</code> represents a class.
45 * It is obtained from <code>ClassPool</code>.
73 * The <code>CtClass</code> object representing
74 * the <code>boolean</code> type.
79 * The <code>CtClass</code> object representin
    [all...]
  /frameworks/base/docs/html/guide/topics/resources/
animation-resource.jd 53 <dd><code>res/animator/<em>filename</em>.xml</code><br/>
62 In Java: <code>R.animator.<em>filename</em></code><br/>
63 In XML: <code>@[<em>package</em>:]animator/<em>filename</em></code>
98 <code>&lt;set&gt;</code>, <code>&lt;objectAnimator&gt;</code>, or <code>&lt;valueAnimator&gt;</code>. You ca
    [all...]
  /prebuilts/tools/common/easymock-tools/
Documentation.html 22 Mock Objects simulate parts of the behavior of domain code,
30 dynamically - no need to write them, and no generated code!
38 <li>Supports refactoring-safe Mock Objects: test code will not break at runtime when renaming methods or reordering method parameters
69 <li>Unzip the EasyMock zip file (<code>easymock-3.1.zip</code>).</li>
70 <li>Go into the <code>easymock-3.1</code> directory.</li>
71 <li>Add the EasyMock jar file (<code>easymock.jar</code>) to your classpath.</li>
73 <li>The tests are in <code>easymock-3.1-tests.jar</code> and can be launched with a JUnit TestRunner
    [all...]
  /libcore/luni/src/main/java/java/sql/
PreparedStatement.java 29 * An SQL Statement is put into a {@code PreparedStatement} and is precompiled
32 * Setter methods are supplied in the {@code PreparedStatement} interface for
33 * the setting of {@code IN} parameters for the statement. The setter method
34 * used for each {@code IN} parameter must match the parameter's type.
39 * Add a set of parameters to the {@code PreparedStatement}'s command batch.
50 * {@code Statement}. Setting a parameter value replaces the previous value. This
60 * Executes the SQL statement in this {@code PreparedStatement}.
62 * A {@code PreparedStatement} may return multiple results. The execute
63 * method executes the {@code PreparedStatement} and returns a flag
65 * {@code getResultSet} or {@code getUpdateCount} are used to retriev
    [all...]
  /libcore/luni/src/main/java/java/util/
Arrays.java 24 * {@code Arrays} contains static methods which operate on arrays.
144 * Returns a {@code List} of the objects in the specified array. The size of the
145 * {@code List} cannot be modified, i.e. adding and removing are unsupported, but
151 * @return a {@code List} of the elements of the specified array.
159 * Performs a binary search for {@code value} in the ascending sorted array {@code array}.
166 * is {@code -index - 1} where the element would be inserted.
173 * Performs a binary search for {@code value} in the ascending sorted array {@code array},
183 * is {@code -index - 1} where the element would be inserted
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECParameterSpec_ImplTest.java 33 * Tests for <code>ECParameterSpec</code> class fields and methods.
48 * Test #1 for <code>ECParameterSpec(EllipticCurve, ECPoint, BigInteger, int)</code> constructor<br>
49 * Assertion: creates <code>ECParameterSpec</code> instance<br>
64 * Test #2 for <code>ECParameterSpec(EllipticCurve, ECPoint, BigInteger, int)</code> constructor<br>
65 * Assertion: throws <code>NullPointerException</code> i
    [all...]
  /frameworks/base/docs/html/tools/help/
systrace.jd 7 <p>The {@code systrace} tool helps analyze the performance of your application by capturing and
13 <p>The {@code systrace} tool is particularly useful in diagnosing display problems where an
15 on how to use {@code systrace}, see <a href="{@docRoot}tools/debugging/systrace.html">Analyzing
21 <p>In order to run {@code systrace}, the {@code adb} tool and
26 <p>The syntax for running {@code systrace} is as follows.</p>
47 <p>The table below lists the command line options for {@code systrace}.</p>
57 <td><code>-o&nbsp;&lt;<em>FILE</em>&gt;</code></td>
63 <td><code>-t N, --time=N</code></td
    [all...]
  /libcore/luni/src/main/java/java/io/
StringWriter.java 23 * A specialized {@link Writer} that writes characters to a {@code StringBuffer}
35 * Constructs a new {@code StringWriter} which has a {@link StringBuffer}
36 * allocated with the default size of 16 characters. The {@code
37 * StringBuffer} is also the {@code lock} used to synchronize access to this
46 * Constructs a new {@code StringWriter} which has a {@link StringBuffer}
47 * allocated with a size of {@code initialSize} characters. The {@code
48 * StringBuffer} is also the {@code lock} used to synchronize access to this
63 * Calling this method has no effect. In contrast to most {@code Writer} subclasses,
64 * the other methods in {@code StringWriter} do not throw an {@code IOException} i
    [all...]
  /external/expat/doc/
reference.html 30 <code>XML::Parser</code>, Python's <code>xml.parsers.expat</code>, and
169 <dt><code><a href= "#XML_ParserCreate"
170 >XML_ParserCreate</a></code></dt>
173 <dt><code><a href= "#XML_SetElementHandler"
174 >XML_SetElementHandler</a></code></dt>
177 <dt><code><a href= "#XML_SetCharacterDataHandler"
178 >XML_SetCharacterDataHandler</a></code></dt
    [all...]
  /dalvik/docs/
porting-guide.html 19 Basic familiarity with the Android platform, source code structure, and
27 The native code in the core libraries (chiefly <code>libcore</code>,
28 but also <code>dalvik/vm/native</code>) is written in C/C++ and is expected
31 The core libraries pull in code from many other projects, including
54 The code lives in <code>dalvik/vm/arch/*</code>, with the FFI-based versio
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
serial.idl 2 // Use of this source code is governed by a BSD-style license that can be
5 // Use the <code>chrome.serial</code> API to read from and write to a device
10 // The device's system path. This should be passed as the <code>path</code>
11 // argument to <code>chrome.serial.connect</code> in order to connect to
28 // can be fetched with <code>getConnections</code>.
42 // bitrate, even if the port itself supports that bitrate. <code>9600</code
    [all...]
manifest_types.json 2 // Use of this source code is governed by a BSD-style license that can be
20 // "description": "The <code>externally_connectable</code> manifest property declares which extensions, apps, and web pages can connect to your extension via $ref:runtime.connect and $ref:runtime.sendMessage.",
23 "description": "<p>The IDs of extensions or apps that are allowed to connect. If left empty or unspecified, no extensions or apps can connect.</p><p>The wildcard <code>\"*\"</code> will allow all extensions and apps to connect.</p>",
29 "description": "<p>The URL patterns for <em>web pages</em> that are allowed to connect. <em>This does not affect content scripts.</em> If left empty or unspecified, no web pages can connect.</p><p>Patterns cannot include wildcard domains nor subdomains of (effective) top level domains; <code>*://google.com/*</code> and <code>http://*.chromium.org/*</code> are valid, while <code>&lt;all_urls&gt;</code>, <code>http://*/*</code>, <code>*://*.com/*</code>, and even <code>http:// (…)
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_truetype_font_dev.idl 2 * Use of this source code is governed by a BSD-style license that can be
7 * This file defines the <code>PPB_TrueTypeFont_Dev</code> interface. This
104 * The <code>PP_TrueTypeFontDesc</code> struct describes a TrueType font. It is
148 * @param[in] instance A <code>PP_Instance</code> requesting the family names.
149 * @param[in] output A <code>PP_ArrayOutput</code> to hold the names.
151 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upo
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_truetype_font_dev.h 2 * Use of this source code is governed by a BSD-style license that can be
25 * This file defines the <code>PPB_TrueTypeFont_Dev</code> interface. This
128 * The <code>PP_TrueTypeFontDesc</code> struct describes a TrueType font. It is
173 * @param[in] instance A <code>PP_Instance</code> requesting the family names.
174 * @param[in] output A <code>PP_ArrayOutput</code> to hold the names.
176 * @param[in] callback A <code>PP_CompletionCallback</code> to be called upo
    [all...]
  /external/chromium_org/ppapi/cpp/
size.h 2 // Use of this source code is governed by a BSD-style license that can be
27 /// A constructor accepting a pointer to a <code>PP_Size</code> and
28 /// converting the <code>PP_Size</code> to a <code>Size</code>. This is an
31 /// @param[in] s A pointer to a <code>PP_Size</code>.
39 /// converting them to a <code>Size</code>
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.preference.PreferenceActivity.html 74 Class android.preference.<A HREF="../../../../reference/android/preference/PreferenceActivity.html" target="_top"><font size="+2"><code>PreferenceActivity</code></font></A>
76 <p><font xsize="+1">Added interface <code>android.preference.PreferenceFragment.OnPreferenceStartFragmentCallback</code>.<br></font>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/preference/PreferenceActivity.html#finishPreferencePanel(android.app.Fragment, int, android.content.Intent)" target="_top"><code>finishPreferencePanel</code></A>(<code>Fragment,</nobr> int<nobr>,</nobr> Intent<nobr><nobr></code>)</nobr
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
android.renderscript.Element.html 74 Class android.renderscript.<A HREF="../../../../reference/android/renderscript/Element.html" target="_top"><font size="+2"><code>Element</code></font></A>
87 <nobr><code>Element</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Element.html#F64_2(android.renderscript.RenderScript)" target="_top"><code>F64_2</code></A>(<code>RenderScript</code>)</nobr>
94 <nobr><code>Element</code>&nbsp;<A HREF="../../../../reference/android/renderscript/Element.html#F64_3(android.renderscript. (…)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 21 * An iterator for editing a code attribute.
23 * <p>If there are multiple <code>CodeIterator</code>s referring to the
24 * same <code>Code_attribute</code>, then inserting a gap by one
25 * <code>CodeIterator</code> will break the other
26 * <code>CodeIterator</code>.
28 * <p>This iterator does not provide <code>remove()</code>
    [all...]
  /external/chromium_org/v8/src/
stub-cache.h 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
44 // It maps (map, name, type)->Code*
74 Code* value;
83 Handle<Code> FindIC(Handle<Name> name,
85 Code::Kind kind,
89 Handle<Code> FindHandler(Handle<Name> name,
91 Code::Kind kind,
94 Handle<Code> ComputeMonomorphicIC(Handle<Name> name,
96 Handle<Code> handler
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlunicode.c     [all...]
  /external/libxml2/
xmlunicode.c     [all...]

Completed in 3438 milliseconds

<<21222324252627282930>>