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

<<41424344454647484950>>

  /external/proguard/src/proguard/classfile/visitor/
DotClassClassVisitor.java 33 * This InstructionVisitor lets a given <code>ClassVisitor</code> visit all
34 * classes involved in any <code>.class</code> constructs that it visits.
36 * Note that before JDK 1.5, <code>.class</code> constructs are actually
37 * compiled differently, using <code>Class.forName</code> constructs.
53 * @param classVisitor the <code>ClassVisitor</code> to which visits wil
    [all...]
  /external/wpa_supplicant/
eap_psk_common.h 40 u8 code; member in struct:eap_psk_hdr
42 u16 length; /* including code, identifier, and length */
49 u8 code; member in struct:eap_psk_hdr_1
51 u16 length; /* including code, identifier, and length */
60 u8 code; member in struct:eap_psk_hdr_2
62 u16 length; /* including code, identifier, and length */
73 u8 code; member in struct:eap_psk_hdr_3
75 u16 length; /* including code, identifier, and length */
85 u8 code; member in struct:eap_psk_hdr_4
87 u16 length; /* including code, identifier, and length *
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 45 * the integer {@code oneByte} is written to the stream.
60 * Writes {@code count} bytes from the byte array {@code buffer} starting
61 * at position {@code offset} to this stream.
66 * the start position in {@code buffer} from where to get bytes.
68 * the number of bytes from {@code buffer} to write to this
73 * if {@code offset < 0} or {@code count < 0}, or if
74 * {@code offset + count} is bigger than the length of
75 * {@code buffer}
    [all...]
  /frameworks/base/docs/html/guide/topics/manifest/
uses-permission-element.jd 9 <dd><code><a href="{@docRoot}guide/topics/manifest/manifest-element.html">&lt;manifest&gt;</a></code></dd>
18 <a href="{@docRoot}guide/topics/manifest/manifest-intro.html#perms">Permissions</a></code>
26 <dt><a name="nm"></a>{@code android:name}</dt>
28 application with the <code><a href="{@docRoot}guide/topics/manifest/permission-element.html">&lt;permission&gt;</a></code>
30 standard system permissions, such as "{@code android.permission.CAMERA}"
31 or "{@code android.permission.READ_CONTACTS}". As these examples show,
41 <dd><code><a href="{@docRoot}guide/topics/manifest/permission-element.html">&lt;permission&gt;</a></code></dd
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/7/changes/
android.webkit.WebStorage.html 74 Class android.webkit.<A HREF="../../../../reference/android/webkit/WebStorage.html" target="_top"><font size="+2"><code>WebStorage</code></font></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebStorage.html#deleteAllData()" target="_top"><code>deleteAllData</code></A>()</nobr>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/webkit/WebStorage.html#deleteOrigin(java.lang.String)" target="_top"><code>deleteOrigin</code></A>(<code>String</code>)</nobr
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
android.hardware.Camera.html 74 Class android.hardware.<A HREF="../../../../reference/android/hardware/Camera.html" target="_top"><font size="+2"><code>Camera</code></font></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/Camera.html#addCallbackBuffer(byte[])" target="_top"><code>addCallbackBuffer</code></A>(<code>byte[]</code>)</nobr>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/hardware/Camera.html#reconnect()" target="_top"><code (…)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
IOExceptionWithCause.java 40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
47 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable.
62 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyOutputStream.java 45 * Invokes the delegate's <code>write(int)</code> method.
54 * Invokes the delegate's <code>write(byte[])</code> method.
63 * Invokes the delegate's <code>write(byte[])</code> method.
74 * Invokes the delegate's <code>flush()</code> method.
82 * Invokes the delegate's <code>close()</code> method.
    [all...]
  /frameworks/base/docs/html/sdk/ndk/
index.jd 73 <li>Provides a simplified build system through the new <code>ndk-build</code> build
75 <li>Adds support for easy native debugging of generated machine code on production
76 devices through the new <code>ndk-gdb</code> command.</li>
78 <code>armeabi-v7a</code>. The new ABI extends the existing <code>armeabi</code>
87 <li>Adds a new <code>cpufeatures</code> static library (with sources) that let
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
PushbackReader.java 31 * The {@code char} array containing the chars to read.
36 * The current position within the char array {@code buf}. A value
43 * Constructs a new {@code PushbackReader} with the specified reader as
57 * Constructs a new {@code PushbackReader} with {@code in} as source reader.
58 * The size of the pushback buffer is set to {@code size}.
65 * if {@code size} is negative.
94 * {@code IOException}.
108 * Indicates whether this reader supports the {@code mark(int)} and
109 * {@code reset()} methods. {@code PushbackReader} does not support them, s
    [all...]
  /external/guava/src/com/google/common/primitives/
Bytes.java 34 * Static utility methods pertaining to {@code byte} primitives, that are not
48 * Returns a hash code for {@code value}; equal to the result of invoking
49 * {@code ((Byte) value).hashCode()}.
51 * @param value a primitive {@code byte} value
52 * @return a hash code for the value
59 * Returns {@code true} if {@code target} is present as an element anywhere in
60 * {@code array}.
62 * @param array an array of {@code byte} values, possibly empt
    [all...]
Floats.java 36 * Static utility methods pertaining to {@code float} primitives, that are not
47 * Returns a hash code for {@code value}; equal to the result of invoking
48 * {@code ((Float) value).hashCode()}.
50 * @param value a primitive {@code float} value
51 * @return a hash code for the value
59 * Compares the two specified {@code float} values using {@link
64 * @param a the first {@code float} to compare
65 * @param b the second {@code float} to compare
73 * Returns {@code true} if {@code target} is present as an element anywhere i
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
TimeZone.java 29 * {@code TimeZone} represents a time zone offset, taking into account
32 * Typically, you get a {@code TimeZone} using {@code getDefault}
33 * which creates a {@code TimeZone} based on the time zone where the
35 * {@code getDefault} creates a {@code TimeZone} object based on
38 * You can also get a {@code TimeZone} using {@code getTimeZone}
41 * Time {@code TimeZone} object with the following: <blockquote>
47 * </blockquote> You can use the {@code getAvailableIDs} method to iterat
    [all...]
  /cts/tools/dasm/src/dasm/
DopInfo.java 19 import com.android.dx.dex.code.DalvOps;
20 import com.android.dx.dex.code.Dop;
21 import com.android.dx.dex.code.Dops;
22 import com.android.dx.dex.code.InsnFormat;
23 import com.android.dx.dex.code.form.Form10t;
24 import com.android.dx.dex.code.form.Form10x;
25 import com.android.dx.dex.code.form.Form11n;
26 import com.android.dx.dex.code.form.Form11x;
27 import com.android.dx.dex.code.form.Form12x;
28 import com.android.dx.dex.code.form.Form20t
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
DateFormat.java 39 * represented as a {@code Date} object or as the milliseconds since January 1,
48 * {@code DateFormat} helps you to format and parse dates for any locale. Your
49 * code can be completely independent of the locale conventions for months, days
77 * {@code getDateInstance}:
86 * {@code DateFormat} can also be used to parse strings:
95 * Use {@code getDateInstance} to get the normal date format for a country.
96 * Other static factory methods are available: Use {@code getTimeInstance} to
97 * get the time format for a country. Use {@code getDateTimeInstance} to get the
110 * over the formatting or parsing, try casting the {@code DateFormat} you get
111 * from the factory methods to a {@code SimpleDateFormat}. This will work fo
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
SSLContext.java 32 * for {@code SSLSocketFactory}'s and {@code SSLEngine}s.
42 * Creates a new {@code SSLContext} instance for the specified protocol.
46 * @return the created {@code SSLContext} instance.
50 * if {@code protocol} is {@code null} (instead of
64 * Creates a new {@code SSLContext} instance for the specified protocol from
71 * @return an {@code SSLContext} for the requested protocol.
78 * if {@code protocol} is {@code null} (instead o
    [all...]
  /external/bluetooth/glib/glib/
gerror.c 35 gint code,
44 error->code = code;
53 * @code: error code
57 * Creates a new #GError with the given @domain and @code,
64 gint code,
75 error = g_error_new_valist (domain, code, format, args);
84 * @code: error code
    [all...]
  /external/guava/javadoc/com/google/common/collect/
ImmutableList.Builder.html 108 <code>public static final</code> lists ("constant lists").
111 <pre> <code>public static final ImmutableList&lt;Color&gt; GOOGLE_COLORS
115 .build();</code></pre>
117 <p>Builder instances can be reused - it is safe to call <A HREF="../../../../com/google/common/collect/ImmutableList.Builder.html#build()"><CODE>build()</CODE></A>
136 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableList.Builder.html#ImmutableList.Builder()">ImmutableList.Builder</A></B>()</CODE>
153 <CODE>&nbsp;<A HREF="../../../../com/google/common/collect/ImmutableList.Builder.html" title="class in com.google.common.collect">ImmutableList.Builder</A>&lt;<A HREF="../../../../com/google/common/collect/ImmutableList.Builder.html" title="type parameter in ImmutableList.Builder">E</A>&gt;</CODE></FONT></TD
    [all...]
ImmutableSet.Builder.html 111 <code>public static final</code> sets ("constant sets").
114 <pre><code>public static final ImmutableSet&lt;Color&gt; GOOGLE_COLORS
118 .build();</code></pre>
120 <p>Builder instances can be reused - it is safe to call <A HREF="../../../../com/google/common/collect/ImmutableSet.Builder.html#build()"><CODE>build()</CODE></A>
139 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSet.Builder.html#ImmutableSet.Builder()">ImmutableSet.Builder</A></B>()</CODE>
156 <CODE>&nbsp;<A HREF="../../../../com/google/common/collect/ImmutableSet.Builder.html" title="class in com.google.common.collect">ImmutableSet.Builder</A>&lt;<A HREF="../../../../com/google/common/collect/ImmutableSet.Builder.html" title="type parameter in ImmutableSet.Builder">E</A>&gt;</CODE></FONT></TD
    [all...]
EnumBiMap.html 109 A <code>BiMap</code> backed by two <code>EnumMap</code> instances. Null keys and values
110 are not permitted. An <code>EnumBiMap</code> and its inverse are both
139 <TD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.Entry.html?is-external=true" title="class or interface in java.util">Map.Entry</A>&lt;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.Entry.html?is-external=true" title="class or interface in java.util">K</A>,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.Entry.html?is-external=true" title="class or interface in java.util">V</A>&gt;</CODE></TD>
154 <CODE>&nbsp;void</CODE></FONT></TD
    [all...]
  /frameworks/base/docs/html/resources/articles/
live-wallpapers.jd 31 href="../../../reference/android/view/SurfaceView.html"><code>SurfaceView</code></a> or <a
32 href="../../../reference/android/graphics/Canvas.html"><code>Canvas</code></a>.
34 href="../samples/CubeLiveWallpaper/index.html">CubeLiveWallpaper sample code</a>.</p>
39 href="../../../reference/android/service/wallpaper/WallpaperService.html#onCreateEngine()">{@code
42 <code>WallpaperService.Engine</code></a>. The engine is responsible for
44 on which you can draw, just like you would with a <code>SurfaceView</code></a>
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.rop.code.SourcePosition;
31 /** {@code non-null;} array containing addresses for the start of each basic
35 /** {@code non-null;} array containing addresses for the final instruction
39 /** {@code non-null;} array containing addresses for the end (just past the
47 * @param method {@code non-null;} the method to have block addresses fo
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
StackTraceElement.java 23 * A representation of a single stack frame. Arrays of {@code StackTraceElement}
25 * call stack at the time a {@code Throwable} gets thrown.
47 * Constructs a new {@code StackTraceElement} for a specified execution
55 * The name of the file where execution is at or {@code null}.
58 * if unknown or {@code -2} if the execution is in a native
61 * if {@code cls} or {@code method} is {@code null}.
89 * <li>{@code obj} must be a stack trace element,</li>
90 * <li>the method names of this stack trace element and of {@code obj} mus
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
Permission.java 23 * {@code Permission} is the common base class of all permissions that
35 * Compares the specified object with this {@code Permission} for equality
36 * and returns {@code true} if the specified object is equal, {@code false}
43 * object to be compared for equality with this {@code
45 * @return {@code true} if the specified object is equal to this {@code
46 * Permission}, otherwise {@code false}.
52 * Returns the hash code value for this {@code Permission}. Returns the sam
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_StringWriter.java 29 * <code>lock</code> used to synchronize access to this Writer.
39 * size of <code>initialSize</code> characters. The StringBuffer is also
40 * the <code>lock</code> used to synchronize access to this Writer.
99 * Writes <code>count</code> characters starting at <code>offset</code>
    [all...]

Completed in 159 milliseconds

<<41424344454647484950>>