/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZHazardRecognizer.cpp | 51 assert((SC->NumMicroOps != 2 || (SC->BeginGroup && !SC->EndGroup)) && in getNumDecoderSlots() 53 assert((SC->NumMicroOps < 3 || (SC->BeginGroup && SC->EndGroup)) && in getNumDecoderSlots() 196 if (SC->BeginGroup && SC->EndGroup) in dumpSU() 200 else if (SC->EndGroup) in dumpSU() 336 if (CurrGroupSize >= GroupLim || SC->EndGroup) in EmitInstruction() 355 if (SC->EndGroup) { in groupingCost()
|
H A D | SystemZMachineScheduler.cpp | 255 bool AffectsGrouping = (SC->isValid() && (SC->BeginGroup || SC->EndGroup)); in releaseTopNode()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | ParsingPrimitivesMessages.cs | 58 case WireFormat.WireType.EndGroup: in SkipLastField() 98 if (WireFormat.GetTagWireType(tag) == WireFormat.WireType.EndGroup) in SkipGroup() 148 CheckLastTagWas(ref ctx.state, WireFormat.MakeTag(fieldNumber, WireFormat.WireType.EndGroup)); in ReadGroup() 162 CheckLastTagWas(ref ctx.state, WireFormat.MakeTag(fieldNumber, WireFormat.WireType.EndGroup)); in ReadGroup()
|
H A D | WireFormat.cs | 70 EndGroup = 4,
enumerator
|
H A D | UnknownField.cs | 145 output.WriteTag(fieldNumber, WireFormat.WireType.EndGroup); in WriteTo()
|
H A D | UnknownFieldSet.cs | 241 case WireFormat.WireType.EndGroup: in MergeFieldFrom()
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
H A D | CodedInputStreamTest.cs | 452 output.WriteTag(3, WireFormat.WireType.EndGroup);
in SkipGroup() 455 output.WriteTag(2, WireFormat.WireType.EndGroup);
in SkipGroup() 489 output.WriteTag(4, WireFormat.WireType.EndGroup);
in SkipGroup_WrongEndGroupTag() 509 output.WriteTag(1, WireFormat.WireType.EndGroup);
in RogueEndGroupTag() 514 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.EndGroup), input.ReadTag());
in RogueEndGroupTag() 525 output.WriteTag(2, WireFormat.WireType.EndGroup);
in EndOfStreamReachedWhileSkippingGroup() 547 output.WriteTag(1, WireFormat.WireType.EndGroup);
in RecursionLimitAppliedWhileSkippingGroup()
|
H A D | GeneratedMessageTest.cs | 692 output.WriteTag(100, WireFormat.WireType.EndGroup);
in ExtraEndGroupThrows()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | CodedInputStreamTest.cs | 516 output.WriteTag(WireFormat.MakeTag(unknownFieldNumber, WireFormat.WireType.EndGroup));
in MakeMaliciousRecursionUnknownFieldsPayload() 537 // write Proto2.TestAllTypes with "optional_group" set, but use wrong EndGroup closing tag
in ReadGroup_WrongEndGroupTag() 543 output.WriteTag(WireFormat.MakeTag(groupFieldNumber + 1, WireFormat.WireType.EndGroup));
in ReadGroup_WrongEndGroupTag() 557 output.WriteTag(WireFormat.MakeTag(15, WireFormat.WireType.EndGroup));
in ReadGroup_UnknownFields_WrongEndGroupTag() 725 output.WriteTag(3, WireFormat.WireType.EndGroup);
in SkipGroup() 728 output.WriteTag(2, WireFormat.WireType.EndGroup);
in SkipGroup() 762 output.WriteTag(4, WireFormat.WireType.EndGroup);
in SkipGroup_WrongEndGroupTag() 782 output.WriteTag(1, WireFormat.WireType.EndGroup);
in RogueEndGroupTag() 787 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.EndGroup), input.ReadTag());
in RogueEndGroupTag() 798 output.WriteTag(2, WireFormat.WireType.EndGroup);
in EndOfStreamReachedWhileSkippingGroup() [all...] |
H A D | GeneratedMessageTest.cs | 755 output.WriteTag(100, WireFormat.WireType.EndGroup);
in ExtraEndGroupThrows()
|
/third_party/skia/tools/viewer/ |
H A D | MSKPSlide.cpp | 79 ImGui::EndGroup(); in draw() 89 ImGui::EndGroup(); in draw()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCSchedule.h | 119 bool EndGroup : 1; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
H A D | DispatchStage.cpp | 94 if (Desc.EndGroup) in dispatch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
H A D | InstrBuilder.cpp | 569 ID->EndGroup = SCDesc.EndGroup;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | TargetSchedule.cpp | 102 return SC->EndGroup; in mustEndGroup()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
H A D | Instruction.h | 377 bool EndGroup; member
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 1961 EndGroup(); 2004 EndGroup(); 2049 EndGroup(); 2398 EndGroup(); 2696 EndGroup(); 2731 EndGroup(); 3164 EndGroup(); 3170 EndGroup(); 3782 EndGroup(); 4007 EndGroup(); [all...] |
H A D | imgui.h | 337 IMGUI_API void EndGroup(); // unlock horizontal starting position + capture the whole group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)
|
H A D | imgui.cpp | 4450 { int current = window->DC.GroupStack.Size; if (write) *p_backup = (short)current; else IM_ASSERT(*p_backup == current && "BeginGroup/EndGroup Mismatch!"); p_backup++; } // Too few or too many EndGroup() in CheckStacksSize() 6567 void ImGui::EndGroup() in EndGroup() function in ImGui 6571 IM_ASSERT(!window->DC.GroupStack.empty()); // Mismatched BeginGroup()/EndGroup() calls in EndGroup()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 2496 EndGroup(); in DragScalarN() 2547 EndGroup(); in DragFloatRange2() 2601 EndGroup(); in DragIntRange2() 3109 EndGroup(); 3477 EndGroup(); 3521 EndGroup(); 3986 EndGroup(); in InputTextEx() 4003 EndGroup(); in InputTextEx() 4746 EndGroup(); in InputTextEx() 5016 EndGroup(); [all...] |
H A D | imgui_demo.cpp | 1750 ImGui::EndGroup(); in ShowDemoWindowWidgets() 2062 ImGui::EndGroup(); in ShowDemoWindowWidgets() 2639 "EndGroup() bundles the whole group so that you can use \"item\" functions such as " in ShowDemoWindowLayout() 2651 ImGui::EndGroup(); in ShowDemoWindowLayout() 2654 ImGui::EndGroup(); in ShowDemoWindowLayout() 2666 ImGui::EndGroup(); in ShowDemoWindowLayout() 2870 ImGui::EndGroup(); in ShowDemoWindowLayout() 3138 ImGui::EndGroup(); in ShowDemoWindowLayout() 6084 ImGui::EndGroup(); 6793 ImGui::EndGroup(); [all...] |
H A D | imgui.h | 448 IMGUI_API void EndGroup(); // unlock horizontal starting position + capture the whole group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.)
|
H A D | imgui.cpp | 3201 // [2021/03/02] Reworked / reverted the revert, finally. Note we want e.g. BeginGroup/ItemAdd/EndGroup to work as well. (#3851) in IsItemHovered() 7316 IM_ASSERT_USER_ERROR(g.GroupStack.Size == 0, "Missing EndGroup call!"); in ErrorCheckEndFrameSanityChecks() 7376 if (log_callback) log_callback(user_data, "Recovered from missing EndGroup() in '%s'", window->Name); in ErrorCheckEndWindowRecover() 7377 EndGroup(); in ErrorCheckEndWindowRecover() 7440 IM_ASSERT(SizeOfGroupStack == g.GroupStack.Size && "BeginGroup/EndGroup Mismatch!"); in CompareWithCurrentState() 7479 // - EndGroup() 7877 void ImGui::EndGroup() in EndGroup() function in ImGui 7881 IM_ASSERT(g.GroupStack.Size > 0); // Mismatched BeginGroup()/EndGroup() calls in EndGroup() 7884 IM_ASSERT(group_data.WindowID == window->ID); // EndGroup() in wrong window? in EndGroup()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-console-message.cc | 55 return protocol::Runtime::ConsoleAPICalled::TypeEnum::EndGroup; in consoleAPITypeValue()
|