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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mozilla/
mozilla-shell-emulation.js 31 // Options are generally ignored (not set, if anybody asks).
33 function options(aOptionName) { function
34 // Returns comma-separated list of options set.
  /external/oprofile/pp/
opannotate_options.h 3 * Options for opannotate tool
23 namespace options { namespace
45 void handle_options(options::spec const & spec);
oparchive_options.h 3 * Options for oparchive tool
20 namespace options { namespace
37 void handle_options(options::spec const & spec);
opgprof_options.h 3 * Options for opgprof tool
19 namespace options { namespace
34 void handle_options(options::spec const & spec);
opreport_options.h 3 * Options for opreport tool
26 namespace options { namespace
56 void handle_options(options::spec const & spec);
common_option.h 4 * options of pp tools and some miscelleaneous functions
22 namespace options { namespace
41 typedef int (*pp_fct_run_t)(options::spec const & spec);
48 * Provide a common entry to all pp tools, parsing all options, handling
49 * common options and providing the necessary try catch clause
  /external/chromium/android/autofill/
android_url_request_context_getter.cc 40 base::Thread::Options options; local
41 options.message_loop_type = MessageLoop::TYPE_IO;
42 if (!io_thread_->StartWithOptions(options)) {
  /external/webkit/Source/WebCore/html/
HTMLDataListElement.cpp 50 PassRefPtr<HTMLCollection> HTMLDataListElement::options() function in class:WebCore::HTMLDataListElement
  /external/chromium/chrome/browser/
content_setting_image_model_unittest.cc 61 net::CookieOptions options; local
63 GURL("http://google.com"), "A=B", options, false);
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
applypatchwithlocalcommit.py 30 from webkitpy.tool.steps.options import Options
34 def options(cls): member in class:ApplyPatchWithLocalCommit
35 return ApplyPatch.options() + [
36 Options.local_commit,
createbug.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:CreateBug
36 return AbstractStep.options() + [
37 Options.cc,
38 Options.component,
39 Options.blocks,
postdiff.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:PostDiff
36 return AbstractStep.options() + [
37 Options.description,
38 Options.comment,
39 Options.review,
40 Options.request_commit,
41 Options.open_bug,
suggestreviewers.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:SuggestReviewers
36 return AbstractStep.options() + [
37 Options.git_commit,
38 Options.suggest_reviewers,
applypatch.py 30 from webkitpy.tool.steps.options import Options
35 def options(cls): member in class:ApplyPatch
36 return AbstractStep.options() + [
37 Options.non_interactive,
38 Options.force_patch,
attachtobug.py 32 from webkitpy.tool.steps.options import Options
37 def options(cls): member in class:AttachToBug
38 return AbstractStep.options() + [
39 Options.comment,
40 Options.description,
build.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:Build
37 return AbstractStep.options() + [
38 Options.build,
39 Options.quiet,
40 Options.build_style,
cleanworkingdirectory.py 32 from webkitpy.tool.steps.options import Options
36 def __init__(self, tool, options, allow_local_commits=False):
37 AbstractStep.__init__(self, tool, options)
41 def options(cls): member in class:CleanWorkingDirectory
42 return AbstractStep.options() + [
43 Options.force_clean,
44 Options.clean,
closebug.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:CloseBug
37 return AbstractStep.options() + [
38 Options.close_bug,
closebugforlanddiff.py 31 from webkitpy.tool.steps.options import Options
37 def options(cls): member in class:CloseBugForLandDiff
38 return AbstractStep.options() + [
39 Options.close_bug,
ensurebuildersaregreen.py 30 from webkitpy.tool.steps.options import Options
36 def options(cls): member in class:EnsureBuildersAreGreen
37 return AbstractStep.options() + [
38 Options.check_builders,
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 13 const OptionDef options[] = { variable
14 /* main options */
  /external/icu4c/tools/gencmn/
gencmn.c 34 static UOption options[]={ variable
55 /* preset then read command line options */
56 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
67 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
76 if (options[0].doesOccur || options[1].doesOccur) {
81 "Options:\n
    [all...]
  /external/linux-tools-perf/
builtin-evlist.c 21 #include "util/parse-options.h"
43 "perf evlist [<options>]",
47 static const struct option options[] = { variable in typeref:struct:option
55 argc = parse_options(argc, argv, options, evlist_usage, 0);
57 usage_with_options(evlist_usage, options);
  /external/webkit/Source/WebCore/editing/
MoveSelectionCommand.cpp 73 ReplaceSelectionCommand::CommandOptions options = ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::PreventNesting; local
75 options |= ReplaceSelectionCommand::SmartReplace;
76 applyCommandToComposite(ReplaceSelectionCommand::create(document(), m_fragment, options));
  /external/webkit/Source/WebCore/loader/
ThreadableLoader.cpp 43 PassRefPtr<ThreadableLoader> ThreadableLoader::create(ScriptExecutionContext* context, ThreadableLoaderClient* client, const ResourceRequest& request, const ThreadableLoaderOptions& options)
50 return WorkerThreadableLoader::create(static_cast<WorkerContext*>(context), client, WorkerRunLoop::defaultMode(), request, options);
54 return DocumentThreadableLoader::create(static_cast<Document*>(context), client, request, options);
57 void ThreadableLoader::loadResourceSynchronously(ScriptExecutionContext* context, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options)
63 WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(context), request, client, options); local
69 DocumentThreadableLoader::loadResourceSynchronously(static_cast<Document*>(context), request, client, options); local

Completed in 2250 milliseconds

1 2 3 4 5 6 7 8 91011>>