HomeSort by relevance Sort by last modified time
    Searched refs:String (Results 176 - 200 of 12721) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/sqlite-jdbc/src/main/java/SQLite/
Callback.java 10 * public void columns(String cols[]) {
17 * public boolean newrow(String cols[]) {
43 * @param coldata string array holding the column names
46 public void columns(String coldata[]);
53 * @param types string array holding column types
56 public void types(String types[]);
64 * @param rowdata string array holding the column values of the row
67 public boolean newrow(String rowdata[]);
  /packages/apps/Email/src/org/apache/james/mime4j/field/
FieldParser.java 20 Field parse(final String name, final String body, final String raw);
  /sdk/layoutlib_api/src/com/android/layoutlib/api/
IResourceValue.java 20 * Represents an android resource with a name and a string value.
27 String getType();
32 String getName();
37 String getValue();
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/resources/
ResourceEnum.java 25 * Returns the resource string. This is to be used in resource folder names.
27 String getResourceValue();
42 * Returns a short string for display value. The string does not need to show the context.
49 String getShortDisplayValue();
52 * Returns a long string for display value. This must not only include the enum value but
59 String getLongDisplayValue();
  /frameworks/base/core/java/android/os/
Build.java 24 public static final String UNKNOWN = "unknown";
27 public static final String ID = getString("ro.build.id");
29 /** A build ID string meant for displaying to the user */
30 public static final String DISPLAY = getString("ro.build.display.id");
33 public static final String PRODUCT = getString("ro.product.name");
36 public static final String DEVICE = getString("ro.product.device");
39 public static final String BOARD = getString("ro.product.board");
42 public static final String CPU_ABI = getString("ro.product.cpu.abi");
45 public static final String CPU_ABI2 = getString("ro.product.cpu.abi2");
48 public static final String MANUFACTURER = getString("ro.product.manufacturer")
    [all...]
  /frameworks/ex/common/java/com/android/common/speech/
LoggingEvents.java 27 public static final String ACTION_LOG_EVENT = "com.android.common.speech.LOG_EVENT";
30 public static final String EXTRA_APP_NAME = "app_name";
34 public static final String EXTRA_CALLING_APP_NAME = "";
38 public static final String EXTRA_EVENT = "extra_event";
42 public static final String EXTRA_TIMESTAMP = "timestamp";
46 public static final String EXTRA_FLUSH = "flush";
58 public static final String APP_NAME = "googlemobile";
65 public static final String EXTRA_N_BEST_CHOOSE_INDEX = "index"; // value should be int
68 public static final String EXTRA_QUERY_UPDATED_VALUE = "value"; // value should be String
    [all...]
  /packages/apps/Email/src/com/android/exchange/
Eas.java 40 public static final String VERSION = "0.3";
41 public static final String ACCOUNT_MAILBOX_PREFIX = "__eas";
44 public static final String SUPPORTED_PROTOCOL_EX2003 = "2.5";
46 public static final String SUPPORTED_PROTOCOL_EX2007 = "12.0";
48 public static final String DEFAULT_PROTOCOL_VERSION = SUPPORTED_PROTOCOL_EX2003;
61 public static final String FILTER_ALL = "0";
62 public static final String FILTER_1_DAY = "1";
63 public static final String FILTER_3_DAYS = "2";
64 public static final String FILTER_1_WEEK = "3";
65 public static final String FILTER_2_WEEKS = "4"
    [all...]
  /external/webkit/WebCore/platform/qt/
Localizations.cpp 42 String submitButtonDefaultLabel()
47 String inputElementAltText()
52 String resetButtonDefaultLabel()
57 String defaultLanguage()
63 String searchableIndexIntroduction()
68 String fileButtonChooseFileLabel()
73 String fileButtonNoFileSelectedLabel()
78 String contextMenuItemTagOpenLinkInNewWindow()
83 String contextMenuItemTagDownloadLinkToDisk()
88 String contextMenuItemTagCopyLinkToClipboard(
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ExtendedContentHandler.java 60 String uri,
61 String localName,
62 String rawName,
63 String type,
64 String value,
81 public void addAttribute(String qName, String value);
85 * as a character String rather than the standard character array.
89 public void characters(String chars) throws SAXException;
110 public void endElement(String elemName) throws SAXException
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 60 * returns String ("1.0") or null if XMLDecl was not read or if property is not supported
83 * public static void main (String args[])
143 /** This constant represents the default namespace (empty string "") */
144 String NO_NAMESPACE = "";
272 * The ignorable whitespace string is available by calling getText()
322 * to a string. For example, the value of TYPES[START_TAG] is
323 * the string "START_TAG".
330 String [] TYPES = {
357 String FEATURE_PROCESS_NAMESPACES =
369 String FEATURE_REPORT_NAMESPACE_ATTRIBUTES
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 26 * hand, in HTML, where all attributes have simple string values, methods to
45 public String getTagName();
50 * @return The <code>Attr</code> value as a string, or the empty string
53 public String getAttribute(String name);
58 * parameter. This value is a simple string; it is not parsed as it is
70 * @param value Value to set in string form.
77 public void setAttribute(String name,
78 String value
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 45 public static final String INVITE = Request.INVITE;
46 public static final String ACK = Request.ACK;
47 public static final String BYE = Request.BYE;
48 public static final String SUBSCRIBE = Request.SUBSCRIBE;
49 public static final String NOTIFY = Request.NOTIFY;
50 public static final String OPTIONS = Request.OPTIONS;
51 public static final String REGISTER = Request.REGISTER;
52 public static final String MESSAGE = Request.MESSAGE;
53 public static final String PUBLISH = Request.PUBLISH;
55 public static final String SIP = GenericURI.SIP
    [all...]
  /external/webkit/WebCore/platform/mac/
LocalizedStringsMac.mm 36 String inputElementAltText()
41 return String();
44 String resetButtonDefaultLabel()
49 return String();
52 String searchableIndexIntroduction()
57 return String();
60 String submitButtonDefaultLabel()
65 return String();
68 String fileButtonChooseFileLabel()
73 return String();
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
DefaultHandler2.java 54 public void startDTD (String name, String publicId, String systemId)
62 public void startEntity (String name)
66 public void endEntity (String name)
77 public void attributeDecl (String eName, String aName,
78 String type, String mode, String value
    [all...]
  /build/tools/droiddoc/src/
ContainerInfo.java 19 public String qualifiedName();
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/data/
NormalClass.java 29 private NormalClass(String arg1) { }
30 protected NormalClass(String arg1, String arg2) throws NormalException { }
31 NormalClass(String arg1, String arg2, String arg3) { }
39 protected String protectedMethod() { return null; }
46 public final String FINAL_FIELD = "";
47 public static String STATIC_FIELD;
48 public volatile String VOLATILE_FIELD
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
NamedElement.java 28 String getName();
  /cts/tools/signature-tools/src/signature/
Version.java 26 public static final String VERSION = "0.1";
  /dalvik/tests/068-classloader/src/
DoubledExtendOkay.java 33 public String getStr() {
  /dalvik/tests/068-classloader/src-ex/
DoubledExtendOkay.java 33 public String getStr() {
  /development/apps/Development/src/com/android/development/
ColumnData.java 23 ColumnData(String k, String v)
28 public String key;
29 public String value;
  /external/apache-http/src/org/apache/http/conn/ssl/
AllowAllHostnameVerifier.java 43 final String host,
44 final String[] cns,
45 final String[] subjectAlts) {
50 public final String toString() {
  /external/apache-http/src/org/apache/http/protocol/
HttpContext.java 50 public static final String RESERVED_PREFIX = "http.";
52 Object getAttribute(String id);
54 void setAttribute(String id, Object obj);
56 Object removeAttribute(String id);
  /external/emma/core/java12/com/vladium/util/
IConstants.java 22 String [] EMPTY_STRING_ARRAY = new String [0];
26 String EOL = System.getProperty ("line.separator", "\n");
28 String INDENT_INCREMENT = " ";
  /external/nist-sip/java/javax/sip/header/
ContentTypeHeader.java 6 String NAME = "Content-Type";
8 String getCharset();
9 void setContentType(String contentType, String contentSubType)

Completed in 330 milliseconds

1 2 3 4 5 6 78 91011>>