Home
last modified time | relevance | path

Searched refs:HelpText (Results 1 – 21 of 21) sorted by relevance

/external/clang/include/clang/Driver/
DCC1Options.td23 HelpText<"Target a specific cpu type">;
25 HelpText<"Target specific attributes">;
27 HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
32 HelpText<"Target a particular ABI type">;
34 HelpText<"Target linker version">;
37 HelpText<"Which unit to use for fp math">;
44 HelpText<"Generate unoptimized CFGs for all analyses">;
46 HelpText<"Add C++ implicit destructors to CFGs for all analyses">;
49 HelpText<"Source Code Analysis - Abstract Memory Store Models">;
53 HelpText<"Source Code Analysis - Symbolic Constraint Engines">;
[all …]
DCLCompatOptions.td15 HelpText<"CL.EXE COMPATIBILITY OPTIONS">;
55 def _SLASH_C : CLFlag<"C">, HelpText<"Don't discard comments when preprocessing">,
57 def _SLASH_c : CLFlag<"c">, HelpText<"Compile only">, Alias<c>;
58 def _SLASH_D : CLJoinedOrSeparate<"D">, HelpText<"Define macro">,
60 def _SLASH_E : CLFlag<"E">, HelpText<"Preprocess to stdout">, Alias<E>;
61 def _SLASH_GR : CLFlag<"GR">, HelpText<"Enable emission of RTTI data">;
62 def _SLASH_GR_ : CLFlag<"GR-">, HelpText<"Disable emission of RTTI data">;
63 def _SLASH_GF_ : CLFlag<"GF-">, HelpText<"Disable string pooling">,
65 def _SLASH_Gy : CLFlag<"Gy">, HelpText<"Put each function in its own section">,
67 def _SLASH_Gy_ : CLFlag<"Gy-">, HelpText<"Don't put each function in its own section">,
[all …]
DOptions.td120 Group<internal_Group>, HelpText<"DRIVER OPTIONS">;
123 Group<internal_Group>, HelpText<"DEBUG/DEVELOPMENT OPTIONS">;
129 HelpText<"Set the driver mode to either 'gcc', 'g++', 'cpp', or 'cl'">;
131 HelpText<"Name for native GCC compiler">,
134 HelpText<"Use lazy PCH for precompiled headers">;
136 HelpText<"Use pretokenized headers for precompiled headers">;
141 HelpText<"Simulate installation in the given directory">;
143 HelpText<"Dump list of actions to perform">;
145 HelpText<"Show bindings of tools to actions">;
148 HelpText<"Check for ARC migration issues that need manual handling">;
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckers.td56 HelpText<"Check for dereferences of null pointers">,
60HelpText<"Check for logical errors for function calls and Objective-C message expressions (e.g., u…
64HelpText<"Check for null pointers passed as arguments to a function whose arguments are references…
68 HelpText<"Check for declarations of VLA of undefined or zero size">,
72 HelpText<"Check for division by zero">,
76 HelpText<"Check for undefined results of binary operators">,
80 HelpText<"Check that addresses to stack memory do not escape the function">,
84 HelpText<"Generate dynamic type information">,
92 HelpText<"Warn about assigning non-{0,1} values to Boolean variables">,
96HelpText<"Check when casting a malloc'ed type T, whether the size is a multiple of the size of T">,
[all …]
/external/llvm/unittests/Option/
DOpts.td7 def A : Flag<["-"], "A">, HelpText<"The A option">, Flags<[OptFlag1]>;
8 def B : Joined<["-"], "B">, HelpText<"The B option">, MetaVarName<"B">, Flags<[OptFlag2]>;
9 def C : Separate<["-"], "C">, HelpText<"The C option">, MetaVarName<"C">, Flags<[OptFlag1]>;
10 def SLASH_C : Separate<["/", "-"], "C">, HelpText<"The C option">, MetaVarName<"C">, Flags<[OptFlag…
11 def D : CommaJoined<["-"], "D">, HelpText<"The D option">, MetaVarName<"D">;
13 def F : JoinedOrSeparate<["-"], "F">, HelpText<"The F option">, MetaVarName<"F">;
14 def G : JoinedAndSeparate<["-"], "G">, HelpText<"The G option">, MetaVarName<"G">;
/external/clang/include/clang/StaticAnalyzer/Checkers/
DCheckerBase.td31 string HelpText;
38 class HelpText<string text> { string HelpText = text; }
/external/llvm/include/llvm/Option/
DOptTable.h39 const char *HelpText; member
107 return getInfo(id).HelpText; in getOptionHelpText()
DOptParser.td76 string HelpText = ?;
89 string HelpText = ?;
123 class HelpText<string text> { string HelpText = text; }
/external/chromium_org/chrome/browser/ui/autofill/
Dpassword_generation_popup_controller.h41 virtual const base::string16& HelpText() = 0;
Dpassword_generation_popup_controller_impl.h105 virtual const base::string16& HelpText() OVERRIDE;
Dpassword_generation_popup_controller_impl.cc262 const base::string16& PasswordGenerationPopupControllerImpl::HelpText() { in HelpText() function in autofill::PasswordGenerationPopupControllerImpl
/external/chromium_org/content/browser/accessibility/
Dbrowser_accessibility_mac_unittest.mm33 root.AddStringAttribute(ui::AX_ATTR_HELP, "HelpText");
93 EXPECT_NSEQ(@"HelpText", helpText);
/external/chromium_org/content/shell/renderer/test_runner/
Dweb_ax_object_proxy.h63 std::string HelpText();
Dweb_ax_object_proxy.cc484 .SetProperty("helpText", &WebAXObjectProxy::HelpText) in GetObjectTemplateBuilder()
621 std::string WebAXObjectProxy::HelpText() { in HelpText() function in content::WebAXObjectProxy
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dpassword_generation_popup_view_cocoa_unittest.mm42 virtual const base::string16& HelpText() OVERRIDE { return help_text_; }
Dpassword_generation_popup_view_cocoa.mm106 [helpTextView_ setMessage:base::SysUTF16ToNSString(controller_->HelpText())
322 NSRect textFrame = [base::SysUTF16ToNSString(controller_->HelpText())
/external/chromium_org/chrome/browser/ui/views/autofill/
Dpassword_generation_popup_view_views.cc129 help_label_ = new views::StyledLabel(controller_->HelpText(), this); in PasswordGenerationPopupViewViews()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXObject.h185 HelpText, enumerator
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc1120 TEST_F(CommandLineInterfaceTest, HelpText) { in TEST_F() argument
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc1279 TEST_F(CommandLineInterfaceTest, HelpText) { in TEST_F() argument
/external/sonivox/jet_tools/JetCreator/
DJetDialogs.py46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls: