HomeSort by relevance Sort by last modified time
    Searched full:svalue (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/libcxxabi/src/Unwind/
DwarfInstructions.hpp 239 sint_t svalue, svalue2; local
271 svalue = (int8_t) addressSpace.get8(p);
273 *(++sp) = (pint_t)svalue;
275 fprintf(stderr, "push 0x%" PRIx64 "\n", (uint64_t)svalue);
289 svalue = (int16_t) addressSpace.get16(p);
291 *(++sp) = (pint_t)svalue;
293 fprintf(stderr, "push 0x%" PRIx64 "\n", (uint64_t)svalue);
307 svalue = (int32_t)addressSpace.get32(p);
309 *(++sp) = (pint_t)svalue;
311 fprintf(stderr, "push 0x%" PRIx64 "\n", (uint64_t)svalue);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DwarfInstructions.hpp 238 sint_t svalue, svalue2; local
270 svalue = (int8_t) addressSpace.get8(p);
272 *(++sp) = (pint_t)svalue;
274 fprintf(stderr, "push 0x%llX\n", (uint64_t) svalue);
288 svalue = (int16_t) addressSpace.get16(p);
290 *(++sp) = (pint_t)svalue;
292 fprintf(stderr, "push 0x%llX\n", (uint64_t) svalue);
306 svalue = (int32_t)addressSpace.get32(p);
308 *(++sp) = (pint_t)svalue;
310 fprintf(stderr, "push 0x%llX\n", (uint64_t) svalue);
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 31 static int assign_string(char **psMember, char const *sValue);
34 static int assign_long(unsigned long *piMember, char const *sValue);
272 int assign_string(char **psMember, char const *sValue)
282 if (strcasecmp(sValue, "NULL"))
284 *psMember = strdup(sValue);
306 int assign_long(unsigned long *piMember, char const *sValue)
311 if (!strncasecmp(sValue, "0x", 2)) sscanf(sValue + 2, "%lx", piMember);
312 else if (*sValue == '$') sscanf(sValue + 1, "%lx", piMember)
    [all...]
  /external/pdfium/fpdfsdk/include/
fsdk_baseform.h 54 CFX_WideString sValue; //in[out]
105 void SetValue(const CFX_WideString& sValue, FX_BOOL bNotify);
106 void SetDefaultValue(const CFX_WideString& sValue);
111 void ResetAppearance(FX_LPCWSTR sValue, FX_BOOL bValueChanged);
138 void ResetAppearance_ComboBox(FX_LPCWSTR sValue);
140 void ResetAppearance_TextField(FX_LPCWSTR sValue);
203 void ResetFieldAppearance(CPDF_FormField* pFormField, FX_LPCWSTR sValue, FX_BOOL bValueChanged);
  /external/pdfium/fpdfsdk/include/formfiller/
FFL_TextField.h 22 CFX_WideString sValue;
FFL_ComboBox.h 21 CFX_WideString sValue;
  /external/pdfium/fpdfsdk/src/formfiller/
FFL_ListBox.cpp 211 fa.sValue = L"";
220 fa.sValue = m_pWidget->GetOptionLabel(nCurSel);
228 fa.sValue = L"";
235 fa.sValue = m_pWidget->GetOptionLabel(nCurSel);
FFL_ComboBox.cpp 200 fa.sValue = pEdit->GetText();
216 fa.sValue = pEdit->GetText();
223 fa.sValue = m_pWidget->GetValue();
278 m_State.sValue = pEdit->GetText();
295 pEdit->SetText(m_State.sValue.c_str());
FFL_TextField.cpp 218 fa.sValue = pWnd->GetText();
230 fa.sValue = pWnd->GetText();
236 fa.sValue = m_pWidget->GetValue();
284 m_State.sValue = pWnd->GetText();
294 pWnd->SetText(m_State.sValue.c_str());
  /external/pdfium/fpdfsdk/src/javascript/
util.cpp 336 CFX_WideString sValue;
337 sValue.Format(L"%d",cTableAd[iIndex].iValue);
338 memcpy(tszValue, (wchar_t *)sValue.GetBuffer(sValue.GetLength()+1),
339 (sValue.GetLength()+1)*sizeof(wchar_t));
432 CFX_WideString sValue;
433 sValue.Format(L"%d",cTableAd[iIndex].iValue);
434 memcpy(tszValue, (wchar_t *)sValue.GetBuffer(sValue.GetLength()+1),sValue.GetLength()*sizeof(wchar_t))
    [all...]
global.cpp 425 CFX_ByteString sValue = CJS_Value(isolate, v, VT_string).ToCFXByteString();
429 pObjElement->sData = sValue;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
StringTrieBuilder.java 196 public Node add(StringTrieBuilder builder, CharSequence s, int start, int sValue) {
297 public Node add(StringTrieBuilder builder, CharSequence s, int start, int sValue) {
302 ValueNode node=builder.createSuffixNode(s, start, sValue);
380 public Node add(StringTrieBuilder builder, CharSequence s, int start, int sValue) {
385 setValue(sValue);
395 suffixNode.setValue(sValue);
436 ValueNode newSuffixNode=builder.createSuffixNode(s, start+1, sValue);
443 next=next.add(builder, s, start, sValue);
513 public Node add(StringTrieBuilder builder, CharSequence s, int start, int sValue) {
518 setValue(sValue);
    [all...]
  /external/pdfium/fpdfsdk/src/
fsdk_baseform.cpp 309 void CPDFSDK_Widget::SetValue(const CFX_WideString& sValue, FX_BOOL bNotify)
314 pFormField->SetValue(sValue, bNotify);
317 void CPDFSDK_Widget::SetDefaultValue(const CFX_WideString& sValue)
355 void CPDFSDK_Widget::ResetAppearance(FX_LPCWSTR sValue, FX_BOOL bValueChanged)
379 ResetAppearance_ComboBox(sValue);
385 ResetAppearance_TextField(sValue);
1030 void CPDFSDK_Widget::ResetAppearance_ComboBox(FX_LPCWSTR sValue)
1071 if (sValue)
1072 pEdit->SetText(sValue);
1204 void CPDFSDK_Widget::ResetAppearance_TextField(FX_LPCWSTR sValue)
    [all...]
fsdk_actionhandler.cpp 650 pContext->OnField_Focus(data.bModifier, data.bShift, pFormField, data.sValue);
653 pContext->OnField_Blur(data.bModifier, data.bShift, pFormField, data.sValue);
657 data.bModifier, data.nSelEnd, data.nSelStart, data.bShift, pFormField, data.sValue,
662 data.bShift, pFormField, data.sValue, data.bRC);
fsdk_annothandler.cpp 678 CFX_WideString sValue = pWidget->OnFormat(0, bFormated);
681 pWidget->ResetAppearance(sValue.c_str(), FALSE);
  /hardware/ti/omap4-aah/security/tee_client_api/
schannel6_protocol.h 136 SCHANNEL6_COMMAND_PARAM_VALUE sValue;
157 SCHANNEL6_ANSWER_PARAM_VALUE sValue;
  /hardware/ti/omap4xxx/security/tee_client_api/
schannel6_protocol.h 136 SCHANNEL6_COMMAND_PARAM_VALUE sValue;
157 SCHANNEL6_ANSWER_PARAM_VALUE sValue;
  /external/kernel-headers/original/uapi/linux/dvb/
frontend.h 505 * u.st.stat.svalue[0] = global statistics;
509 * u.st.stat.svalue[2] = layer B statistics;
511 * u.st.stat.svalue[3] = layer C statistics;
519 __s64 svalue; /* for 0.0001 dB measures */ member in union:dtv_stats::__anon11078
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 455 svalue = self.repr.repr(value) # repr(value)
459 svalue = svalue[1:-1]
463 l.insert(0, svalue)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 455 svalue = self.repr.repr(value) # repr(value)
459 svalue = svalue[1:-1]
463 l.insert(0, svalue)
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 436 String svalue = get(key, null); local
437 if (svalue == null) {
440 if (svalue.length() == 0) {
444 byte[] bavalue = svalue.getBytes(StandardCharsets.US_ASCII);
  /external/icu/icu4c/source/i18n/
digitlst.cpp 553 int64_t svalue = (int64_t)value;
559 if (( decNumberIsNegative(fDecNumber) && svalue>0) ||
560 (!decNumberIsNegative(fDecNumber) && svalue<0)) {
561 svalue = 0;
565 return svalue;
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport.c 318 phNfc_sData_t sValue;
341 &sValue );
345 if (sValue.length < 2)
351 nTid = sValue.buffer[0];
353 sServiceName.buffer = sValue.buffer + 1;
354 sServiceName.length = sValue.length - 1;
397 if (sValue.length != 2)
403 nTid = sValue.buffer[0];
409 nSap = sValue.buffer[1];
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 252 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
255 const Value *SValue;
278 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
282 const Value *SValue;
    [all...]
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 90 void JS_PutObjectString(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* PropertyName, const wchar_t* sValue);

Completed in 1203 milliseconds

1 2 3