/external/clang/include/clang/Driver/ |
CLCompatOptions.td | 15 HelpText<"CL.EXE COMPATIBILITY OPTIONS">; 37 def _SLASH_c : CLFlag<"c">, HelpText<"Compile only">, Alias<c>; 38 def _SLASH_D : CLJoinedOrSeparate<"D">, HelpText<"Define macro">, 40 def _SLASH_GR : CLFlag<"GR">, HelpText<"Enable RTTI">, Alias<frtti>; 41 def _SLASH_GR_ : CLFlag<"GR-">, HelpText<"Disable RTTI">, Alias<fno_rtti>; 43 HelpText<"Display available options">; 45 HelpText<"Add directory to include search path">, MetaVarName<"<dir>">, 47 def _SLASH_J : CLFlag<"J">, HelpText<"Make char type unsigned">, 49 def _SLASH_O : CLJoined<"O">, HelpText<"Optimization level">, 51 def _SLASH_Ob0 : CLFlag<"Ob0">, HelpText<"Disable inlining"> [all...] |
CC1Options.td | 21 HelpText<"Target a particular C++ ABI type">; 23 HelpText<"Target a particular ABI type">; 25 HelpText<"Target a specific cpu type">; 27 HelpText<"Target specific attributes">; 29 HelpText<"Target linker version">; 31 HelpText<"Specify target triple (e.g. i686-apple-darwin9)">; 39 HelpText<"Generate unoptimized CFGs for all analyses">; 41 HelpText<"Add C++ implicit destructors to CFGs for all analyses">; 44 HelpText<"Source Code Analysis - Abstract Memory Store Models">; 48 HelpText<"Source Code Analysis - Symbolic Constraint Engines"> [all...] |
Options.td | 117 Group<internal_Group>, HelpText<"DRIVER OPTIONS">; 120 Group<internal_Group>, HelpText<"DEBUG/DEVELOPMENT OPTIONS">; 126 HelpText<"Set the driver mode to either 'gcc', 'g++', 'cpp', or 'cl'">; 128 HelpText<"Name for native GCC compiler">, 131 HelpText<"Comma separate list of architectures to use the clang compiler for">, 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 parsed command line arguments">; 145 HelpText<"Dump list of actions to perform"> [all...] |
CC1AsOptions.td | 22 HelpText<"Specify target triple (e.g. x86_64-pc-linux-gnu)">; 24 HelpText<"Target a specific cpu type">; 26 HelpText<"Target specific attributes">; 33 HelpText<"Add directory to include search path">; 35 HelpText<"Don't automatically start assembly file with a text section">; 37 HelpText<"Save temporary labels in the symbol table. " 41 HelpText<"Main file name to use for debug info">; 48 HelpText<"Specify output file">; 51 HelpText<"Specify the output file type ('asm', 'null', or 'obj')">; 54 HelpText<"Print this help text"> [all...] |
CC1AsOptions.h | 26 HELPTEXT, METAVAR) OPT_##ID,
|
Options.h | 39 HELPTEXT, METAVAR) OPT_##ID,
|
/external/llvm/unittests/Option/ |
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<[OptFlag3]>; 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/lib/StaticAnalyzer/Checkers/ |
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., uninitialized arguments, null function pointers)">, 64 HelpText<"Check for null pointers passed as arguments to a function whose arguments are references or marked with the 'nonnull' attribute">, 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...] |
ClangCheckers.cpp | 28 #define CHECKER(FULLNAME,CLASS,DESCFILE,HELPTEXT,GROUPINDEX,HIDDEN) \ 29 registry.addChecker(register##CLASS, FULLNAME, HELPTEXT);
|
ClangSACheckers.h | 27 #define CHECKER(FULLNAME,CLASS,CXXFILE,HELPTEXT,GROUPINDEX,HIDDEN) \
|
/frameworks/compile/slang/ |
RSCCOptions.td | 31 HelpText<"Specify target API level (e.g. 14)">; 39 HelpText<"Add directory to include search path">; 47 HelpText<"Specify output directory">; 53 HelpText<"Emit target assembly files">; 56 HelpText<"Build ASTs then convert to LLVM, emit .ll file">; 58 HelpText<"Build ASTs then convert to LLVM, emit .bc file">; 60 HelpText<"Build ASTs then convert to LLVM, but emit nothing">; 64 HelpText<"Emit LLVM Debug Metadata">; 67 HelpText<"<optimization-level> can be one of '0' or '3' (default)">; 70 HelpText<"Allow user-defined function prefixed with 'rs'"> [all...] |
/external/clang/include/clang/StaticAnalyzer/Checkers/ |
CheckerBase.td | 31 string HelpText; 38 class HelpText<string text> { string HelpText = text; }
|
/development/samples/JetBoy/res/layout/ |
main.xml | 10 <TextView android:id="@+id/text" android:text="@string/helpText" 11 style="@style/helpText" android:visibility="invisible"
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXMediaControls.h | 48 virtual String helpText() const OVERRIDE; 64 virtual String helpText() const OVERRIDE; 81 virtual String helpText() const OVERRIDE;
|
AXMediaControls.cpp | 89 String helptext = helpText(); local 90 if (!helptext.isEmpty()) 91 textOrder.append(AccessibilityText(helptext, HelpText)); 143 String AccessibilityMediaControl::helpText() const 239 String AXMediaControlsContainer::helpText() const 288 String AccessibilityMediaTimeline::helpText() const
|
/development/samples/JetBoy/res/values/ |
strings.xml | 7 <string name="helpText">Help JET BOY get through the asteroid field! Blast the asteroids in time with the beat and listen to the music respond!\n\nUse your FIRE button to explode each asteroid as it passes through the laser guide.</string>
|
styles.xml | 28 <style name="helpText">
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_mac_unittest.mm | 53 root.attributes[WebAccessibility::ATTR_HELP] = ASCIIToUTF16("HelpText"); 110 NSString* helpText = [accessibility_ 112 EXPECT_NSEQ(@"HelpText", helpText);
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_mac_unittest.mm | 72 root.AddStringAttribute(AccessibilityNodeData::ATTR_HELP, "HelpText"); 130 NSString* helpText = [accessibility_ 132 EXPECT_NSEQ(@"HelpText", helpText);
|
/external/clang/lib/Driver/ |
CC1AsOptions.cpp | 25 HELPTEXT, METAVAR) \ 26 { PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
|
DriverOptions.cpp | 25 HELPTEXT, METAVAR) \ 26 { PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
|
/external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/ |
TestComboMoves.java | 81 BitmapText helpText = new BitmapText(guiFont); 82 helpText.setLocalTranslation(0, settings.getHeight(), 0); 83 helpText.setText("Moves:\n" + 88 guiNode.attachChild(helpText);
|
/external/llvm/include/llvm/Option/ |
OptParser.td | 74 string HelpText = ?; 87 string HelpText = ?; 121 class HelpText<string text> { string HelpText = text; }
|
/external/chromium_org/tools/site_compare/ |
command_line.py | 35 def __init__(self, names, helptext, validator=None, impl=None): 36 """Initializes Command from names and helptext, plus optional callables. 40 helptext: brief string description of the command 47 self.helptext = helptext 60 def __init__(self, names, helptext, type, metaname, 66 helptext: brief description of the argument 102 self.helptext = helptext 159 helpstring = textwrap.wrap(self.helptext, width-indent-names_width-gutter [all...] |
/development/samples/JetBoy/src/com/example/android/jetboy/ |
JetBoy.java | 96 mTextView.setText(R.string.helpText); 111 mTextView.setText(R.string.helpText);
|