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

1 2

  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsPerfTestRunner.java 48 String strValue = (String)icicle.get("iterations");
49 if (strValue != null) {
50 int intValue = Integer.parseInt(strValue);
  /packages/apps/Settings/tests/src/com/android/settings/vpn2/
VpnProfileParser.java 135 String strValue = new String(ch, start, length);
137 profile.name = strValue;
141 int t = getVpnProfileType(strValue);
150 profile.server = strValue;
154 profile.username = strValue;
158 profile.password = strValue;
162 profile.dnsServers = strValue;
166 profile.searchDomains = strValue;
170 profile.mppe = Boolean.valueOf(strValue);
174 profile.l2tpSecret = strValue;
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/src/
dmConstraints.cc 193 void DMConstraints::GetDefaultString( DMString& strValue )const
204 strValue = m_nDef_Value ? "true" : "false";
208 strValue = m_psDef_Value;
216 strValue = m_psDef_Value;
220 strValue = m_psDef_Value;
225 strValue = s;
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 168 String strValue = readMultipleBytes(constraintData, valueLength, index);
169 if (strValue.equals(" ")) {
170 strValue = "";
173 mMap.put(strKey, strValue);
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 165 string strValue;
206 strValue.erase();
285 strValue.push_back(c);
302 strValue.push_back(((numValue >> (n * 8)) & 0xFF));
304 if (strValue.length() > 0)
305 pParam = new CNfcParam(token.c_str(), strValue);
309 strValue.erase();
316 strValue.push_back('\0');
318 pParam = new CNfcParam(token.c_str(), strValue);
322 strValue.push_back(c)
    [all...]
  /external/libnfc-nci/src/adaptation/
config.cpp 165 string strValue;
217 strValue.erase();
296 strValue.push_back(c);
313 strValue.push_back(((numValue >> (n * 8)) & 0xFF));
315 if (strValue.length() > 0)
316 pParam = new CNfcParam(token.c_str(), strValue);
320 strValue.erase();
327 strValue.push_back('\0');
329 pParam = new CNfcParam(token.c_str(), strValue);
333 strValue.push_back(c)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 410 String strValue = null;
411 if ((strValue = attributes.getValue("stringValue")) != null) {
412 return strValue;
413 } else if ((strValue = attributes.getValue("booleanValue")) != null) {
414 return Boolean.parseBoolean(strValue);
415 } else if ((strValue = attributes.getValue("intValue")) != null) {
416 return Integer.parseInt(strValue);
417 } else if ((strValue = attributes.getValue("floatValue")) != null) {
418 return Float.parseFloat(strValue);
419 } else if ((strValue = attributes.getValue("floatsValue")) != null)
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 1080 CFX_ByteString strValue = StrTrim(CFX_ByteString::FromUnicode(Value));
1082 if (strValue.IsEmpty()) return TRUE;
1102 strValue.Replace(",", ".");
1103 double dValue = atof(strValue);
1110 strValue = fcvt(dValue,iDec,&iDec2,&bNagative);
1111 if (strValue.IsEmpty())
1114 strValue = fcvt(dValue,iDec,&iDec2,&bNagative);
1115 if (strValue.IsEmpty())
1117 strValue = "0";
1127 strValue = "0" + strValue;
    [all...]
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_Notify.h 28 FX_BOOL OnValidate(CPDF_FormField* pFormField, CFX_WideString& strValue, CFX_WideString & strChange,
31 FX_BOOL OnKeyStroke(CPDF_FormField* pFormField, int nCommitKey, CFX_WideString& strValue, CFX_WideString& strChange,
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTimeFactory.java 82 * @param strValue The ISO 8601 string representation of the date/time.
86 public static XMPDateTime createFromISO8601(String strValue) throws XMPException
88 return new XMPDateTimeImpl(strValue);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNodeUtils.java 326 String strValue = serializeNodeValue(value);
329 node.setValue(strValue);
333 node.setValue(Utils.normalizeLangValue(strValue));
394 String strValue;
397 strValue = null;
401 strValue = XMPUtils.convertFromBoolean(((Boolean) value).booleanValue());
405 strValue = XMPUtils.convertFromInteger(((Integer) value).intValue());
409 strValue = XMPUtils.convertFromLong(((Long) value).longValue());
413 strValue = XMPUtils.convertFromDouble(((Double) value).doubleValue());
417 strValue = XMPUtils.convertFromDate((XMPDateTime) value)
    [all...]
XMPDateTimeImpl.java 116 * @param strValue an ISO 8601 string
119 public XMPDateTimeImpl(String strValue) throws XMPException
121 ISO8601Converter.parse(strValue, this);
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/src/
dm_tree_util.cc 129 DMString strValue;
130 data.GetString(strValue);
131 if ( strValue.length() )
133 m_oData.assign(strValue);
142 const DMString & strValue = data.GetStringValue();
143 if ( strValue.length() )
145 m_oData.assign(strValue);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
MultiFieldTimePickerDialog.java 228 ArrayList<String> strValue = new ArrayList<String>();
230 strValue.add(String.format("%03d", i));
233 mMilliSpinner.setMaxValue(strValue.size() - 1);
236 strValue.toArray(new String[strValue.size()]));
  /packages/apps/OMA-DM/engine/dmlib/portlib/lj/src/
xpl_HTTP.cc 114 DMString strValue;
115 SYNCML_DM_RET_STATUS_T ret=brwConnector->GetHeaderField(field,strValue);
116 DmStrcpy(*value, strValue.c_str());
  /packages/apps/OMA-DM/engine/xpl/src/
xpl_HTTP.cc 114 DMString strValue;
115 SYNCML_DM_RET_STATUS_T ret=brwConnector->GetHeaderField(field,strValue);
116 DmStrcpy(*value, strValue.c_str());
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ua/hdr/
dmConstraints.h 142 * \param strValue [out] - default value as a string
144 void GetDefaultString( DMString& strValue )const;
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_Notify.cpp 98 FX_BOOL CFFL_Notify::OnKeyStroke(CPDF_FormField* pFormField, int nCommitKey, CFX_WideString& strValue, CFX_WideString& strChange,
106 FX_BOOL CFFL_Notify::OnValidate(CPDF_FormField* pFormField, CFX_WideString& strValue, CFX_WideString & strChange,
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmtData.cc 398 { DMString strValue;
399 res = GetString(strValue);
401 dataSize = strValue.length();
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsManager.java 375 String strValue = getString(scope, key);
376 if (strValue == null) {
380 String[] widthHeight = strValue.split("x");
  /external/pdfium/fpdfsdk/include/javascript/
PublicMethods.h 74 static double MakeInterDate(CFX_WideString strValue);
  /packages/apps/OMA-DM/engine/jni/
DMTreeManager.cc 81 DMString strValue(szValue);
91 if (ptrNode->SetStringValue(strValue) == SYNCML_DM_SUCCESS) {
92 strcatEx("set value of node %s to %s successfully\n", strNodePath.c_str(), strValue.c_str());
95 strcatEx("can't set value of node %s to %s", strNodePath.c_str(), strValue.c_str());
  /packages/apps/OMA-DM/engine/dmlib/linux_java/samples/unittest/src/
dmt_test.cc     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java     [all...]
  /external/icu/icu4c/source/i18n/
msgfmt.cpp     [all...]

Completed in 566 milliseconds

1 2