HomeSort by relevance Sort by last modified time
    Searched refs:stringValue (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
StringDataItem.java 39 private String stringValue;
52 * @param stringValue The string value that this item represents
54 private StringDataItem(DexFile dexFile, String stringValue) {
57 this.stringValue = stringValue;
89 stringValue = in.realNullTerminatedUtf8String();
94 return offset + Leb128Utils.unsignedLeb128Size(stringValue.length()) +
95 Utf8Utils.stringToUtf8Bytes(stringValue).length + 1;
100 byte[] encodedValue = Utf8Utils.stringToUtf8Bytes(stringValue);
102 out.annotate("string_size: 0x" + Integer.toHexString(stringValue.length()) + " (" + stringValue.length()
    [all...]
StringIdItem.java 60 * @param stringValue The string value that this item represents
64 public static StringIdItem internStringIdItem(DexFile dexFile, String stringValue) {
65 StringDataItem stringDataItem = StringDataItem.internStringDataItem(dexFile, stringValue);
77 * @param stringValue The string value to look up
81 public static StringIdItem lookupStringIdItem(DexFile dexFile, String stringValue) {
82 StringDataItem stringDataItem = StringDataItem.lookupStringDataItem(dexFile, stringValue);
  /external/webkit/Source/WebCore/xml/
XPathUtil.h 45 String stringValue(Node*);
  /external/icu4c/samples/udata/
writer.c 63 char stringValue[]={'E', 'X', 'A', 'M', 'P', 'L', 'E', '\0'};
91 printf("Writing string value of %s\n", stringValue);
92 udata_writeString(pData, stringValue, sizeof(stringValue));
100 size=sizeof(stringValue) + sizeof(intValue);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 38 Value stringValue = args[0];
41 String string = stringValue.asString();
63 return literalValue(string.substring(start, end), stringValue.getEscapeMode(), stringValue
  /external/webkit/Source/WebCore/bridge/
npruntime.cpp 87 variant->value.stringValue.UTF8Length = value->UTF8Length;
88 variant->value.stringValue.UTF8Characters = (NPUTF8 *)malloc(sizeof(NPUTF8) * value->UTF8Length);
89 if (!variant->value.stringValue.UTF8Characters)
91 memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * value->UTF8Length);
102 free((void*)variant->value.stringValue.UTF8Characters);
103 variant->value.stringValue.UTF8Characters = 0;
104 variant->value.stringValue.UTF8Length = 0;
testbindings.cpp 47 NPVariant stringValue;
66 "stringValue",
129 strncpy (msgBuf, message->value.stringValue.UTF8Characters, message->value.stringValue.UTF8Length);
130 msgBuf[message->value.stringValue.UTF8Length] = 0;
165 NPN_ReleaseVariantValue (&obj->stringValue);
166 NPN_InitializeVariantWithVariant (&obj->stringValue, variant);
192 NPN_InitializeVariantWithVariant (variant, &obj->stringValue);
302 newInstance->stringValue.type = NPVariantType_String;
303 newInstance->stringValue.value.stringValue.UTF8Length = strlen ("Hello world")
    [all...]
  /frameworks/native/libs/utils/
PropertyMap.cpp 79 String8 stringValue;
80 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) {
85 int value = strtol(stringValue.string(), & end, 10);
88 key.string(), stringValue.string());
96 String8 stringValue;
97 if (! tryGetProperty(key, stringValue) || stringValue.length() == 0) {
102 float value = strtof(stringValue.string(), & end);
105 key.string(), stringValue.string())
    [all...]
  /packages/apps/Settings/src/com/android/settings/
GoogleLocationSettingHelper.java 88 String stringValue = null;
93 stringValue = c.getString(0);
102 if (stringValue == null) {
107 value = Integer.parseInt(stringValue);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
AbstractXmlPullParser.java 79 String stringValue = parser.getAttributeValue(null, name);
80 return stringValue != null &&
81 Boolean.parseBoolean(stringValue);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 66 UString stringValue = item.toString(exec);
68 env->functions->NewString(env, (const jchar *)stringValue.characters(), stringValue.length()));
101 UString stringValue = item.toString(exec);
103 if (stringValue.length() > 0)
104 value = ((const jchar*)stringValue.characters())[0];
222 UString stringValue = asString(value)->value(exec);
224 jobject javaString = env->functions->NewString(env, (const jchar*)stringValue.characters(), stringValue.length());
241 UString stringValue = "undefined"
    [all...]
JavaInstanceJSC.cpp 88 JSValue JavaInstance::stringValue(ExecState* exec) const
92 jstring stringValue = (jstring)callJNIMethod<jobject>(m_instance->m_instance, "toString", "()Ljava/lang/String;");
95 if (!stringValue)
99 const jchar* c = getUCharactersFromJStringInEnv(env, stringValue);
100 UString u((const UChar*)c, (int)env->GetStringLength(stringValue));
101 releaseUCharactersForJStringInEnv(env, stringValue, c);
317 return stringValue(exec);
322 return stringValue(exec);
332 return stringValue(exec);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeUtilities.cpp 122 npnMemFree(const_cast<NPUTF8*>(variant->value.stringValue.UTF8Characters));
123 variant->value.stringValue.UTF8Characters = 0;
124 variant->value.stringValue.UTF8Length = 0;
  /libcore/json/src/main/java/org/json/
JSON.java 34 String stringValue = (String) value;
35 if ("true".equalsIgnoreCase(stringValue)) {
37 } else if ("false".equalsIgnoreCase(stringValue)) {
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBoxOption.h 57 virtual String stringValue() const;
AccessibilityMenuListOption.h 62 virtual String stringValue() const;
AccessibilityMenuListOption.cpp 94 return stringValue();
113 String AccessibilityMenuListOption::stringValue() const
  /external/webkit/Source/WebCore/html/
StepRange.h 41 double clampValue(const String& stringValue);
StepRange.cpp 62 double StepRange::clampValue(const String& stringValue)
65 bool parseSuccess = parseToDoubleForNumberType(stringValue, &value);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebJavaScriptTextInputPanel.m 58 return [textInput stringValue];
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 61 string propertyNameString(arguments[1].value.stringValue.UTF8Characters,
62 arguments[1].value.stringValue.UTF8Length);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 168 String stringValue = value.getValue();
169 if (RenderResources.REFERENCE_NULL.equals(stringValue)) {
173 String lowerCaseValue = stringValue.toLowerCase();
183 File file = new File(stringValue);
188 stringValue, context);
199 File f = new File(stringValue);
215 Bridge.getLog().error(null, "Failed to parse file " + stringValue,
220 String.format("File %s does not exist (or is not a file)", stringValue),
226 File bmpFile = new File(stringValue);
229 Bitmap bitmap = Bridge.getCachedBitmap(stringValue,
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
WspTypeDecoder.java 202 String stringValue;
226 stringValue = new String(wspData, startIndex + 1, dataLength - 2);
228 stringValue = new String(wspData, startIndex, dataLength - 1);
248 stringValue = new String(wspData, startIndex, dataLength - 1);
364 * Side-effects: updates stringValue (available with
371 stringValue = null;
380 stringValue = new String(wspData, startIndex, dataLength - 1);
396 stringValue = null;
432 stringValue = null;
435 String mimeType = stringValue;
    [all...]
  /external/icu4c/tools/gentest/
gentest.c 105 char stringValue[]={'Y', 'E', 'A', 'R', '\0'};
121 udata_writeString(pData, stringValue, sizeof(stringValue));
129 size=sizeof(stringValue) + sizeof(intValue);
  /external/webkit/LayoutTests/fast/xpath/
xpath-test-pre.js 33 if (result.stringValue == expected)
36 testFailed(expr + ": expected '" + expected + "', actual '" + result.stringValue + "'");

Completed in 1098 milliseconds

1 2 3 4 5 6