HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 426 - 450 of 1323) sorted by null

<<11121314151617181920>>

  /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/libexif/libexif/olympus/
mnote-olympus-entry.c 26 #include <string.h>
87 const char *string; member in struct:__anon20355::__anon20356
444 for (j = 0; items[i].elem[j].string &&
450 strncpy (v, _(items[i].elem[j].string), maxlen);
514 for (j = 0; items[i].elem[j].string &&
520 strncpy (v, _(items[i].elem[j].string), maxlen);
  /external/libppp/src/
chat.h 67 } string[MAXABORTS]; member in struct:chat::__anon21032
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 438 * Build a zero-terminated constant string.
446 LLVMValueRef string = LLVMAddGlobal(gallivm->module, LLVMArrayType(i8, len), ""); local
447 LLVMSetGlobalConstant(string, TRUE);
448 LLVMSetLinkage(string, LLVMInternalLinkage);
449 LLVMSetInitializer(string, LLVMConstStringInContext(gallivm->context, str, len, TRUE));
450 string = LLVMConstBitCast(string, LLVMPointerType(i8, 0));
451 return string;
  /external/mesa3d/src/mapi/glapi/gen/
glX_XML.py 30 import sys, getopt, string namespace
355 """Return the length, as a string, of the variable-sized
464 In these cases the string 'X_GLXVendorPrivate' or
glX_proto_send.py 30 import sys, getopt, copy, string namespace
38 tmp = '%s_%s' % (tmp, string.lower(str[i:i+3]))
41 tmp = '%s_%s' % (tmp, string.lower(str[i]))
633 skip_condition = "(%s)" % (string.join( condition_list, ") && (" ))
    [all...]
glX_proto_size.py 30 import sys, getopt, copy, string namespace
290 print ' compsize = __gl%s_size(%s);' % (f.name, string.join(f.count_parameter_list, ","))
540 dst = p.string()
608 # size string for the variable length parameter(s). While
  /external/okhttp/src/main/java/com/squareup/okhttp/
Response.java 71 public String header(String name) {
75 public String header(String name, String defaultValue) {
76 String result = headers.get(name);
80 public List<String> headers(String name) {
84 public Set<String> headerNames() {
92 public String headerName(int index)
158 public String string() throws IOException { method in class:Response.Body
    [all...]
  /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::__anon23962::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/skia/src/animator/
SkDisplayEvent.cpp 35 SK_MEMBER_PROPERTY(key, String), // a single key (also last key pressed)
36 SK_MEMBER_PROPERTY(keys, String), // a single key or dash-delimited range of keys
38 SK_MEMBER(target, String),
219 input->string.set(meta.findString(name));
238 SkString* string = value.fOperand.fString; local
239 const char* chars = string->c_str();
  /external/skia/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);

Completed in 664 milliseconds

<<11121314151617181920>>