HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 376 - 400 of 856) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 237 struct string { struct in namespace:PR12178
238 string(int);
239 ~string();
243 string a;
  /external/clang/test/SemaCXX/
references.cpp 92 class string { class
96 string();
97 ~string();
100 string getInput();
103 string &s = getInput(); // expected-error{{lvalue reference}}
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 29 * empty string
33 /** {@code non-null;} the UTF-8 value as a string */
34 private final String string; field in class:CstString
40 * Converts a string into its MUTF-8 form. MUTF-8 differs from normal UTF-8
43 * @param string {@code non-null;} the string to convert
46 public static byte[] stringToUtf8Bytes(String string) {
47 int len = string.length()
317 String string = toHuman(); local
    [all...]
  /external/elfutils/libebl/
eblgstrtab.c 1 /* Generic string table handling.
60 #include <string.h>
73 const char *string; member in struct:Ebl_GStrent
130 ret->null.string = (char *) calloc (1, width);
168 if (st->null.string != NULL)
169 free ((char *) st->null.string);
191 /* Create the reserved string. */
193 newstr->string = str;
231 /* We found a matching string. */
240 /* Add new string. The actual string is assumed to be permanent. *
    [all...]
  /external/freetype/src/sfnt/
sfobjs.c 53 FT_String* string = NULL; local
55 FT_Byte* read = (FT_Byte*)entry->string;
61 if ( FT_NEW_ARRAY( string, len + 1 ) )
70 string[n] = (char)code;
73 string[len] = 0;
75 return string;
84 FT_String* string = NULL; local
86 FT_Byte* read = (FT_Byte*)entry->string;
92 if ( FT_NEW_ARRAY( string, len + 1 ) )
101 string[n] = (char)code
    [all...]
  /external/grub/docs/
multiboot.h 103 unsigned long string; member in struct:module
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableTableTest.java 27 @Override protected Table<String, Integer, Character> create(Object... data) {
28 ImmutableTable.Builder<String, Integer, Character> builder =
31 builder.put((String) data[i], (Integer) data[i + 1],
38 ImmutableTable.Builder<Character, Integer, String> builder =
39 new ImmutableTable.Builder<Character, Integer, String>();
44 Table<Character, Integer, String> expectedTable = HashBasedTable.create();
48 Table<Character, Integer, String> otherTable = HashBasedTable.create();
57 ImmutableTable.Builder<Character, Integer, String> builder =
58 new ImmutableTable.Builder<Character, Integer, String>();
65 ImmutableTable.Builder<Character, Integer, String> builder
88 String string; field in class:ImmutableTableTest.StringHolder
    [all...]
  /external/icu4c/i18n/
reldtfmt.cpp 30 int32_t len; /** length of the string **/
31 const UChar* string; /** string, or NULL if not set **/ member in struct:URelativeString
143 // look up string
147 // found a relative string
212 if (fDates[n].string != NULL &&
213 text.compare(startIndex, fDates[n].len, fDates[n].string) == 0) {
214 // it matched, handle the relative day string
223 // failure in setting calendar field, set offset to beginning of rel day string
244 if (fDates[n].string != NULL &
    [all...]
  /external/icu4c/test/cintltst/
uenumtst.c 210 const char *string = NULL; local
212 while ((string = uenum_next(en, &len, &status))) {
213 log_verbose("read \"%s\", length %i\n", string, len);
281 const char *string = NULL; local
290 while ((string = uenum_next(en, &len, &status))) {
291 log_verbose("read \"%s\", length %i\n", string, len);
339 log_err("%s:%d: FAIL: string #%d expected '%s' got '%s'\n", __FILE__, line, i, compareToChar[i], c);
341 log_verbose("%s:%d: OK: string #%d got '%s'\n", __FILE__, line, i, c);
345 log_err("%s:%d: FAIL: string #%d expected len %d got %d\n", __FILE__, line, i, strlen(compareToChar[i]), len);
347 log_verbose("%s:%d: OK: string #%d got len %d\n", __FILE__, line, i, len)
    [all...]
  /external/javassist/src/main/javassist/
CtMethod.java 31 protected String cachedStringRep;
52 public CtMethod(CtClass returnType, String mname,
56 String desc = Descriptor.ofMethod(returnType, parameters);
78 * <code>String</code> for <code>X</code>, then the created method is:
80 * <ul><pre>public String at(int i) {
81 * return (String)super.elementAt(i);
93 * <code>String.class</code>) is included in an expression, the
107 * @see ClassMap#fix(String)
124 * @see CtNewMethod#make(String, CtClass)
126 public static CtMethod make(String src, CtClass declaring
332 public static ConstParameter string(String s) { method in class:CtMethod.ConstParameter
    [all...]
  /external/open-vcdiff/src/
addrcache_test.cc 22 #include <string>
37 typedef std::string string; typedef in class:open_vcdiff::__anon12336::VCDiffAddressCacheTest
119 string address_stream_;
122 string large_address_stream_;
128 string::size_type last_encode_size_;
463 // (the uppermost, or 7 bit) set. A longer string of bytes that all have
464 // bit 7 set is not a valid Varint. Try to parse such a string as a Varint
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 55 // When the corresponding String is requested, we ditch the array and just
56 // store the String.
61 private String string; field in class:Utf8Constant
74 * Creates a Utf8Constant containing the given string.
76 public Utf8Constant(String string)
79 this.string = string;
89 this.string = null
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 162 *ptr = '\0'; /* chop end of string. */
818 char *string; local
840 string = SDL_malloc(stringsize);
841 if ( !string ) {
845 outbuf = string;
854 char *oldstring = string;
856 string = SDL_realloc(string, stringsize);
857 if ( !string ) {
861 outbuf = string + (outbuf - oldstring)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
Xv.c 160 char *string; member in union:__anon13361
235 SDL_strlcpy(name, u.string, size);
320 char *string; member in union:__anon13362
386 SDL_strlcpy(name, u.string, size);
  /external/qemu/
os-win32.c 44 char *string = qemu_malloc(length); local
45 snprintf(string, length, "%s=%s", name, value);
46 result = putenv(string);
  /external/qemu/slirp/
misc.c 349 /* Change the string into argv[] */
726 vsprintf_len(string, format, args)
727 char *string;
731 vsprintf(string, format, args);
732 return strlen(string);
737 sprintf_len(char *string, const char *format, ...)
746 char *string; local
749 string = va_arg(args, char *);
752 vsprintf(string, format, args);
753 return strlen(string);
    [all...]
  /external/quake/quake/src/QW/client/
sys_android.c 36 #include <string.h>
148 char string[1024]; local
154 vsprintf (string,error,argptr);
156 fprintf(stderr, "Error: %s\n", string);
167 char string[1024]; local
170 vsprintf (string,warning,argptr);
172 fprintf(stderr, "Warning: %s", string);
sys_linux.c 33 #include <string.h>
144 char string[1024]; local
150 vsprintf (string,error,argptr);
152 fprintf(stderr, "Error: %s\n", string);
162 char string[1024]; local
165 vsprintf (string,warning,argptr);
167 fprintf(stderr, "Warning: %s", string);
  /external/quake/quake/src/QW/server/
pr_exec.c 264 char string[1024]; local
267 vsprintf (string,error,argptr);
272 Con_Printf ("%s\n", string);
486 c->_float = !a->string || !*PR_GetString(a->string);
504 c->_float = !strcmp(PR_GetString(a->string), PR_GetString(b->string));
523 c->_float = strcmp(PR_GetString(a->string), PR_GetString(b->string));
sv_send.c 159 static void SV_PrintToClient(client_t *cl, int level, char *string)
161 ClientReliableWrite_Begin (cl, svc_print, strlen(string)+3);
163 ClientReliableWrite_String (cl, string);
177 char string[1024]; local
183 vsprintf (string, fmt,argptr);
186 SV_PrintToClient(cl, level, string);
199 char string[1024]; local
204 vsprintf (string, fmt,argptr);
207 Sys_Printf ("%s", string); // print to the console
216 SV_PrintToClient(cl, level, string);
230 char string[1024]; local
    [all...]
  /external/quake/quake/src/WinQuake/
sys_linux.cpp 14 #include <string.h>
142 char string[1024]; local
148 vsprintf (string,error,argptr);
150 fprintf(stderr, "Error: %s\n", string);
160 char string[1024]; local
163 vsprintf (string,warning,argptr);
165 fprintf(stderr, "Warning: %s", string);
  /external/skia/legacy/src/animator/
SkDisplayPost.cpp 32 SK_MEMBER(sink, String),
33 SK_MEMBER_PROPERTY(target, String),
34 SK_MEMBER_PROPERTY(type, String)
87 SkString string; local
88 SkDump::GetEnumString(SkType_EventMode, mode, &string);
89 if (!string.equals("immediate"))
90 SkDebugf("mode=\"%s\" ", string.c_str());
141 SkDebugf("string=\"%s\" ", meta.findString(name));
291 SkString* string = value.fOperand.fString; local
295 fEvent.setString("id", *string);
    [all...]
SkMemberInfo.cpp 124 void SkMemberInfo::getString(const SkDisplayable* displayable, SkString** string) const {
129 *string = value.fOperand.fString;
135 *string = (SkString*) valuePtr;
148 SkString* string = (SkString*) memberData(displayable); local
149 string->set(*value);
232 if (strncmp(rawValue, "#string:", sizeof("#string:") - 1) == 0) {
233 SkASSERT(sizeof("string") == sizeof("script"));
312 SkString string(rawValue, rawValueLen);
314 scriptValue.fOperand.fString = &string;
318 SkString* string = (SkString*) memberData(displayable); local
423 SkString* string = untypedStorage ? (SkString*) untypedStorage : (*arrayStorage)[storageOffset].fString; local
    [all...]
  /external/skia/src/animator/
SkDisplayPost.cpp 32 SK_MEMBER(sink, String),
33 SK_MEMBER_PROPERTY(target, String),
34 SK_MEMBER_PROPERTY(type, String)
83 SkString string; local
84 SkDump::GetEnumString(SkType_EventMode, mode, &string);
85 if (!string.equals("immediate"))
86 SkDebugf("mode=\"%s\" ", string.c_str());
133 SkDebugf("string=\"%s\" ", meta.findString(name));
283 SkString* string = value.fOperand.fString; local
287 fEvent.setString("id", *string);
    [all...]
SkMemberInfo.cpp 124 void SkMemberInfo::getString(const SkDisplayable* displayable, SkString** string) const {
129 *string = value.fOperand.fString;
135 *string = (SkString*) valuePtr;
148 SkString* string = (SkString*) memberData(displayable); local
149 string->set(*value);
232 if (strncmp(rawValue, "#string:", sizeof("#string:") - 1) == 0) {
233 SkASSERT(sizeof("string") == sizeof("script"));
312 SkString string(rawValue, rawValueLen);
314 scriptValue.fOperand.fString = &string;
318 SkString* string = (SkString*) memberData(displayable); local
423 SkString* string = untypedStorage ? (SkString*) untypedStorage : (*arrayStorage)[storageOffset].fString; local
    [all...]

Completed in 1384 milliseconds

<<11121314151617181920>>