Home
last modified time | relevance | path

Searched refs:item (Results 1301 - 1325 of 3167) sorted by relevance

1...<<51525354555657585960>>...127

/third_party/skia/tools/viewer/
H A DParticlesSlide.cpp87 fDirty = (fTreeStack.back() && ImGui::DragFloat(item(name), &f)) || fDirty;
90 fDirty = (fTreeStack.back() && ImGui::DragInt(item(name), &i)) || fDirty;
93 fDirty = (fTreeStack.back() && ImGui::Checkbox(item(name), &b)) || fDirty;
103 fDirty = ImGui::InputTextMultiline(item(name), s.writable_str(), s.size() + 1,
107 fDirty = ImGui::InputText(item(name), s.writable_str(), s.size() + 1, flags,
133 fTreeStack.push_back(ImGui::TreeNodeEx(item(name),
147 this->enterObject(item(name));
172 const char* item(const char* name) { in item() function in SkGuiVisitor
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatRegressionTest.java952 PatternAndResult item = tests[i]; in Test_GEec()
953 dateFormat.applyPattern( item.getPattern() ); in Test_GEec()
958 if ( buf.toString().compareTo(item.getResult()) != 0 ) { in Test_GEec()
959 errln("for pattern " + item.getPattern() + ", expected " + item.getResult() + ", got " + buf ); in Test_GEec()
962 dateFormat.parse( item.getResult(), cal, pos); in Test_GEec()
967 errln("use pattern " + item.getPattern() + " to parse " + item.getResult() + in Test_GEec()
1321 for (TestDateFormatItem item: items) { in TestT10239()
1324 sdfmt.applyPattern(item in TestT10239()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDateFormatRegressionTest.java955 PatternAndResult item = tests[i]; in Test_GEec()
956 dateFormat.applyPattern( item.getPattern() ); in Test_GEec()
961 if ( buf.toString().compareTo(item.getResult()) != 0 ) { in Test_GEec()
962 errln("for pattern " + item.getPattern() + ", expected " + item.getResult() + ", got " + buf ); in Test_GEec()
965 dateFormat.parse( item.getResult(), cal, pos); in Test_GEec()
970 errln("use pattern " + item.getPattern() + " to parse " + item.getResult() + in Test_GEec()
1324 for (TestDateFormatItem item: items) { in TestT10239()
1327 sdfmt.applyPattern(item in TestT10239()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/rich_text/
H A Drosen_render_rich_text.cpp39 for (const auto& item : children) { in DumpTree()
40 item->DumpTree(depth + 1); in DumpTree()
/foundation/arkui/ace_engine/frameworks/core/pipeline/layers/
H A Dlayer.cpp40 for (const auto& item : children_) { in DumpTree()
41 item->DumpTree(depth + 1); in DumpTree()
/foundation/multimodalinput/input/tools/vuinput/src/
H A Dvirtual_remote_control.cpp47 for (const auto &item : absInfos) { in VirtualRemoteControl()
48 SetAbsValue(item); in VirtualRemoteControl()
H A Dvirtual_single_finger.cpp40 for (const auto &item : absInfos) { in VirtualSingleFinger()
41 SetAbsValue(item); in VirtualSingleFinger()
H A Dvirtual_joystick.cpp48 for (const auto &item : absInfos) { in VirtualJoystick()
49 SetAbsValue(item); in VirtualJoystick()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/wrapper/
H A Dnetsys_event_message.cpp40 for (auto &item : messageMap_) { in DumpMessage()
41 NETNATIVE_LOG_D("type: %{public}d", item.first); in DumpMessage()
/third_party/node/deps/npm/node_modules/jsonparse/test/
H A Dprimitives.js39 .map(function (item) { return item.key })
/third_party/python/Tools/c-analyzer/c_common/
H A Diterutil.py47 for item in items:
48 yield item, True
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_mainmenu.py12 actual = [item[0] for item in mainmenu.menudefs]
/third_party/python/Lib/test/
H A Dpydoc_mod.py32 def __class_getitem__(self, item):
33 return types.GenericAlias(self, item)
/third_party/typescript/tests/baselines/reference/
H A DinfinitelyExpandingTypes4.js4 groupBy<K>(keySelector: (item: T) => K): Query<Grouping<K, T>>;
10 groupBy<K>(keySelector: (item: T) => K): QueryEnumerator<Grouping<K, T>>;
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_pattern.cpp223 for (const auto& item : children) { in ClearMultiSelect()
224 if (!AceType::InstanceOf<FrameNode>(item)) { in ClearMultiSelect()
228 auto itemFrameNode = AceType::DynamicCast<FrameNode>(item); in ClearMultiSelect()
764 // Scroll item up. in GetNextIndexByStep()
771 // Scroll item down. in GetNextIndexByStep()
799 "Current cross index: %{public}d is not the tail item. Return to the tail: { %{public}d,%{public}d }", in GetNextIndexByStep()
804 TAG_LOGI(AceLogTag::ACE_GRID, "Current cross index: %{public}d is the tail item. No next item can be found!", in GetNextIndexByStep()
1407 for (const auto& item : info.lineHeightMap_) {
1408 auto line = info.gridMatrix_.find(item
[all...]
/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhcapture_session.cpp355 for (auto& item : repeatStreams) { in StartMovingPhotoStream()
356 auto curStreamRepeat = CastStream<HStreamRepeat>(item); in StartMovingPhotoStream()
373 for (auto& item : repeatStreams) { in StartMovingPhotoStream()
374 auto curStreamRepeat = CastStream<HStreamRepeat>(item); in StartMovingPhotoStream()
1109 camera_metadata_item_t item; in QueryFpsAndZoomRatio() local
1111 OHOS_STATUS_CAMERA_CURRENT_ZOOM_RATIO, &item); in QueryFpsAndZoomRatio()
1116 currentZoomRatio = static_cast<float>(item.data.ui32[0]); in QueryFpsAndZoomRatio()
1117 MEDIA_INFO_LOG("HCaptureSession::QueryFpsAndZoomRatio() current zoom %{public}d.", item.data.ui32[0]); in QueryFpsAndZoomRatio()
1119 retFindMeta = OHOS::Camera::FindCameraMetadataItem(metaOut->get(), OHOS_STATUS_CAMERA_CURRENT_FPS, &item); in QueryFpsAndZoomRatio()
1124 currentFps = static_cast<float>(item in QueryFpsAndZoomRatio()
1179 camera_metadata_item_t item; GetSensorOritation() local
[all...]
/foundation/multimedia/av_session/frameworks/js/napi/session/src/
H A Dnapi_utils.cpp263 for (auto& item : in) { in SetOutPutDeviceIdValue()
265 SetValue(env, static_cast<int32_t>(std::stoi(item)), element); in SetOutPutDeviceIdValue()
443 MMI::KeyEvent::KeyItem item; in GetValue() local
444 status = GetValue(env, keyItem, item); in GetValue()
446 if ((key.GetKeyCode() == item.GetKeyCode()) && (action == MMI::KeyEvent::KEY_ACTION_UP)) { in GetValue()
447 item.SetPressed(false); in GetValue()
449 out->AddKeyItem(item); in GetValue()
469 CHECK_RETURN(in->GetKeyItem(), "get key item failed", napi_generic_failure); in SetValue()
482 napi_value item {}; in SetValue()
483 status = SetValue(env, keyItem, item); in SetValue()
670 napi_value item = nullptr; GetValue() local
968 napi_value item = nullptr; GetValue() local
1604 napi_value item = nullptr; GetValue() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H A Delement_proxy.cpp567 for (auto&& item : children_) {
568 auto viewId = item.second->GetId();
596 for (const auto& item : children_) {
597 auto childComponent = lazyForEachComponent_->GetChildByIndex(item.first);
598 item.second->Update(childComponent, startIndex_ + item.first);
615 for (const auto& item : children_) {
616 item.second->UpdateIndex(startIndex_ + item.first);
745 for (auto&& item
[all...]
/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/
H A Dlnn_net_builder.c211 LnnConnectionFsm *item = NULL; in SendElectMessageToAll() local
213 LIST_FOR_EACH_ENTRY(item, &g_netBuilder.fsmList, LnnConnectionFsm, node) { in SendElectMessageToAll()
214 if (skipNetworkId != NULL && strcmp(item->connInfo.peerNetworkId, skipNetworkId) == 0) { in SendElectMessageToAll()
217 if (!IsNodeOnline(item->connInfo.peerNetworkId)) { in SendElectMessageToAll()
220 if (SyncElectMessage(item->connInfo.peerNetworkId) != SOFTBUS_OK) { in SendElectMessageToAll()
221 LNN_LOGE(LNN_BUILDER, "sync elect info to conn failed. connFsm=%{public}u", item->id); in SendElectMessageToAll()
291 LnnConnectionFsm *item = NULL; in NeedPendingJoinRequest() local
296 LIST_FOR_EACH_ENTRY(item, &g_netBuilder.fsmList, LnnConnectionFsm, node) { in NeedPendingJoinRequest()
297 if (item->isDead) { in NeedPendingJoinRequest()
300 if ((item in NeedPendingJoinRequest()
313 PendingJoinRequestNode *item = NULL; IsSamePendingRequest() local
353 PendingJoinRequestNode *item = NULL; RemovePendingRequestByAddrType() local
1199 LnnConnectionFsm *item = NULL; LnnNotifyAuthHandleLeaveLNN() local
[all...]
/third_party/rust/crates/syn/src/
H A Ditem.rs20 /// A constant item: `const MAX: u16 = 65535`.
26 /// An `extern crate` item: `extern crate serde`.
46 /// A static item: `static BIKE: Shed = Shed(42)`.
67 /// Tokens forming an item not interpreted by Syn.
72 // match item {
75 // Item::Const(item) => {...}
76 // Item::Enum(item) => {...}
78 // Item::Verbatim(item) => {...}
91 /// A constant item: `const MAX: u16 = 65535`.
122 /// An `extern crate` item
919 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { global() variables
1786 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { parse() variables
2249 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { parse() variables
2594 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { parse() variables
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundleReader.java290 // Faster table item search at the cost of slower startup and some heap memory. in init()
1167 private static final Object putIfCleared(Object[] values, int index, Object item, int size) { in putIfCleared() argument
1182 item : new SoftReference<>(item); in putIfCleared()
1183 return item; in putIfCleared()
1219 Object putIfAbsent(int key, Object item, int size) { in putIfAbsent() argument
1223 return putIfCleared(values, index, item, size); in putIfAbsent()
1228 return level.putIfAbsent(key, item, size); in putIfAbsent()
1231 values[index] = storeDirectly(size) ? item : new SoftReference<>(item); in putIfAbsent()
1328 putIfAbsent(int res, Object item, int size) putIfAbsent() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DICUResourceBundleReader.java292 // Faster table item search at the cost of slower startup and some heap memory. in init()
1169 private static final Object putIfCleared(Object[] values, int index, Object item, int size) { in putIfCleared() argument
1184 item : new SoftReference<>(item); in putIfCleared()
1185 return item; in putIfCleared()
1221 Object putIfAbsent(int key, Object item, int size) { in putIfAbsent() argument
1225 return putIfCleared(values, index, item, size); in putIfAbsent()
1230 return level.putIfAbsent(key, item, size); in putIfAbsent()
1233 values[index] = storeDirectly(size) ? item : new SoftReference<>(item); in putIfAbsent()
1330 putIfAbsent(int res, Object item, int size) putIfAbsent() argument
[all...]
/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp1055 auto item = data.GetRecordAt(i); in CheckUriPermission() local
1056 if (item == nullptr || (!data.IsRemote() && targetBundleName.compare(data.GetOrginAuthority()) == 0)) { in CheckUriPermission()
1061 if (!item->isConvertUriFromRemote && !item->GetConvertUri().empty()) { in CheckUriPermission()
1063 item->SetConvertUri(""); in CheckUriPermission()
1065 if (item->isConvertUriFromRemote && !item->GetConvertUri().empty()) { in CheckUriPermission()
1067 uri = std::make_shared<OHOS::Uri>(item->GetConvertUri()); in CheckUriPermission()
1068 } else if (!item->isConvertUriFromRemote && item in CheckUriPermission()
1125 auto item = data.GetRecordAt(i); CheckAppUriPermission() local
1151 auto item = data.GetRecordAt(indexs[i]); CheckAppUriPermission() local
1997 auto item = pasteData->GetRecordAt(i); GetDistributedData() local
2152 auto item = data.GetRecordAt(i); GenerateDistributedUri() local
2176 auto item = data.GetRecordAt(indexs[i]); GenerateDistributedUri() local
[all...]
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/manager/include/
H A Dhdi_utils_ringbuffer.h45 int32_t ReleaseOutputBuffer(RingBuffer &item);
49 int32_t EnqueueInputBuffer(RingBuffer &item);
/foundation/multimedia/drm_framework/services/drm_service/client/src/
H A Dmediakeysystem_service_callback_proxy.cpp47 for (auto item : data) { in SendEvent()
48 if (!parcelData.WriteUint8(item)) { in SendEvent()

Completed in 28 milliseconds

1...<<51525354555657585960>>...127