HomeSort by relevance Sort by last modified time
    Searched full:strings (Results 776 - 800 of 7947) sorted by null

<<31323334353637383940>>

  /prebuilts/misc/common/swig/include/2.0.11/lua/
std_string.i 13 they are converted to the Lua strings automatically
37 Lua strings and std::string can contain embedded zero bytes
64 // we convert all to lua strings
100 This provides basic mapping of lua strings <-> std::string
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclstrings.swg 2 * utility methods for char strings
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
sstream 21 // C++ strings.
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
sstream 21 // C++ strings.
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
sstream 21 // C++ strings.
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
sstream 21 // C++ strings.
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
sstream 21 // C++ strings.
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
asdl.h 15 interned Python strings.
stringobject.h 15 present so strings with null bytes in them can be represented. This
28 Interning strings (ob_sstate) tries to ensure that only one string
30 comparison. This is generally restricted to strings that "look like"
177 strings) */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_text.py 29 # Check if we are getting the indices as strings -- you are likely
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
asdl.h 15 interned Python strings.
stringobject.h 15 present so strings with null bytes in them can be represented. This
28 Interning strings (ob_sstate) tries to ensure that only one string
30 comparison. This is generally restricted to strings that "look like"
177 strings) */
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
cStringIO.so 
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_text.py 29 # Check if we are getting the indices as strings -- you are likely
  /system/netd/server/
NatController.h 38 // List of strings of interface pairs.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CTarget.java 39 ArrayList strings = new ArrayList(); field in class:CTarget
51 outputFileST.add("literals", strings);
65 // to it as we cannot assign into strings in Java.
210 // invalid strings if not, which is what the input would be of course - invalid
263 index = strings.indexOf(bytes);
266 strings.add(bytes);
267 index = strings.indexOf(bytes);
  /bootable/recovery/edify/
expr.c 71 char** strings = malloc(argc * sizeof(char*)); local
74 strings[i] = NULL;
79 strings[i] = Evaluate(state, argv[i]);
80 if (strings[i] == NULL) {
83 length += strlen(strings[i]);
89 strcpy(result+p, strings[i]);
90 p += strlen(strings[i]);
96 free(strings[i]);
98 free(strings);
455 // strings it contains
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DisplayNameTest.java 153 String[] strings = (String[]) data.get(olsonID); local
154 if (strings == null || item >= strings.length) return olsonID;
155 return strings[item];
334 * Add two unknown strings, just to make sure they get passed through without colliding
335 * @param strings
338 private String[] addUnknown(String[] strings, int len) {
339 String[] result = new String[strings.length + 2];
342 System.arraycopy(strings,0,result,2,strings.length)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 70 Set<String> strings = sharedPrefs.getStringSet(key, null); local
71 if (strings == null) {
72 strings = new HashSet<String>(0);
74 strings = new HashSet<String>(strings);
76 strings.add(value);
77 editor.putStringSet(key, strings);
113 Set<String> strings = sharedPrefs.getStringSet(APPS_PENDING_INSTALL, null); local
114 if (strings == null) {
119 for (String json : strings) {
    [all...]
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 211 String[] strings = TextUtils.split(line, "-"); local
212 if (strings.length < 2) continue;
213 long id = addWord(strings[0].trim(), strings[1].trim());
215 Log.e(TAG, "unable to add word: " + strings[0].trim());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/
CustomNamedCurves.java 26 import org.bouncycastle.util.Strings;
254 alias = Strings.toLowerCase(alias);
283 X9ECParametersHolder holder = (X9ECParametersHolder)nameToCurve.get(Strings.toLowerCase(name));
308 return (ASN1ObjectIdentifier)nameToOID.get(Strings.toLowerCase(name));
320 * returns an enumeration containing the name strings for curves contained in this structure.
  /external/gtest/include/gtest/internal/
gtest-string.h 73 // able to pass strings to Win32 APIs on CE we need to convert them
97 // Compares two C strings. Returns true iff they have the same content.
110 // Compares two wide C strings. Returns true iff they have the same
118 // Compares two C strings, ignoring case. Returns true iff they
127 // Compares two wide C strings, ignoring case. Returns true iff they
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CalendarICU.java 317 String[] strings = getFieldStrings(field, style, dfs); local
318 if (strings == null) {
322 for (int i = 0; i < strings.length; i++) {
323 if (strings[i].length() != 0) {
324 res.put(strings[i], Integer.valueOf(i));
  /external/libxml2/
dict.c 2 * dict.c: dictionary of reusable strings, just used to avoid allocation
121 xmlDictStringsPtr strings; member in struct:_xmlDict
250 pool = dict->strings;
277 pool->next = dict->strings;
278 dict->strings = pool;
318 pool = dict->strings;
345 pool->next = dict->strings;
346 dict->strings = pool;
398 * Calculate a hash key for two strings using a good hash function
404 * Neither of the two strings must be NULL
    [all...]
  /external/regex-re2/re2/testing/
possible_match_test.cc 15 // Test that C++ strings are compared as uint8s, not int8s.
136 // are no valid UTF-8 strings beginning with byte 0xFF.
162 // then generate all strings of a given length over a given alphabet,
164 // the regexp matches each of the strings.
193 // Checks that all accepted strings agree with the prefix range.

Completed in 867 milliseconds

<<31323334353637383940>>