HomeSort by relevance Sort by last modified time
    Searched defs:Option (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 30 unsigned Option = MO.getTargetFlags() & ARMII::MO_OPTION_MASK;
31 switch (Option) {
35 switch (Option) {
  /external/llvm/lib/Option/
Option.cpp 1 //===--- Option.cpp - Abstract Driver Options -----------------------------===//
10 #include "llvm/Option/Option.h"
12 #include "llvm/Option/Arg.h"
13 #include "llvm/Option/ArgList.h"
22 Option::Option(const OptTable::Info *info, const OptTable *owner)
25 // Multi-level aliases are not supported. This just simplifies option
34 "Cannot provide alias args to a flag option.");
38 Option::~Option()
    [all...]
  /external/chromium_org/third_party/webrtc/
common.h 22 // * declaring an option:
28 // * accessing an option:
31 // * setting an option:
40 // Returns the option if set or a default constructed one.
47 // Set the option, deleting any previous instance of the same.
69 struct Option : BaseOption {
70 explicit Option(T* v): value(v) {}
71 ~Option() {
105 const T* t = static_cast<Option<T>*>(it->second)->value;
117 it = new Option<T>(value)
    [all...]
  /external/chromium_org/ppapi/generators/
idl_option.py 15 raise RuntimeError('Could not find option "%s".' % name)
18 class Option(object):
22 # Verify this option is not a duplicate
24 raise RuntimeError('Option "%s" already exists.' % name)
37 # If this is a boolean option, set it to true
50 def DumpOption(option):
51 if len(option.name) > 1:
52 out = ' --%-15.15s\t%s' % (option.name, option.desc)
54 out = ' -%-15.15s\t%s' % (option.name, option.desc
    [all...]
idl_lint.py 13 from idl_option import GetOption, Option, ParseOptions
18 Option('wcomment', 'Disable warning for missing comment.')
19 Option('wenum', 'Disable warning for missing enum value.')
20 Option('winline', 'Disable warning for inline blocks.')
21 Option('wname', 'Disable warning for inconsistent interface name.')
22 Option('wnone', 'Disable all warnings.')
23 Option('wparam', 'Disable warning for missing [in|out|inout] on param.')
24 Option('wpass', 'Disable warning for mixed passByValue and returnByValue.')
idl_outfile.py 14 from idl_option import GetOption, Option, ParseOptions
17 Option('diff', 'Generate a DIFF when saving the file.')
idl_diff.py 11 from idl_option import GetOption, Option, ParseOptions
23 Option('gen', 'IDL generated files', default='hdir')
24 Option('src', 'Original ".h" files', default='../c')
25 Option('halt', 'Stop if a difference is found')
26 Option('diff', 'Directory holding acceptable diffs', default='diff')
27 Option('ok', 'Write out the diff file.')
idl_generator.py 9 from idl_option import GetOption, Option, ParseOptions
14 Option('out', 'List of output files', default='')
15 Option('release', 'Which release to generate.', default='')
16 Option('range', 'Which ranges in the form of MIN,MAX.', default='start,end')
36 self.run_switch = Option(sname, desc)
37 self.opt_switch = Option(sname + '_opt', 'Options for %s.' % sname,
78 # Check for a range option which over-rides a release option
226 print 'Option %s is %s, expecting %s' % (item, option_item, check_item)
idl_c_header.py 16 from idl_option import GetOption, Option, ParseOptions
23 Option('dstroot', 'Base directory of output', default=os.path.join('..', 'c'))
24 Option('guard', 'Include guard prefix', default=os.path.join('ppapi', 'c'))
idl_gen_pnacl.py 18 from idl_option import GetOption, Option, ParseOptions
21 Option('pnaclshim', 'Name of the pnacl shim file.',
24 Option('disable_pnacl_opt', 'Turn off optimization of pnacl shim.')
idl_lexer.py 35 from idl_option import GetOption, Option, ParseOptions
38 Option('output', 'Generate output.')
idl_namespace.py 15 from idl_option import GetOption, Option, ParseOptions
19 Option('label', 'Use the specifed label blocks.', default='Chrome')
20 Option('namespace_debug', 'Use the specified release')
idl_c_proto.py 15 from idl_option import GetOption, Option, ParseOptions
18 Option('cgen_debug', 'Debug generate.')
48 # If an option prefix is provided, then prepend that to the comment
660 if left == 0: # No more parens, take the original option
idl_release.py 16 from idl_option import GetOption, Option, ParseOptions
18 Option('release_debug', 'Debug Release data')
19 Option('wgap', 'Ignore Release gap warning')
idl_thunk.py 16 from idl_option import GetOption, Option, ParseOptions
22 Option('thunkroot', 'Base directory of output',
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 58 StringRef Option = DiagnosticIDs::getWarningOptionForDiag(ID);
59 if (!Option.empty()) {
61 *Disable = cxstring::createDup((Twine("-Wno-") + Option).str());
62 return cxstring::createDup((Twine("-W") + Option).str());
  /external/chromium_org/third_party/WebKit/public/web/
WebMenuItemInfo.h 43 Option,
51 : type(Option)
  /external/clang/docs/tools/
dump_format_style.py 32 class Option:
102 option = Option(str(field_name), str(field_type), comment) variable in class:read_options.State
103 options.append(option)
124 for option in options:
125 if not option.type in ['bool', 'unsigned', 'int', 'std::string',
127 if enums.has_key(option.type):
128 option.enum = enums[option.type]
130 raise Exception('Unknown type: %s' % option.type
    [all...]
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 62 assert(OptionInfo && "Attribute must have valid option info.");
64 LoopHintAttr::OptionType Option =
75 if (Option == LoopHintAttr::Vectorize || Option == LoopHintAttr::Interleave ||
76 Option == LoopHintAttr::Unroll) {
89 } else if (Option == LoopHintAttr::VectorizeWidth ||
90 Option == LoopHintAttr::InterleaveCount ||
91 Option == LoopHintAttr::UnrollCount) {
101 llvm_unreachable("Unknown loop hint option");
103 return LoopHintAttr::CreateImplicit(S.Context, Option, ValueInt
    [all...]
  /external/clang/test/CodeGenCXX/
destructors.cpp 369 struct Option {
370 virtual ~Option() {}
372 template <class DataType> class opt : public Option {};
377 Option x;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h 51 enum Option {
  /external/chromium_org/third_party/libjingle/source/talk/base/
socket.h 182 enum Option {
189 OPT_RTP_SENDTIME_EXTN_ID, // This is a non-traditional socket option param.
191 // if SendTime option is needed at socket level.
193 virtual int GetOption(Option opt, int* value) = 0;
194 virtual int SetOption(Option opt, int value) = 0;
  /external/chromium_org/third_party/re2/util/
pcre.h 219 // "(?s)" has the same effect as the PCRE_DOTALL option.
220 enum Option {
230 PCRE(const char* pattern, Option option);
232 PCRE(const string& pattern, Option option);
450 // Type of match (TODO: Should be restructured as an Option)
469 void Init(const char* pattern, Option option, int match_limit,
511 Option options_
539 PCRE::Option option() const { return option_; } function in class:re2::PCRE_Options
    [all...]
  /external/chromium_org/third_party/webrtc/base/
socket.h 165 enum Option {
172 OPT_RTP_SENDTIME_EXTN_ID, // This is a non-traditional socket option param.
174 // if SendTime option is needed at socket level.
176 virtual int GetOption(Option opt, int* value) = 0;
177 virtual int SetOption(Option opt, int value) = 0;
  /external/clang/tools/driver/
driver.cpp 29 #include "llvm/Option/ArgList.h"
30 #include "llvm/Option/OptTable.h"
31 #include "llvm/Option/Option.h"
84 /// 'xOPTION': Removes all instances of the literal argument OPTION.
86 /// 'XOPTION': Removes all instances of the literal argument OPTION,
127 std::string Option = Edit.substr(1, std::string::npos);
129 if (Option == Args[i]) {

Completed in 403 milliseconds

1 2 3