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

<<51525354555657585960>>

  /external/webkit/WebKitTools/DumpRenderTree/qt/
EventSenderQt.cpp 9 * 1. Redistributions of source code must retain the above copyright
162 int code = 0; local
164 code = string.unicode()->unicode();
165 //qDebug() << ">>>>>>>>> keyDown" << code << (char)code;
167 if (code == '\r') {
168 code = Qt::Key_Return;
169 } else if (code == '\t') {
170 code = Qt::Key_Tab;
172 code = Qt::Key_Backtab
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_wsc_common.c 23 struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code)
27 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
35 wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */
  /frameworks/base/core/java/android/text/
InputFilter.java 27 * range <code>dstart &hellip; dend</code> of <code>dest</code>
28 * with the new text from the range <code>start &hellip; end</code>
29 * of <code>source</code>. Return the CharSequence that you would
31 * if appropriate, or <code>null</code> to accept the origina
    [all...]
  /frameworks/base/core/java/com/google/android/collect/
Maps.java 22 * Provides static methods for creating mutable {@code Maps} instances easily.
26 * Creates a {@code HashMap} instance.
28 * @return a newly-created, initially-empty {@code HashMap}
  /frameworks/base/docs/html/guide/tutorials/views/
hello-formstuff.jd 25 <p class="note"><strong>Tip:</strong> As you add new Android code, press Ctrl(or Cmd) + Shift + O
49 like <code>ic_media_play</code>, for a "play" button image. To do so, change the source
50 attribute to <code>android:src="@android:drawable/ic_media_play"</code>.</p>
53 code at the end of the <code>onCreate()</code> method:
64 The {@link android.view.View.OnClickListener} must define the <code>onClick()</code> method, whic
    [all...]
