Home
last modified time | relevance | path

Searched refs:valueView (Results 1 – 15 of 15) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/front_end/linear_memory_inspector/
H A DValueInterpreterDisplayUtils.ts82 const valueView = new DataView(formatData.buffer); constant
88 value = formatData.signed ? valueView.getInt8(0) : valueView.getUint8(0);
91 …value = formatData.signed ? valueView.getInt16(0, isLittleEndian) : valueView.getUint16(0, isLittl…
94 …value = formatData.signed ? valueView.getInt32(0, isLittleEndian) : valueView.getUint32(0, isLittl…
97 …value = formatData.signed ? valueView.getBigInt64(0, isLittleEndian) : valueView.getBigUint64(0, i…
100 value = valueView.getFloat32(0, isLittleEndian);
103 value = valueView.getFloat64(0, isLittleEndian);
106 return formatBoolean(valueView.getInt8(0));
/dports/science/axom/axom-0.6.1/src/axom/inlet/
H A DField.cpp211 const int8 intValue = valueView->getScalar(); in get()
228 return valueView->getScalar(); in get()
235 return valueView->getScalar(); in get()
243 const char* valueStr = valueView->getString(); in get()
252 if(valueView == nullptr) in checkExistenceAndType()
257 if(valueView->getTypeID() != expected) in checkExistenceAndType()
264 conduit::DataType::id_to_name(valueView->getTypeID())); in checkExistenceAndType()
268 return valueView; in checkExistenceAndType()
274 if(valueView == nullptr) in type()
279 switch(valueView->getTypeID()) in type()
[all …]
H A Dinlet_utils.cpp61 const axom::sidre::View* valueView = target.getView(flag); in checkFlag() local
62 const int8 intValue = valueView->getScalar(); in checkFlag()
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/vstgui4/vstgui/uidescription/editing/
H A Duiattributescontroller.cpp1047 if (valueView) in createValueViewForAttributeType()
1058 return valueView; in createValueViewForAttributeType()
1106 CView* valueView = nullptr; in createViewForAttribute() local
1117 if (valueView == nullptr) in createViewForAttribute()
1132 valueView = textEdit; in createViewForAttribute()
1135 if (valueView) in createViewForAttribute()
1148 r.setHeight (valueView->getHeight ()); in createViewForAttribute()
1149 valueView->setViewSize (r); in createViewForAttribute()
1150 valueView->setMouseableArea (r); in createViewForAttribute()
1151 result->addView (valueView); in createViewForAttribute()
[all …]
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vstgui.surge/vstgui/uidescription/editing/
H A Duiattributescontroller.cpp1046 if (valueView) in createValueViewForAttributeType()
1057 return valueView; in createValueViewForAttributeType()
1105 CView* valueView = nullptr; in createViewForAttribute() local
1116 if (valueView == nullptr) in createViewForAttribute()
1131 valueView = textEdit; in createViewForAttribute()
1134 if (valueView) in createViewForAttribute()
1147 r.setHeight (valueView->getHeight ()); in createViewForAttribute()
1148 valueView->setViewSize (r); in createViewForAttribute()
1149 valueView->setMouseableArea (r); in createViewForAttribute()
1150 result->addView (valueView); in createViewForAttribute()
[all …]
/dports/audio/audacity/audacity-Audacity-3.1.3/src/tracks/ui/
H A DTrackView.cpp95 const std::string_view& attr, const XMLAttributeValueView& valueView) in HandleXMLAttribute() argument
99 if (attr == "height" && valueView.TryGet(nValue)) { in HandleXMLAttribute()
107 else if ( attr == "minimized" && valueView.TryGet(nValue)) { in HandleXMLAttribute()
H A DCommonTrackPanelCell.h120 const std::string_view& attr, const XMLAttributeValueView& valueView);
H A DTrackView.h94 …bool HandleXMLAttribute( const std::string_view& attr, const XMLAttributeValueView& valueView ) ov…
H A DCommonTrackPanelCell.cpp157 const std::string_view& attr, const XMLAttributeValueView& valueView) in HandleXMLAttribute() argument
/dports/games/openspades/openspades-0.1.3/Resources/Scripts/Gui/Client/
H A DChatSayWindow.as74 CommandFieldConfigValueView@ valueView;
84 if(valueView !is null) {
85 @valueView.Parent = null;
111 @valueView = CommandFieldConfigValueView(this.Manager, filteredNames);
112 valueView.Bounds = AABB2(0.f, -15.f, 0.f, 0.f);
113 @valueView.Parent = this;
/dports/deskutils/coolreader/coolreader-cr3.2.55/android/src/org/coolreader/crengine/
H A DBookInfoDialog.java89 TextView valueView = (TextView)tableRow.findViewById(R.id.value); in addItem() local
91 valueView.setText(value); in addItem()
H A DOptionsDialog.java487 if (valueView != null) { in getView()
490 valueView.setText(valueLabel); in getView()
491 valueView.setVisibility(View.VISIBLE); in getView()
493 valueView.setText(""); in getView()
496 valueView.setEnabled(enabled); in getView()
553 valueView.setBackgroundColor(cl); in getView()
627 valueView.setChecked(getValueBoolean()); in getView()
629 valueView.setEnabled(enabled); in getView()
683 valueView.setEnabled(enabled); in getView()
1713 valueView.requestFocus(); in onSelect()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/infobars/android/java/src/org/chromium/components/infobars/
H A DInfoBarControlLayout.java101 TextView valueView = (TextView) view.getChildAt(1); in getView() local
102 valueView.setText(getItem(position).toString()); in getView()
103 valueView.setMinimumWidth(mMinWidthRequiredForValues); in getView()
/dports/audio/audacity/audacity-Audacity-3.1.3/src/
H A DTrack.cpp1268 const std::string_view& attr, const XMLAttributeValueView& valueView) in HandleCommonXMLAttribute() argument
1272 if (mpView && mpView->HandleXMLAttribute(attr, valueView)) in HandleCommonXMLAttribute()
1274 else if (mpControls && mpControls->HandleXMLAttribute(attr, valueView)) in HandleCommonXMLAttribute()
1277 SetName(valueView.ToWString()); in HandleCommonXMLAttribute()
1280 else if (attr == "isSelected" && valueView.TryGet(nValue)) { in HandleCommonXMLAttribute()
H A DTrack.h829 …ool HandleCommonXMLAttribute(const std::string_view& attr, const XMLAttributeValueView& valueView);