HomeSort by relevance Sort by last modified time
    Searched full:strings (Results 101 - 125 of 3020) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/man/man1/
i686-unknown-linux-gnu-strings.1 26 .\" Set up some character translations and predefined strings. \*(-- will
130 .IX Title "STRINGS 1"
131 .TH STRINGS 1 "2006-06-23" "binutils-2.17" "GNU Development Tools"
133 strings \- print the strings of printable characters in files.
136 strings [\fB\-afov\fR] [\fB\-\fR\fImin-len\fR]
148 character. By default, it only prints the strings from the initialized
150 the strings from the whole file.
206 Select the character encoding of the strings that are to be found.
211 littleendian. Useful for finding wide character strings
    [all...]
  /frameworks/base/docs/html/guide/topics/resources/
localization.jd 100 <p>Resources are text strings, layouts, sounds, graphics, and any other static
139 locale-specific text, Android will load the default strings from
140 <code>res/values/strings.xml</code>. If this default file is absent, or if it
146 <p>An application's Java code refers to just two strings, <code>text_a</code> and
148 (<code>res/values-en/strings.xml</code>) that defines <code>text_a</code> and
150 resource file (<code>res/values/strings.xml</code>) that includes a
157 <code>res/values-en/strings.xml</code> contains both of the needed text
158 strings.</li>
165 <p>To prevent this situation, make sure that a <code>res/values/strings.xml</code>
167 all types of resources, not just strings: You
    [all...]
  /dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/util/
Util.java 27 * case and assuming that the strings are ascii encoded.
54 * ignoring case differences and assuming they are ascii-encoded strings.
84 * Compares the given strings and returns whether they are equal, ignoring
85 * case differences and assuming they are ascii-encoded strings.
  /dalvik/tests/016-intern/src/
Main.java 18 * Interned strings
  /dalvik/vm/
Intern.h 17 * Interned strings.
  /development/samples/BusinessCard/res/values/
strings.xml 17 <!-- This file contains resource definitions for displayed strings, allowing
  /external/bison/lib/
strverscmp.h 1 /* Compare strings while treating digits characters numerically.
  /external/bluetooth/glib/gobject/
makefile.msc.in 22 gmarshal.strings \
78 glib-genmarshal.exe : glib-genmarshal.c gmarshal.strings
86 gmarshal.strings : gmarshal.list
87 perl marshal-genstrings.pl > gmarshal.strings
  /external/clearsilver/cs/
test4.cs 79 <?cs # --- explicit strings --- ?>
82 ERROR "9" > "14" (strings)
84 right "9" < "14" (strings)
87 <?cs # --- hdf strings --- ?>
  /external/clearsilver/man/man3/
cs_destroy.3 29 a CSPARSE structure, including strings passed to
  /external/dropbear/libtomcrypt/notes/
base64_tv.txt 1 Base64 vectors. These are the base64 encodings of the strings 00,01,02...NN-1
  /external/freetype/include/freetype/
fterrors.h 23 /* strings with a small macro trick explained below. */
36 /* II - Error Message strings */
40 /* allow client applications to build a table of error message strings */
41 /* if they need it. The strings are not included in a normal build of */
  /external/genext2fs/
configure.in 23 AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h memory.h stddef.h stdint.h stdlib.h string.h strings.h unistd.h])
  /external/icu4c/i18n/
colldata.cpp 201 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0)
207 strings = new UnicodeString [listMax];
209 if (strings == NULL) {
222 delete[] strings;
240 uprv_memcpy(newStrings, strings, listSize * sizeof(UnicodeString));
252 delete[] strings;
253 strings = newStrings;
257 // The ctor initialized all the strings in
258 // the array to empty strings, so this
260 strings[listSize++].append(*string)
328 StringList *strings = getStringList(ce); local
356 StringList *strings = (StringList *) obj; local
876 const StringList *strings = ceToCharsStartingWith->getStringList(ce); local
    [all...]
  /external/libxml2/include/libxml/
dict.h 3 * Description: dictionary of reusable strings, just used to avoid allocation
  /external/qemu/android/utils/
misc.c 21 print_tabular( const char** strings, int count,
27 int len = strlen(strings[n]);
42 printf( "%-*s", maxw, strings[index] );
75 /** TEMP CHAR STRINGS
  /external/srec/srec/Semproc/include/
SR_ExpressionEvaluator.h 57 * Built-in function to concatenate strings.
60 * @param operands array of strings holding operands to concatenate
81 * @param operands strings to interpret as integers and then add together
91 * @param operands strings to interpret as integers and then subtract from the first operand
  /external/webkit/JavaScriptCore/
JavaScriptCorePrefix.h 14 #include <strings.h>
  /frameworks/base/core/res/res/values-ja/
donottranslate.xml 3 /* //device/apps/common/assets/res/any/strings.xml
  /frameworks/base/core/tests/coretests/src/android/widget/
AutoCompleteTextViewSimple.java 68 * Set the autocomplete data to an adapter containing 0..n strings with a consistent prefix.
72 String[] strings = new String[numSuggestions]; local
74 strings[i] = prefix + String.valueOf(i);
79 android.R.layout.simple_dropdown_item_1line, strings);
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 109 public static final String[] strings = { "NONE", "WPA_PSK", "WPA_EAP", "IEEE8021X" }; field in class:WifiConfiguration.KeyMgmt
125 public static final String[] strings = { "WPA", "RSN" }; field in class:WifiConfiguration.Protocol
143 public static final String[] strings = { "OPEN", "SHARED", "LEAP" }; field in class:WifiConfiguration.AuthAlgorithm
161 public static final String[] strings = { "NONE", "TKIP", "CCMP" }; field in class:WifiConfiguration.PairwiseCipher
187 public static final String[] strings = { "WEP40", "WEP104", "TKIP", "CCMP" }; field in class:WifiConfiguration.GroupCipher
201 public static final String[] strings = { "current", "disabled", "enabled" }; field in class:WifiConfiguration.Status
331 if (k < KeyMgmt.strings.length) {
332 sbuf.append(KeyMgmt.strings[k]);
342 if (p < Protocol.strings.length) {
343 sbuf.append(Protocol.strings[p])
    [all...]
  /external/icu4c/common/unicode/
uset.h 62 * not for the strings.
64 * full case folding strings for the code points, and reduces strings of
70 * Strings are matched by comparing the case-folded form from the closure
74 * set contained case-equivalent strings (like U+00DF for "ss" or "Ss" etc.).
105 * without strings (which is the common case):
114 * When a set contains multi-code point strings, then these statements may not
115 * be true, depending on the strings in the set (for example, whether they
117 * For a set with strings:
119 * but the same set of strings
    [all...]
  /dalvik/dx/src/junit/framework/
ComparisonFailure.java 4 * Thrown when an assert equals for Strings failed.
49 // equal strings
  /dalvik/libcore/junit/src/main/java/junit/framework/
ComparisonFailure.java 4 * Thrown when an assert equals for Strings failed.
49 // equal strings
  /dalvik/tests/021-string2/src/junit/framework/
ComparisonFailure.java 4 * Thrown when an assert equals for Strings failed.
49 // equal strings

Completed in 101 milliseconds

1 2 3 45 6 7 8 91011>>