/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
H A D | NaClBitcodeHeader.cpp | 263 if ((*Iter)->GetID() == ID) { in GetTaggedField() 310 if (!FieldIDs.insert(Field->GetID()).second) { in InstallFields() 316 NaClBitcodeHeaderField::FieldType ExpectedTy = ExpectedType[Field->GetID()]; in InstallFields() 330 switch (Field->GetID()) { in InstallFields()
|
/third_party/vixl/test/ |
H A D | test-pool-manager.cc | 122 int GetID() { return id_; } in GetID() function in TestObject 224 int GetID() { return id_; } in GetID() function in TestBranchObject 394 ForwardReference<int32_t> *ref = CreateReference(object->GetID(), in TEST() 406 ref = CreateReference(object->GetID(), in TEST() 472 ForwardReference<int32_t> *ref = CreateReference(object->GetID(), in TEST() 482 ref = CreateReference(object->GetID(), in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
H A D | XCoreLowerThreadLocal.cpp | 209 Function *GetID = Intrinsic::getDeclaration(GV->getParent(), in lowerGlobal() local 211 Value *ThreadID = Builder.CreateCall(GetID, {}); in lowerGlobal()
|
/third_party/mesa3d/src/intel/tools/ |
H A D | aubinator_viewer.cpp | 490 ImGui::BeginChild(ImGui::GetID("##block")); in display_edit_window() 605 ImGui::BeginChild(ImGui::GetID("##block")); in display_pml4_window() 764 ImGui::BeginChild(ImGui::GetID("##block")); in display_batch_window() 844 ImGui::BeginChild(ImGui::GetID("##block")); in display_registers_window() 899 ImGui::BeginChild(ImGui::GetID("##block")); in display_commands_window()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
H A D | NaClBitcodeHeader.h | 108 Tag GetID() const { return ID; } in GetID() function in llvm::NaClBitcodeHeaderField
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 552 const ImGuiID id = window->GetID(label); in ButtonEx() 613 const ImGuiID id = window->GetID(str_id); in InvisibleButton() 633 const ImGuiID id = window->GetID(str_id); in ArrowButtonEx() 717 return window->GetID((direction == ImGuiLayoutType_Horizontal) ? "#SCROLLX" : "#SCROLLY"); in GetScrollbarID() 882 const ImGuiID id = window->GetID("#image"); in ImageButton() 914 const ImGuiID id = window->GetID(label); in Checkbox() 973 const ImGuiID id = window->GetID(label); in RadioButton() 1294 const ImGuiID id = window->GetID(label); in BeginCombo() 1872 const ImGuiID id = window->GetID(label); 2305 const ImGuiID id = window->GetID(labe [all...] |
H A D | imgui.cpp | 2509 MoveId = GetID("#MOVE"); in ImGuiWindow() 2566 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) in GetID() function in ImGuiWindow 2574 ImGuiID ImGuiWindow::GetID(const void* ptr) in GetID() function in ImGuiWindow 4375 return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags); in BeginChild() 4726 ButtonBehavior(resize_rect, window->GetID((void*)(intptr_t)resize_grip_n), &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); in UpdateManualResize() 4751 ButtonBehavior(border_rect, window->GetID((void*)(intptr_t)(border_n + 4)), &hovered, &held, ImGuiButtonFlags_FlattenChildren); in UpdateManualResize() 5376 if (CollapseButton(window->GetID("#COLLAPSE"), window->Pos)) in Begin() 5384 if (CloseButton(window->GetID("#CLOSE"), window->Rect().GetTR() + ImVec2(-pad - rad, pad + rad), rad + 1)) in Begin() 6511 ImGuiID ImGui::GetID(const char* str_id) in GetID() function in ImGui 6514 return window->GetID(str_i in GetID() 6517 ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) GetID() function in ImGui 6523 ImGuiID ImGui::GetID(const void* ptr_id) GetID() function in ImGui [all...] |
H A D | imgui.h | 365 IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself 366 IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end); 367 IMGUI_API ImGuiID GetID(const void* ptr_id);
|
H A D | imgui_internal.h | 1143 ImGuiID MoveId; // == window->GetID("#MOVE") 1214 ImGuiID GetID(const char* str, const char* str_end = NULL); 1215 ImGuiID GetID(const void* ptr);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 678 const ImGuiID id = window->GetID(label); in ButtonEx() 741 const ImGuiID id = window->GetID(str_id); in InvisibleButton() 761 const ImGuiID id = window->GetID(str_id); in ArrowButtonEx() 1063 const ImGuiID id = window->GetID("#image"); in ImageButton() 1078 const ImGuiID id = window->GetID(label); in Checkbox() 1184 const ImGuiID id = window->GetID(label); in RadioButton() 1571 const ImGuiID id = window->GetID(label); in BeginCombo() 2387 const ImGuiID id = window->GetID(label); in DragScalar() 3005 const ImGuiID id = window->GetID(label); 3171 const ImGuiID id = window->GetID(labe [all...] |
H A D | imgui.cpp | 590 - 2016/11/06 (1.50) - BeginChild(const char*) now applies the stack id to the provided label, consistently with other functions as it should always have been. It shouldn't affect you unless (extremely unlikely) you were appending multiple times to a same child from different locations of the stack id. If that's the case, generate an id with GetID() and use it instead of passing string to BeginChild(). 2944 MoveId = GetID("#MOVE"); in ImGuiWindow() 2967 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) in GetID() function in ImGuiWindow 2978 ImGuiID ImGuiWindow::GetID(const void* ptr) in GetID() function in ImGuiWindow 2989 ImGuiID ImGuiWindow::GetID(int n) in GetID() function in ImGuiWindow 5062 return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags); in BeginChild() 5442 ImGuiID resize_grip_id = window->GetID(resize_grip_n); // == GetWindowResizeCornerID() in UpdateWindowManualResize() 5477 ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID() in UpdateWindowManualResize() 5696 if (CollapseButton(window->GetID("#COLLAPSE"), collapse_button_pos)) in RenderWindowTitleBarContents() 5701 if (CloseButton(window->GetID("#CLOS in RenderWindowTitleBarContents() 7194 ImGuiID ImGui::GetID(const char* str_id) GetID() function in ImGui 7200 ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) GetID() function in ImGui 7206 ImGuiID ImGui::GetID(const void* ptr_id) GetID() function in ImGui [all...] |
H A D | imgui.h | 480 IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself 481 IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end); 482 IMGUI_API ImGuiID GetID(const void* ptr_id);
|
H A D | imgui_internal.h | 1495 ImGuiID DebugHookIdInfo; // Will call core hooks: DebugHookIdInfo() from GetID functions, used by Stack Tool [next HoveredId/ActiveId to not pull in an extra cache-line] 1932 ImGuiID MoveId; // == window->GetID("#MOVE") 2014 ImGuiID GetID(const char* str, const char* str_end = NULL); 2015 ImGuiID GetID(const void* ptr); 2016 ImGuiID GetID(int n); 2446 inline ImGuiID GetItemID() { ImGuiContext& g = *GImGui; return g.LastItemData.ID; } // Get ID of last item (~~ often same ImGui::GetID(label) beforehand)
|
H A D | imgui_tables.cpp | 306 ImGuiID id = GetID(str_id); in BeginTable() 2903 ImGuiID id = window->GetID(label); 3817 ImGuiID id = window->GetID(str_id ? str_id : "columns");
|
H A D | imgui_demo.cpp | 2840 const ImGuiID child_id = ImGui::GetID((void*)(intptr_t)i); in ShowDemoWindowLayout() 2886 ImGuiID child_id = ImGui::GetID((void*)(intptr_t)i); in ShowDemoWindowLayout() 5687 ImGui::BeginChildFrame(ImGui::GetID("cfg_infos"), child_size, ImGuiWindowFlags_NoMove); 7623 if (ImGui::BeginChildFrame(ImGui::GetID("frame"), ImVec2(-FLT_MIN, 6.25f * item_height)))
|
/third_party/skia/tools/ |
H A D | ToolUtils.h | 202 static uint32_t GetID(TopoTestNode* node) { return node->id(); } in GetID() function in ToolUtils::TopoTestNode
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | descriptor.cc | 785 static PyObject* GetID(PyBaseDescriptor *self, void *closure) { in GetID() function 977 { "id", (getter)GetID, NULL, "ID"},
|
/third_party/node/src/ |
H A D | node_http2.h | 444 static void GetID(const v8::FunctionCallbackInfo<v8::Value>& args);
|
H A D | node_http2.cc | 2831 void Http2Stream::GetID(const FunctionCallbackInfo<Value>& args) { in GetID() function in node::http2::Http2Stream 3245 SetProtoMethod(isolate, stream, "id", Http2Stream::GetID); in Initialize()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |