/frameworks/base/docs/html/resources/articles/ |
creating-input-method.jd | 24 <p>A good starting point would be the SoftKeyboard sample code provided as part 25 of the SDK. You can modify the sample code to start building your own input 29 <code>AndroidManifest.xml</code> file, you declare the input method as a 60 <p>The typical life-cycle of an <code>InputMethodService</code> looks like 75 time, <code>InputMethodService.onCreateInputView()</code> will be called. Create 83 and you can return <code>null</code> from calls t [all...] |
/packages/apps/Email/src/org/apache/commons/io/output/ |
ProxyWriter.java | 47 * Invokes the delegate's <code>write(int)</code> method.
56 * Invokes the delegate's <code>write(char[])</code> method.
65 * Invokes the delegate's <code>write(char[], int, int)</code> method.
76 * Invokes the delegate's <code>write(String)</code> method.
85 * Invokes the delegate's <code>write(String)</code> method. [all...] |
/external/guava/javadoc/com/google/common/base/ |
CharMatcher.html | 107 Determines a true or false value for any Java <code>char</code> value, just as 108 <A HREF="../../../../com/google/common/base/Predicate.html" title="interface in com.google.common.base"><CODE>Predicate</CODE></A> does for any <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><CODE>Object</CODE></A>. Also offers basic text 113 character" is used to mean "any character <code>c</code> for which <code>this.matches(c)</code> returns <code>true</code>" [all...] |
/external/guava/javadoc/com/google/common/collect/ |
ImmutableList.html | 108 A high-performance, immutable, random-access <code>List</code> implementation. 111 <p>Unlike <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collections.html?is-external=true#unmodifiableList(java.util.List)" title="class or interface in java.util"><CODE>Collections.unmodifiableList(java.util.List<? extends T>)</CODE></A>, which is a <i>view</i> of a 112 separate collection that can still change, an instance of <code>ImmutableList</code> contains its own private data and will <i>never</i> change. 113 <code>ImmutableList</code> is convenient for <code>public static final</code> list [all...] |
EnumHashBiMap.html | 109 A <code>BiMap</code> backed by an <code>EnumMap</code> instance for keys-to-values, and 110 a <code>HashMap</code> instance for values-to-keys. Null keys are not permitted, 111 but null values are. An <code>EnumHashBiMap</code> and its inverse are both 140 <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><<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>></CODE></TD [all...] |
/external/v8/src/ |
scopeinfo.cc | 6 // * Redistributions of source code must retain the above copyright 151 // Encoding format in the Code object: 247 ScopeInfo<Allocator>::ScopeInfo(Code* code) 253 if (code == NULL || code->sinfo_size() == 0) return; 255 Object** p0 = &Memory::Object_at(code->sinfo_start()); 262 ASSERT((p - p0) * kPointerSize == code->sinfo_size()); 316 int ScopeInfo<Allocator>::Serialize(Code* code) { [all...] |
/external/guava/javadoc/com/google/common/annotations/class-use/ |
GwtIncompatible.html | 124 <CODE>static <A HREF="../../../../../com/google/common/base/Predicate.html" title="interface in com.google.common.base">Predicate</A><<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>></CODE></FONT></TD> 125 <TD><CODE><B>Predicates.</B><B><A HREF="../../../../../com/google/common/base/Predicates.html#instanceOf(java.lang.Class)">instanceOf</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A><?> clazz)</CODE> 128 Returns a predicate that evaluates to <code>true</code> if the object being 150 <CODE>static 154 <CODE><T> T[]</CODE></FONT></TD> 157 </CODE></FONT></TD [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
NumberFormat.java | 38 * interface for formatting and parsing numbers. {@code NumberFormat} also 42 * {@code NumberFormat} helps you to format and parse numbers for any locale. 43 * Your code can be completely independent of the locale conventions for decimal 72 * {@code getInstance}. 81 * You can also use a {@code NumberFormat} to parse numbers: 90 * Use {@code getInstance} or {@code getNumberInstance} to get the normal number 91 * format. Use {@code getIntegerInstance} to get an integer number format. Use 92 * {@code getCurrencyInstance} to get the currency number format and use 93 * {@code getPercentInstance} to get a format for displaying percentages. Wit [all...] |
/dalvik/libcore/nio_char/src/main/java/java/nio/charset/ |
CharsetDecoder.java | 38 * method until the additional input is not needed, the <code>endOfInput</code> 42 * method for the last time, and then the <code>endOfInput</code> parameter 121 * Constructs a new <code>CharsetDecoder</code> using the given 122 * <code>Charset</code>, average number and maximum number of characters 127 * the <code>Charset</code> to be used by this decoder [all...] |
/dalvik/libcore/xml/src/main/java/javax/xml/validation/ |
SchemaFactory.java | 51 * <code>newSchema</code> methods is being invoked, applications 52 * may not attempt to recursively invoke the <code>newSchema</code> method, 90 * <td>{@link javax.xml.XMLConstants#W3C_XML_SCHEMA_NS_URI} ("<code>http://www.w3.org/2001/XMLSchema</code>")</td> 94 * <td>{@link javax.xml.XMLConstants#RELAXNG_NS_URI} ("<code>http://relaxng.org/ns/structure/1.0</code>")</td> 112 * <code>null</code> {@link ErrorHandler} an [all...] |
/dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
Throwable.java | 27 * two direct subclasses are recoverable exceptions ({@code Exception}) and 28 * unrecoverable errors ({@code Error}). This class provides common methods for 30 * circumstances in which the {@code Throwable} was created (basically an error 34 * A {@code Throwable} can also include a cause, which is a nested {@code 35 * Throwable} that represents the original problem that led to this {@code 37 * common {@code Throwable} without losing the detailed original error 74 * Constructs a new {@code Throwable} that includes the current stack trace. 84 * Constructs a new {@code Throwable} with the current stack trace and the 88 * the detail message for this {@code Throwable} [all...] |
/external/proguard/src/proguard/classfile/instruction/ |
Instruction.java | 682 * Writes the Instruction at the given offset in the given code attribute. 686 write(codeAttribute.code, offset); 691 * Writes the Instruction at the given offset in the given code array. 693 public void write(byte[] code, int offset) 698 code[offset++] = InstructionConstants.OP_WIDE; 702 code[offset++] = opcode; 705 writeInfo(code, offset); 722 protected abstract void readInfo(byte[] code, int offset); 728 protected abstract void writeInfo(byte[] code, int offset); 793 protected static int readByte(byte[] code, int offset [all...] |
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttAnnotationDefault.java | 22 * Attribute class for {@code AnnotationDefault} attributes. 25 /** {@code non-null;} attribute name for attributes of this type */ 28 /** {@code non-null;} the annotation default value */ 31 /** {@code >= 0;} attribute data length in the original classfile (not 38 * @param value {@code non-null;} the annotation default value 39 * @param byteLength {@code >= 0;} attribute data length in the original 62 * @return {@code non-null;} the value
|
AttExceptions.java | 23 * Attribute class for standard {@code Exceptions} attributes. 26 /** {@code non-null;} attribute name for attributes of this type */ 29 /** {@code non-null;} list of exception classes */ 35 * @param exceptions {@code non-null;} list of classes, presumed but not 36 * verified to be subclasses of {@code Throwable} 61 * {@code Throwable}. 63 * @return {@code non-null;} the list of classes
|
BaseLocalVariables.java | 19 import com.android.dx.cf.code.LocalVariableList; 23 * Base attribute class for standard {@code LocalVariableTable} 24 * and {@code LocalVariableTypeTable} attributes. 27 /** {@code non-null;} list of local variable entries */ 33 * @param name {@code non-null;} attribute name 34 * @param localVariables {@code non-null;} list of local variable entries 60 * @return {@code non-null;} the list
|
/dalvik/dx/src/com/android/dx/dex/code/ |
ZeroSizeInsn.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpecList; 20 import com.android.dx.rop.code.SourcePosition; 24 * Pseudo-instruction base class for zero-size (no code emitted) 26 * about the code they are adjacent to. 31 * unknown ({@code -1}). 33 * @param position {@code non-null;} source position
|
/dalvik/dx/src/com/android/dx/dex/file/ |
Section.java | 24 * A section of a {@code .dex} file. Each section consists of a list 28 /** {@code null-ok;} name of this part, for annotation purposes */ 31 /** {@code non-null;} file that this instance is part of */ 34 /** {@code > 0;} alignment requirement for the final output; 38 /** {@code >= -1;} offset from the start of the file to this part, or 39 * {@code -1} if not yet known */ 50 * @throws IllegalArgumentException thrown if {@code alignment} 63 * @param name {@code null-ok;} the name of this instance, for annotation 65 * @param file {@code non-null;} file that this instance is part of 66 * @param alignment {@code > 0;} alignment requirement for the final output [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
RuntimeException.java | 21 * {@code RuntimeException} is the superclass of all classes that represent 24 * doesn't extend {@code RuntimeException} or {@link Error}), the compiler does 25 * not require code to handle runtime exceptions. 32 * Constructs a new {@code RuntimeException} that includes the current stack 40 * Constructs a new {@code RuntimeException} with the current stack trace 51 * Constructs a new {@code RuntimeException} with the current stack trace, 64 * Constructs a new {@code RuntimeException} with the current stack trace
|
/dalvik/libcore/security/src/main/java/java/security/ |
SecureRandomSpi.java | 23 * {@code SecureRandomSpi} is the <i>Service Provider Interface</i> (<b>SPI</b>) definition 33 * Reseeds this {@code SecureRandomSpi} instance with the specified {@code 34 * seed}. The seed of this {@code SecureRandomSpi} instance is supplemented, 43 * Generates and stores random bytes in the given {@code byte[]} for each 47 * the {@code byte[]} to be filled with random bytes. 53 * the seed generation algorithm used by this {@code SecureRandomSpi}.
|
/dalvik/libcore/security/src/main/java/java/security/acl/ |
Group.java | 24 * A {@code Principal} that represents a group of principals. 35 * @return {@code true} if the member was added, {@code false} if it was already a member. 44 * @return {@code true} if the member was removed, {@code false} if it was not a member. 53 * @return {@code true} if the principal is a member, otherwise {@code false}.
|
/dalvik/libcore/security/src/main/java/java/security/spec/ |
RSAPrivateKeySpec.java | 36 * Creates a new {@code RSAPrivateKeySpec} with the specified modulus and 40 * the modulus {@code n}. 42 * the private exponent {@code e} 50 * Returns the modulus {@code n}. 52 * @return the modulus {@code n}. 59 * Returns the private exponent {@code e}. 61 * @return the private exponent {@code e}.
|
RSAPublicKeySpec.java | 36 * Creates a new {@code RSAPublicKeySpec} with the specified modulus and 40 * the modulus {@code n}. 42 * the public exponent {@code d}. 50 * Returns the modulus {@code n}. 52 * @return the modulus {@code n}. 59 * Returns the public exponent {@code d}. 61 * @return the public exponent {@code d}.
|
/dalvik/libcore/sql/src/main/java/java/sql/ |
Time.java | 23 * Java representation of an SQL {@code TIME} value. Provides utilities to 31 * Constructs a {@code Time} object using the supplied values for <i>Hour</i>, 33 * <i>Day</i> elements of the {@code Time} object are set to the date 37 * elements of a {@code Time} object will result in an {@code 44 * a value in the range {@code [0,23]}. 46 * a value in the range {@code [0,59]}. 48 * a value in the range {@code [0,59]}. 57 * Constructs a {@code Time} object using a supplied time specified in 61 * a {@code Time} specified in milliseconds since th [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
SSLPermission.java | 27 * <dt> {@code "setHostnameVerifier"} </dt> 29 * <dt> {@code "getSSLSessionContext"} </dt> 30 * <dd> getting the {@code SSLSessionContext} of an {@code SSLSession}.</dd> 38 * Creates a new {@code SSLPermission} with the specified name. 48 * Creates a new {@code SSLPermission} with the specified name. 53 * is ignored and should be {@code null}.
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 68 * <code>null</code> to disable automatic 71 * <code>null</code> for the system locale 102 * @param code the status code of the response 103 * @param reason the reason phrase to the status code, or 104 * <code>null</code> 107 final int code, 185 final int code = this.statusline.getStatusCode(); local [all...] |