| /external/chromium/third_party/libjingle/source/talk/base/ |
| stringutils.h | 50 #include <string> 55 // Generic string/memory utilities 74 // Rename a bunch of common string functions so they are consistent across 142 // Traits simplifies porting string functions to be CTYPE-agnostic 151 // STL string type 152 //typedef XXX string; 153 // Null-terminated string 158 // String utilities which work with char or wchar_t 307 typedef std::string string; typedef in struct:talk_base::Traits 319 typedef std::wstring string; typedef in struct:talk_base::Traits [all...] |
| /external/clang/test/FixIt/ |
| typo.cpp | 15 typedef basic_string<char> string; // expected-note 2{{'string' declared here}} typedef in namespace:std 26 // expected-error{{no type named 'strng' in namespace 'otherstd'; did you mean 'string'?}} 27 tring str2; // expected-error{{unknown type name 'tring'; did you mean 'string'?}} 29 ::other_std::string str3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'?}} 43 bool test_string(std::string s) { 49 == std::string::pos; // expected-error{{no member named 'pos' in 'std::basic_string<char>'; did you mean 'npos'?}}
|
| /external/e2fsprogs/lib/e2p/ |
| feature.c | 14 #include <string.h> 25 const char *string; member in struct:feature 98 for (f = feature_list; f->string; f++) { 101 return f->string; 122 int e2p_string2feature(char *string, int *compat_type, unsigned int *mask) 128 for (f = feature_list; f->string; f++) { 129 if (!strcasecmp(string, f->string)) { 135 if (strncasecmp(string, "FEATURE_", 8)) 138 switch (string[8]) [all...] |
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
| StringPropertyDialog.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 40 // so this was all stripped down to a plain String editor. 93 if (value instanceof String) { 94 m_valueText.setText((String) value); 131 final String value = m_valueText.getText();
|
| /external/elfutils/libebl/ |
| eblstrtab.c | 1 /* ELF string table handling. 60 #include <string.h> 74 const char *string; member in struct:Ebl_Strent 127 ret->null.string = ""; 188 /* Create the reserved string. */ 190 newstr->string = str; 223 /* We found a matching string. */ 232 /* Add new string. The actual string is assumed to be permanent. */ 236 /* Compute the string length if the caller doesn't know it. * [all...] |
| eblwstrtab.c | 1 /* ELF string table handling. 60 #include <string.h> 75 const wchar_t *string; member in struct:Ebl_WStrent 128 ret->null.string = L""; 194 /* Create the reserved string. */ 196 newstr->string = str; 231 /* We found a matching string. */ 240 /* Add new string. The actual string is assumed to be permanent. */ 247 /* Compute the string length if the caller doesn't know it. * [all...] |
| /external/emma/core/java12/com/vladium/util/ |
| WCMatcher.java | 21 public static WCMatcher compile (final String pattern) 71 public abstract boolean matches (String s); 75 // private boolean matches (int pi, int si, final char [] string) 80 // return si == string.length; 87 // return (si < string.length) && matches (pi + 1, si + 1, string); 92 // return matches (pi + 1, si, string) || ((si < string.length) && matches (pi, si + 1, string)); 97 // return (si < string.length) && (m_pattern [pi] == string [si]) && matches (pi + 1, si + 1, string) 237 final char [] string = s.toCharArray (); \/\/ implies an array copy; is this faster than using charAt()? local [all...] |
| /external/icu4c/samples/uresb/ |
| uresb.c | 31 #include <string.h> 58 static UChar *quotedString(const UChar *string); 185 static UChar *quotedString(const UChar *string) { 186 int len = u_strlen(string); 191 for (sp = string; *sp; ++sp) { 201 for (sp = string, np = newstr; *sp; ++sp) { 230 UChar *string = quotedString(thestr); local 232 /* TODO: String truncation */ 236 u_fprintf(out, "// WARNING: this string, size %d is truncated to %d\n", len, truncsize/2); 242 u_fprintf(out, "%s { \"%S\" } ", key, string); [all...] |
| /external/icu4c/test/intltest/ |
| tsdate.cpp | 151 UnicodeString string[DEPTH]; local 162 fFormat->format(theDate, string[0]); 167 date[i] = fFormat->parse(string[i-1], status); 171 errln("**** FAIL: Parse of " + prettify(string[i-1], FALSE) + " failed."); 175 fFormat->format(date[i], string[i]); 181 errln("**** FAIL: Date mismatch after match for " + string[i]); 185 if (stringMatch == 0 && string[i] == string[i-1]) 187 else if (stringMatch > 0 && string[i] != string[i-1] [all...] |
| tsnmfmt.cpp | 286 UnicodeString string[DEPTH]; local 296 string[i] = "(n/a)"; // "format was never done" value 300 fFormat->parse(string[i-1], number[i], status); 303 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed."; 315 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1]) 321 string[i].truncate(0); 322 fFormat->format(number[i].getDouble(), string[i]); 332 if (stringMatch == 0 && string[i] == string[i-1]) 334 else if (stringMatch > 0 && string[i] != string[i-1] [all...] |
| /external/ipsec-tools/src/racoon/ |
| vendorid.h | 96 const char *string; member in struct:vendor_id
|
| /external/jmonkeyengine/engine/src/android/jme3test/android/ |
| R.java | 39 public static final class string { class in class:R
|
| /external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
| AssetKey.java | 46 protected String name; 47 protected transient String folder; 48 protected transient String extension; 50 public AssetKey(String name){ 58 protected static String getExtension(String name){ 73 protected static String getFolder(String name){ 81 public String getName() { 89 public String getExtension() 150 String string = parts[i]; local 165 String string = list.get(i); local [all...] |
| /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
| LwjglSmoothingTimer.java | 193 * <code>toString</code> returns the string representation of this timer 200 * @return the string representation of this object. 203 public String toString() { 204 String string = super.toString(); local 205 string += "\nTime: " + oldTime; 206 string += "\nFPS: " + getFrameRate(); 207 return string;
|
| /external/kernel-headers/original/linux/ |
| moduleparam.h | 47 char *string; member in struct:kparam_string 86 /* Actually copy string: maxlen param is usually sizeof(string). */ 87 #define module_param_string(name, string, len, perm) \ 89 = { len, string }; \ 92 __MODULE_PARM_TYPE(name, "string")
|
| /external/libppp/src/ |
| chat.h | 67 } string[MAXABORTS]; member in struct:chat::__anon10750
|
| /external/open-vcdiff/src/ |
| varint_bigendian_test.cc | 19 #include <string.h> // strlen 20 #include <string> 29 typedef std::string string; typedef in class:open_vcdiff::__anon12345::VarintBETestCommon 50 string s_;
|
| vcdecoder_test.h | 20 #include <string> 28 // Those elements are provided as string members and can be modified or 32 typedef std::string string; typedef in class:open_vcdiff::VCDiffDecoderTest 81 // Assuming the length of the given string can be expressed as a VarintBE 86 // Assuming the length of the given string can be expressed as a one-byte 92 // Assuming the length of the given string can be expressed as a two-byte 98 // Assuming the length of the given string can be expressed as a two-byte 108 string delta_file_; 110 // This string is not populated during setup, but is used to receive th [all...] |
| /external/openfst/src/lib/ |
| properties.cc | 20 // string names of the properties. 269 bool string = true; local 277 string = false; 280 if (string) 407 // Property string names (indexed by bit position). 427 "string", "not string",
|
| /external/quake/quake/src/QW/server/ |
| progs.h | 26 string_t string; member in union:eval_s 76 char *ED_NewString (char *string); 77 // returns a copy of the string allocated from the server's string heap
|
| sys_unix.c | 112 char string[1024]; local 115 vsprintf (string,error,argptr); 117 printf ("Fatal error: %s\n",string);
|
| /external/quake/quake/src/WinQuake/ |
| pr_exec.cpp | 264 char string[1024]; local 267 vsprintf (string,error,argptr); 272 Con_Printf ("%s\n", string); 486 c->_float = !a->string || !pr_strings[a->string]; 504 c->_float = !strcmp(pr_strings+a->string,pr_strings+b->string); 523 c->_float = strcmp(pr_strings+a->string,pr_strings+b->string);
|
| progs.h | 26 string_t string; member in union:eval_s 81 char *ED_NewString (const char *string); 82 // returns a copy of the string allocated from the server's string heap
|
| /external/skia/legacy/src/xml/ |
| SkJS.cpp | 197 SkBool SkJS::ValueToString(jsval value, SkString* string) { 201 string->set(JS_GetStringBytes(str)); 211 SkString string; local 212 success = js.ValueToString(val, &string); 214 SkASSERT(strcmp(string.c_str(), "3.142857142857143") == 0); 225 success = js.ValueToString(val, &string);
|
| SkJSDisplayable.cpp | 234 SkString* string= NULL; local 257 info->getString(displayable, &string); 287 str = JS_NewStringCopyN(cx, string->c_str(), string->size()); 310 SkString string; local 335 string.set(JS_GetStringBytes(str)); 360 info->setString(displayable, &string);
|