hello-relativelayout.jd 49 <p>Pay attention to each of the additional <code>layout_*</code> attributes (besides the
51 we use attributes like <code>layout_below</code> and <code>layout_toLeftOf</code> to describe
55 <li>Make sure your Activity loads this layout in the <code>onCreate()</code> method:</p>
62 <p><code>R.layout.main</code> refers to the <code>main.xml</code> layout file.</p
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.Intents.UI.html 74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html" target="_top"><font size="+2"><code>Contacts.Intents.UI</code></font></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#Contacts.Intents.UI()" target="_top"><code>Contacts.Intents.UI</code></A>() </nobr>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_CONTACTS_ACTION" target="_top"><code>FILTER_CONTACTS_ACTION</code></font></A></nobr> </TD>
116 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_TEXT_EXTRA_K (…)
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
patent_disclaimer.txt 4 Google makes no representation or warranty that the source code made available hereunder is
5 unencumbered by third-party patents. Those intending to use this source code in hardware or
6 software products are advised that implementations of this code, including in open source software
  /packages/apps/Email/src/com/android/exchange/
patent_disclaimer.txt 4 Google makes no representation or warranty that the source code made available hereunder is
5 unencumbered by third-party patents. Those intending to use this source code in hardware or
6 software products are advised that implementations of this code, including in open source software
  /packages/apps/Email/src/com/android/exchange/utility/
patent_disclaimer.txt 4 Google makes no representation or warranty that the source code made available hereunder is
5 unencumbered by third-party patents. Those intending to use this source code in hardware or
6 software products are advised that implementations of this code, including in open source software
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
OrFileFilter.java 28 * file filters. This filter returns <code>true</code> if any filters in the
29 * list return <code>true</code>. Otherwise, it returns <code>false</code>.
31 * <code>true</code>.
46 * Constructs a new instance of <code>OrFileFilter</code>.
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Scanner.java 45 * {@code InputMismatchException} is thrown.
54 * Yields the result: {@code 26 true}
55 * <p>A {@code Scanner} can also find or skip specific patterns without regard for the
59 * The {@code Scanner} class is not thread-safe.
158 * Creates a {@code Scanner} with the specified {@code File} as input. The default charset
171 * Creates a {@code Scanner} with the specified {@code File} as input. The specified charset
207 * Creates a {@code Scanner} on the specified string.
218 * Creates a {@code Scanner} on the specified {@code InputStream}. The default charset i
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
FileInputStream.java 40 * The {@link FileDescriptor} representing this {@code FileInputStream}.
58 * Constructs a new {@code FileInputStream} based on {@code file}.
63 * if {@code file} does not exist.
65 * if a {@code SecurityManager} is installed and it denies the
91 * Constructs a new {@code FileInputStream} on the {@link FileDescriptor}
92 * {@code fd}. The file must already be open, therefore no
93 * {@code FileNotFoundException} will be thrown.
98 * if {@code fd} is {@code null}
    [all...]
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
Charset_TestGenerator.java 111 abstract void consume (int code);
113 boolean isAccepted (int code)
115 return Character.isLetterOrDigit(code);
121 void consume (int code) {
122 System.out.print(code);
133 boolean isAccepted (int code)
135 return Character.isLetterOrDigit(code) || Character.isWhitespace(code);
141 void consume (int code) {
142 // System.out.print(code);
181 int code = 0; local
    [all...]
  /external/guava/javadoc/com/google/common/collect/
SetMultimap.html 109 A <code>Multimap</code> that cannot hold duplicate key-value pairs. Adding a
112 <p>The <A HREF="../../../../com/google/common/collect/SetMultimap.html#get(K)"><CODE>get(K)</CODE></A>, <A HREF="../../../../com/google/common/collect/SetMultimap.html#removeAll(java.lang.Object)"><CODE>removeAll(java.lang.Object)</CODE></A>, and <A HREF="../../../../com/google/common/collect/SetMultimap.html#replaceValues(K, java.lang.Iterable)"><CODE>replaceValues(K, java.lang.Iterable<? extends V>)</CODE></A> methods
113 each return a <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util"><CODE>Set</CODE></A> of values, while <A HREF="../../../../com/google/common/collect/SetMultimap.html#entries()">< (…)
    [all...]
package-summary.html 111 <TD>A <code>Multimap</code> that can hold duplicate key-value pairs and that maintains
124 <TD>A collection similar to a <code>Map</code>, but which may associate multiple
129 <TD>A collection that supports order-independent equality, like <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util"><CODE>Set</CODE></A>, but
142 <TD>A <code>Multimap</code> that cannot hold duplicate key-value pairs.</TD>
146 <TD>A <code>SetMultimap</code> whose set of values for a given key are kept sorted
    [all...]
ImmutableSortedMap.html 108 An immutable <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util"><CODE>SortedMap</CODE></A>. Does not permit null keys or values.
110 <p>Unlike <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collections.html?is-external=true#unmodifiableSortedMap(java.util.SortedMap)" title="class or interface in java.util"><CODE>Collections.unmodifiableSortedMap(java.util.SortedMap<K, ? extends V>)</CODE></A>, which is a <i>view</i>
111 of a separate map which can still change, an instance of <code>ImmutableSortedMap</code> contains its own data and will <i>never</i> change.
112 <code>ImmutableSortedMap</code> is convenient for <code>public static final</code> map
    [all...]
  /external/guava/javadoc/com/google/common/util/concurrent/
Executors.html 104 Factory and utility methods for <A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent"><CODE>Executor</CODE></A>, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html?is-external=true" title="class or interface in java.util.concurrent"><CODE>ExecutorService</CODE></A>, and <A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadFactory.html?is-external=true" title="class or interface in java.util.concurrent"><CODE>ThreadFactory</CODE></A>.
127 <TD><CODE><B><A HREF="../../../../../com/google/common/util/concurrent/Executors.html#Executors()">Executors</A></B>()</CODE>
144 <CODE>static&nbsp;void</CODE></FONT></TD
    [all...]
  /frameworks/base/docs/html/guide/topics/resources/
string-resource.jd 33 using the value provided in the {@code name} attribute (not the name of the XML file). So, you can
35 under one {@code &lt;resources>} element.</p>
40 <dd><code>res/values/<em>filename</em>.xml</code><br/>
41 The filename is arbitrary. The {@code &lt;string>} element's {@code name} will be used as the
49 In Java: <code>R.string.<em>string_name</em></code><br/>
50 In XML:<code>@string/<em>string_name</em></code>
    [all...]
  /external/guava/src/com/google/common/collect/
Maps.java 65 * Creates a <i>mutable</i>, empty {@code HashMap} instance.
70 * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link
73 * @return a new, empty {@code HashMap}
80 * Creates a {@code HashMap} instance with enough capacity to hold the
84 * @return a new, empty {@code HashMap} with enough
85 * capacity to hold {@code expectedSize} elements without rehashing
86 * @throws IllegalArgumentException if {@code expectedSize} is negative
102 * {@code expectedSize} entries.
104 * @throws IllegalArgumentException if {@code expectedSize} is negativ
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttLineNumberTable.java 19 import com.android.dx.cf.code.LineNumberList;
23 * Attribute class for standard {@code LineNumberTable} attributes.
26 /** {@code non-null;} attribute name for attributes of this type */
29 /** {@code non-null;} list of line number entries */
35 * @param lineNumbers {@code non-null;} list of line number entries
60 * @return {@code non-null;} the list
BaseAnnotations.java 26 /** {@code non-null;} list of annotations */
29 /** {@code >= 0;} attribute data length in the original classfile (not
36 * @param attributeName {@code non-null;} the name of the attribute
37 * @param annotations {@code non-null;} the list of annotations
38 * @param byteLength {@code >= 0;} attribute data length in the original
67 * @return {@code non-null;} the list
BaseParameterAnnotations.java 26 /** {@code non-null;} list of annotations */
29 /** {@code >= 0;} attribute data length in the original classfile (not
36 * @param attributeName {@code non-null;} the name of the attribute
37 * @param parameterAnnotations {@code non-null;} the annotations
38 * @param byteLength {@code >= 0;} attribute data length in the original
68 * @return {@code non-null;} the list
  /dalvik/dx/src/com/android/dx/dex/code/
OddSpacer.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 which either turns into a {@code nop} or
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
SimpleInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
29 * unknown ({@code -1}).
32 * @param position {@code non-null;} source position
33 * @param registers {@code non-null;} register list, including a

Completed in 217 milliseconds

<<51525354555657585960>>