/external/clang/include/clang/Driver/ |
D | CC1Options.td | 23 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 …]
|
D | CLCompatOptions.td | 15 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 …]
|
D | Options.td | 120 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/ |
D | Checkers.td | 56 HelpText<"Check for dereferences of null pointers">, 60 …HelpText<"Check for logical errors for function calls and Objective-C message expressions (e.g., u… 64 …HelpText<"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">, 96 …HelpText<"Check when casting a malloc'ed type T, whether the size is a multiple of the size of T">, [all …]
|
/external/llvm/unittests/Option/ |
D | Opts.td | 7 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/ |
D | CheckerBase.td | 31 string HelpText; 38 class HelpText<string text> { string HelpText = text; }
|
/external/llvm/include/llvm/Option/ |
D | OptTable.h | 39 const char *HelpText; member 107 return getInfo(id).HelpText; in getOptionHelpText()
|
D | OptParser.td | 76 string HelpText = ?; 89 string HelpText = ?; 123 class HelpText<string text> { string HelpText = text; }
|
/external/chromium_org/chrome/browser/ui/autofill/ |
D | password_generation_popup_controller.h | 41 virtual const base::string16& HelpText() = 0;
|
D | password_generation_popup_controller_impl.h | 105 virtual const base::string16& HelpText() OVERRIDE;
|
D | password_generation_popup_controller_impl.cc | 262 const base::string16& PasswordGenerationPopupControllerImpl::HelpText() { in HelpText() function in autofill::PasswordGenerationPopupControllerImpl
|
/external/chromium_org/content/browser/accessibility/ |
D | browser_accessibility_mac_unittest.mm | 33 root.AddStringAttribute(ui::AX_ATTR_HELP, "HelpText"); 93 EXPECT_NSEQ(@"HelpText", helpText);
|
/external/chromium_org/content/shell/renderer/test_runner/ |
D | web_ax_object_proxy.h | 63 std::string HelpText();
|
D | web_ax_object_proxy.cc | 484 .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/ |
D | password_generation_popup_view_cocoa_unittest.mm | 42 virtual const base::string16& HelpText() OVERRIDE { return help_text_; }
|
D | password_generation_popup_view_cocoa.mm | 106 [helpTextView_ setMessage:base::SysUTF16ToNSString(controller_->HelpText()) 322 NSRect textFrame = [base::SysUTF16ToNSString(controller_->HelpText())
|
/external/chromium_org/chrome/browser/ui/views/autofill/ |
D | password_generation_popup_view_views.cc | 129 help_label_ = new views::StyledLabel(controller_->HelpText(), this); in PasswordGenerationPopupViewViews()
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
D | AXObject.h | 185 HelpText, enumerator
|
/external/protobuf/src/google/protobuf/compiler/ |
D | command_line_interface_unittest.cc | 1120 TEST_F(CommandLineInterfaceTest, HelpText) { in TEST_F() argument
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
D | command_line_interface_unittest.cc | 1279 TEST_F(CommandLineInterfaceTest, HelpText) { in TEST_F() argument
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetDialogs.py | 46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
|