Home
last modified time | relevance | path

Searched refs:GetInt (Results 1 - 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/angle2/util/capture/
H A Dframe_capture_test_utils.cpp89 traceInfoOut->contextClientMajorVersion = meta["ContextClientMajorVersion"].GetInt(); in LoadTraceInfoFromJSON()
90 traceInfoOut->contextClientMinorVersion = meta["ContextClientMinorVersion"].GetInt(); in LoadTraceInfoFromJSON()
91 traceInfoOut->frameEnd = meta["FrameEnd"].GetInt(); in LoadTraceInfoFromJSON()
92 traceInfoOut->frameStart = meta["FrameStart"].GetInt(); in LoadTraceInfoFromJSON()
93 traceInfoOut->drawSurfaceHeight = meta["DrawSurfaceHeight"].GetInt(); in LoadTraceInfoFromJSON()
94 traceInfoOut->drawSurfaceWidth = meta["DrawSurfaceWidth"].GetInt(); in LoadTraceInfoFromJSON()
96 // TODO(http://anglebug.com/5133): Drop the GetInt versions after trace update in LoadTraceInfoFromJSON()
108 traceInfoOut->drawSurfaceColorSpace = meta["DrawSurfaceColorSpace"].GetInt(); in LoadTraceInfoFromJSON()
109 traceInfoOut->displayPlatformType = meta["DisplayPlatformType"].GetInt(); in LoadTraceInfoFromJSON()
110 traceInfoOut->displayDeviceType = meta["DisplayDeviceType"].GetInt(); in LoadTraceInfoFromJSON()
[all...]
/third_party/node/deps/v8/src/snapshot/
H A Ddeserializer.cc592 Handle<HeapObject> obj = back_refs_[source_.GetInt()]; in GetBackReferencedObject()
629 const int size_in_tagged = source_.GetInt(); in ReadObject()
825 int target_offset = source().GetInt(); in VisitInternalReference()
842 Builtin builtin = Builtins::FromInt(source().GetInt()); in VisitOffHeapTarget()
958 uint32_t chunk_index = source_.GetInt(); in ReadSingleBytecodeData()
959 uint32_t chunk_offset = source_.GetInt(); in ReadSingleBytecodeData()
972 int id = source_.GetInt(); in ReadSingleBytecodeData()
983 int cache_index = source_.GetInt(); in ReadSingleBytecodeData()
994 int cache_index = source_.GetInt(); in ReadSingleBytecodeData()
1005 int cache_index = source_.GetInt(); in ReadSingleBytecodeData()
[all...]
H A Dcontext-deserializer.cc85 int index = source()->GetInt(); in DeserializeEmbedderFields()
86 int size = source()->GetInt(); in DeserializeEmbedderFields()
H A Dshared-heap-deserializer.cc38 int string_table_size = source()->GetInt(); in DeserializeStringTable()
H A Dsnapshot-source-sink.cc39 int size = GetInt(); in GetBlob()
H A Dsnapshot-source-sink.h83 inline int GetInt() {
/third_party/gptfdisk/
H A Dgptcl.cc174 partNum = (int) GetInt(attributeOperation, 1) - 1; in DoOptions()
217 partNum = (int) GetInt(partName, 1) - 1; in DoOptions()
322 newPartNum = (int) GetInt(newPartInfo, 1) - 1; in DoOptions()
373 p1 = GetInt(twoParts, 1) - 1; in DoOptions()
374 p2 = GetInt(twoParts, 2) - 1; in DoOptions()
401 partNum = (int) GetInt(typeCode, 1) - 1; in DoOptions()
425 partNum = (int) GetInt(partGUID, 1) - 1; in DoOptions()
538 origPartNum = GetInt(argument, i + 1) - 1; in BuildMBR()
586 uint64_t GetInt(const string & argument, int itemNum) { in GetInt() function
592 } // GPTDataCL::GetInt() in GetInt()
[all...]
H A Dgptcl.h49 uint64_t GetInt(const std::string & argument, int itemNum);
/third_party/ffmpeg/libavdevice/
H A Ddecklink_common.cpp87 if (api && api->GetInt(BMDDeckLinkAPIVersion, &version) == S_OK) { in decklink_create_iterator()
133 res = ctx->attr->GetInt(attr_id, &supported_connections); in decklink_select_input()
/third_party/gn/src/gn/
H A Dinput_conversion.cc132 return Value(origin, static_cast<int64_t>(value.GetInt())); in ParseJSONValue()
H A Dparse_tree.cc110 value.FindKey(kJsonLocation)->FindKey(kJsonLocationBeginLine)->GetInt(); in GetBeginLocationFromJSON()
112 value.FindKey(kJsonLocation)->FindKey(kJsonLocationBeginColumn)->GetInt(); in GetBeginLocationFromJSON()
/third_party/gn/src/base/
H A Dvalues.h157 int GetInt() const;
304 // DEPRECATED, use GetInt() instead.
452 // DEPRECATED, use Value::FindPath(path) and Value::GetInt() instead.
484 // DEPRECATED, use Value::FindKey(key) and Value::GetInt() instead.
630 // DEPRECATED, use GetList()::operator[]::GetInt() instead.
H A Dvalues.cc218 int Value::GetInt() const { in GetInt() function in base::Value
/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h274 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Data[idx] : NULL; } in GetByKey()
H A Dimgui.h1623 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
H A Dimgui_widgets.cpp4733 const int stored_value = storage->GetInt(id, -1);
4748 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
H A Dimgui.cpp1904 int ImGuiStorage::GetInt(ImGuiID key, int default_val) const in GetInt() function in ImGuiStorage
1914 return GetInt(key, default_val ? 1 : 0) != 0; in GetBool()
1963 // FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame)
/third_party/skia/third_party/externals/imgui/
H A Dimgui.h2147 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
H A Dimgui_internal.h622 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Buf[idx] : NULL; }
H A Dimgui_widgets.cpp5791 const int stored_value = storage->GetInt(id, -1);
5805 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
H A Dimgui.cpp1955 int ImGuiStorage::GetInt(ImGuiID key, int default_val) const in GetInt() function in ImGuiStorage
1965 return GetInt(key, default_val ? 1 : 0) != 0; in GetBool()
2014 // FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame)
/third_party/icu/icu4c/source/i18n/
H A DdecNumber.cpp7599 #error GetInt may need updating [for Emax]
7602 #error GetInt may need updating [for Emin]
/third_party/node/deps/icu-small/source/i18n/
H A DdecNumber.cpp7599 #error GetInt may need updating [for Emax]
7602 #error GetInt may need updating [for Emin]
/third_party/skia/third_party/externals/icu/source/i18n/
H A DdecNumber.cpp7599 #error GetInt may need updating [for Emax]
7602 #error GetInt may need updating [for Emin]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 159 milliseconds