HomeSort by: relevance | last modified time | path
    Searched defs:Indent (Results 1 - 7 of 7) sorted by relevancy

  /xsrc/external/mit/xev/dist/
xev.c 92 Indent = 2,
115 if (flags & Indent) {
199 output(Indent | NewLine,
202 output(Indent | NewLine,
207 output(Indent | NewLine, "XKeysymToKeycode returns keycode: %u", kc);
213 output(Indent, "XLookupString gives %d bytes: ", nbytes);
224 output(Indent, "XmbLookupString gives %d bytes: ", nmbbytes);
234 output(Indent | NewLine, "XFilterEvent returns: %s",
249 output(Indent | NewLine,
252 output(Indent | NewLine, "state 0x%x, button %u, same_screen %s"
    [all...]
  /xsrc/external/mit/libXaw/dist/src/
TextAction.c 134 static void Indent(Widget, XEvent*, String*, Cardinal*);
2327 Indent(Widget w, XEvent *event, String *params _X_UNUSED, Cardinal *num_params _X_UNUSED)
4358 {"newline-and-indent", InsertNewLineAndIndent},
4395 {"indent", Indent},
  /xsrc/external/mit/MesaLib/dist/src/gtest/src/
gtest.cc 4001 const std::string& indent,
4007 const std::string& indent,
4026 const std::string& indent);
4116 static inline std::string Indent(size_t width) {
4125 const std::string& indent,
4135 *stream << indent << "\"" << name << "\": \"" << EscapeJson(value) << "\"";
4145 const std::string& indent,
4155 *stream << indent << "\"" << name << "\": " << StreamableToString(value);
4166 const std::string kIndent = Indent(10);
4168 *stream << Indent(8) << "{\n"
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imgui_internal.h 1090 ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.)
1120 Indent = ImVec1(0.0f);
imgui.cpp 2755 window->DC.CursorPos.x = (float)(int)(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x);
5316 window->DC.Indent.x = 0.0f + window->WindowPadding.x - window->Scroll.x;
5319 window->DC.CursorStartPos = window->Pos + ImVec2(window->DC.Indent.x + window->DC.ColumnsOffset.x, window->TitleBarHeight() + window->MenuBarHeight() + window->WindowPadding.y - window->Scroll.y);
6551 group_data.BackupIndent = window->DC.Indent;
6561 window->DC.Indent = window->DC.GroupOffset;
6580 window->DC.Indent = group_data.BackupIndent;
6635 void ImGui::Indent(float indent_w)
6639 window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing;
6640 window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x;
6647 window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_internal.h 1090 ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.)
1120 Indent = ImVec1(0.0f);
imgui.cpp 2755 window->DC.CursorPos.x = (float)(int)(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x);
5316 window->DC.Indent.x = 0.0f + window->WindowPadding.x - window->Scroll.x;
5319 window->DC.CursorStartPos = window->Pos + ImVec2(window->DC.Indent.x + window->DC.ColumnsOffset.x, window->TitleBarHeight() + window->MenuBarHeight() + window->WindowPadding.y - window->Scroll.y);
6551 group_data.BackupIndent = window->DC.Indent;
6561 window->DC.Indent = window->DC.GroupOffset;
6580 window->DC.Indent = group_data.BackupIndent;
6635 void ImGui::Indent(float indent_w)
6639 window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing;
6640 window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x;
6647 window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing
    [all...]

Completed in 30 milliseconds