/third_party/skia/third_party/externals/angle2/util/capture/ |
H A D | frame_capture_test_utils.cpp | 89 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 D | deserializer.cc | 592 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 D | context-deserializer.cc | 85 int index = source()->GetInt(); in DeserializeEmbedderFields() 86 int size = source()->GetInt(); in DeserializeEmbedderFields()
|
H A D | shared-heap-deserializer.cc | 38 int string_table_size = source()->GetInt(); in DeserializeStringTable()
|
H A D | snapshot-source-sink.cc | 39 int size = GetInt(); in GetBlob()
|
H A D | snapshot-source-sink.h | 83 inline int GetInt() {
|
/third_party/gptfdisk/ |
H A D | gptcl.cc | 174 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 D | gptcl.h | 49 uint64_t GetInt(const std::string & argument, int itemNum);
|
/third_party/ffmpeg/libavdevice/ |
H A D | decklink_common.cpp | 87 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 D | input_conversion.cc | 132 return Value(origin, static_cast<int64_t>(value.GetInt())); in ParseJSONValue()
|
H A D | parse_tree.cc | 110 value.FindKey(kJsonLocation)->FindKey(kJsonLocationBeginLine)->GetInt(); in GetBeginLocationFromJSON() 112 value.FindKey(kJsonLocation)->FindKey(kJsonLocationBeginColumn)->GetInt(); in GetBeginLocationFromJSON()
|
/third_party/gn/src/base/ |
H A D | values.h | 157 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 D | values.cc | 218 int Value::GetInt() const { in GetInt() function in base::Value
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 274 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Data[idx] : NULL; } in GetByKey()
|
H A D | imgui.h | 1623 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
|
H A D | imgui_widgets.cpp | 4733 const int stored_value = storage->GetInt(id, -1); 4748 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
|
H A D | imgui.cpp | 1904 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 D | imgui.h | 2147 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
|
H A D | imgui_internal.h | 622 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Buf[idx] : NULL; }
|
H A D | imgui_widgets.cpp | 5791 const int stored_value = storage->GetInt(id, -1); 5805 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
|
H A D | imgui.cpp | 1955 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 D | decNumber.cpp | 7599 #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 D | decNumber.cpp | 7599 #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 D | decNumber.cpp | 7599 #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 D | stylo.hpp | [all...] |