Searched refs:GetFrameCount (Results 1 - 19 of 19) sorted by relevance
/third_party/node/deps/v8/include/ |
H A D | v8-debug.h | 141 int GetFrameCount() const;
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-debug.h | 141 int GetFrameCount() const;
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-stack-trace-impl.cc | 40 int frameCount = std::min(v8StackTrace->GetFrameCount(), maxStackSize); in toFramesVector() 235 if (!v8StackTrace.IsEmpty() && v8StackTrace->GetFrameCount()) { in create()
|
H A D | injected-script.cc | 825 if (!stackTrace.IsEmpty() && stackTrace->GetFrameCount() > 0) { in createExceptionDetails()
|
/third_party/node/src/ |
H A D | node_report.cc | 485 if (stack->GetFrameCount() == 0) { in PrintJavaScriptStack() 492 for (int i = 0; i < stack->GetFrameCount(); i++) { in PrintJavaScriptStack()
|
H A D | node_util.cc | 148 if (trace->GetFrameCount() != 2) { in GetCallerLocation()
|
H A D | inspector_agent.cc | 525 if (!stack_trace.IsEmpty() && stack_trace->GetFrameCount() > 0 && in ReportUncaughtException()
|
H A D | js_native_api_v8_inspector.cc | 1150 if (!stack_trace.IsEmpty() && stack_trace->GetFrameCount() > 0 && in ReportUncaughtException()
|
H A D | node_errors.cc | 190 for (int i = 0; i < stack->GetFrameCount(); i++) { in FormatStackTrace()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 625 IMGUI_API int GetFrameCount(); // get global imgui frame count. incremented by 1 every frame. 1542 operator bool() const { int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_frame) return false; RefFrame = current_frame; return true; } in operator bool()
|
H A D | imgui.cpp | 3064 int ImGui::GetFrameCount() in GetFrameCount() function in ImGui 9429 ImFormatString(p, buf_end - p, "TabBar (%d tabs)%s", tab_bar->Tabs.Size, (tab_bar->PrevFrameVisible < ImGui::GetFrameCount() - 2) ? " *Inactive*" : ""); in ShowMetricsWindow()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction.cc | 1154 size_t FrameStateDescriptor::GetFrameCount() const {
|
H A D | code-generator.cc | 1120 static_cast<int>(descriptor->GetFrameCount()), in BuildTranslation()
|
H A D | instruction.h | 1424 size_t GetFrameCount() const;
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 865 IMGUI_API int GetFrameCount(); // get global imgui frame count. incremented by 1 every frame. 2071 operator bool() const { int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_frame) return false; RefFrame = current_frame; return true; } in operator bool()
|
H A D | imgui_demo.cpp | 6723 ImGui::GetFrameCount(), category, ImGui::GetTime(), word); 7132 sprintf(buf, "Animated title %c %d###AnimatedTitle", "|/-\\"[(int)(ImGui::GetTime() / 0.25f) & 3], ImGui::GetFrameCount()); 7552 //if ((ImGui::GetFrameCount() % 30) == 0) docs[1].Open ^= 1; // [DEBUG] Automatically show/hide a tab. Test various interactions e.g. dragging with this on.
|
H A D | imgui_tables.cpp | 3525 const bool is_active = (table->LastFrameActive >= ImGui::GetFrameCount() - 2); // Note that fully clipped early out scrolling tables will appear as inactive here.
|
H A D | imgui.cpp | 3495 int ImGui::GetFrameCount() in GetFrameCount() function in ImGui 11909 const bool is_active = (tab_bar->PrevFrameVisible >= GetFrameCount() - 2); in DebugNodeTabBar()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 3160 int StackTrace::GetFrameCount() const { in GetFrameCount() function in v8::StackTrace
|
Completed in 149 milliseconds