Searched refs:opt (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
H A DRequestSync.java88 String opt;
89 while ((opt=nextOption()) != null) {
90 if (opt.equals("-h") || opt.equals("--help")) {
93 } else if (opt.equals("-n") || opt.equals("--account-name")) {
95 } else if (opt.equals("-t") || opt.equals("--account-type")) {
97 } else if (opt.equals("-a") || opt
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBlend.java43 private void blend(int id, Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
50 forEach(id, ain, aout, null, opt);
68 * @param opt LaunchOptions for clipping
70 public void forEachClear(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
71 blend(0, ain, aout, opt);
99 * @param opt LaunchOptions for clipping
101 public void forEachSrc(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
133 * @param opt LaunchOptions for clipping
135 public void forEachDst(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
163 * @param opt LaunchOption
165 forEachSrcOver(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
195 forEachDstOver(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
225 forEachSrcIn(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
255 forEachDstIn(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
285 forEachSrcOut(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
315 forEachDstOut(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
347 forEachSrcAtop(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
383 forEachDstAtop(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
415 forEachXor(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
455 forEachMultiply(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
562 forEachAdd(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
592 forEachSubtract(Allocation ain, Allocation aout, Script.LaunchOptions opt) argument
[all...]
H A DScriptIntrinsic3DLUT.java96 * @param opt Launch options for kernel
98 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
99 forEach(0, ain, aout, null, opt);
H A DScriptIntrinsicBlur.java97 * @param opt LaunchOptions for clipping
99 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
100 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicConvolve5x5.java119 * @param opt LaunchOptions for clipping
121 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
122 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicResize.java101 * @param opt LaunchOptions for clipping
103 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) { argument
104 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicHistogram.java85 * @param opt LaunchOptions for clipping
87 public void forEach(Allocation ain, Script.LaunchOptions opt) { argument
101 forEach(0, ain, null, null, opt);
186 * @param opt LaunchOptions for clipping
188 public void forEach_Dot(Allocation ain, Script.LaunchOptions opt) { argument
199 forEach(1, ain, null, null, opt);
H A DScriptIntrinsicConvolve3x3.java117 * @param opt LaunchOptions for clipping
119 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
120 forEach(0, (Allocation) null, aout, null, opt);
/frameworks/compile/slang/
H A Dllvm-rs-as.cpp38 static cl::opt<std::string>
41 static cl::opt<std::string>
45 static cl::opt<bool>
48 static cl::opt<bool>
51 static cl::opt<uint32_t>
56 static cl::opt<bool>
59 static cl::opt<bool>
H A Drs_cc_options.cpp56 static const llvm::opt::OptTable::Info RSCCInfoTable[] = {
61 PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, llvm::opt::Option::KIND##Class, \
72 class RSCCOptTable : public llvm::opt::OptTable {
81 llvm::opt::OptTable *createRSCCOptTable() { return new RSCCOptTable(); }
109 std::unique_ptr<llvm::opt::OptTable> OptParser(createRSCCOptTable());
112 llvm::opt::InputArgList Args =
122 for (llvm::opt::arg_iterator it = Args.filtered_begin(OPT_UNKNOWN),
136 for (llvm::opt::ArgList::const_iterator it = Args.begin(), ie = Args.end();
138 const llvm::opt::Arg *A = *it;
139 if (A->getOption().getKind() == llvm::opt
[all...]
H A Drs_cc_options.h34 namespace opt { namespace in namespace:llvm
130 llvm::opt::OptTable *createRSCCOptTable();
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DOptimizingLineBreaker.java56 Node[] opt = new Node[numBreaks];
57 opt[0] = new Node(-1, 0, 0, 0, false);
58 opt[numBreaks - 1] = new Node(-1, 0, 0, 0, false);
72 int lines = opt[pos].mPrevCount;
82 finalBreak, p.penalty) + opt[pos].mDemerits;
85 bestBreak = new Node(pos, opt[pos].mPrevCount + 1, demerits,
89 bestBreak.mPrevCount = opt[pos].mPrevCount + 1;
103 opt[i] = bestBreak;
110 int lines = opt[lastBreak].mPrevCount;
113 opt[breakInde
[all...]
/frameworks/minikin/include/minikin/
H A DGraphemeBreak.h42 size_t offset, MoveOpt opt);
/frameworks/opt/net/wifi/tests/wifitests/
H A Dcoverage.sh33 echo "+ EMMA_INSTRUMENT_STATIC=true mmma -j32 $ANDROID_BUILD_TOP/frameworks/opt/net/wifi/tests"
36 EMMA_INSTRUMENT_STATIC=true make -j32 -C $ANDROID_BUILD_TOP -f build/core/main.mk MODULES-IN-frameworks-opt-net-wifi-tests
58 --source-dir $ANDROID_BUILD_TOP/frameworks/opt/net/wifi/tests/wifitests/src \
59 --source-dir $ANDROID_BUILD_TOP/frameworks/opt/net/wifi/service/java \
/frameworks/native/services/surfaceflinger/
H A DDdmConnection.cpp37 JavaVMOption opt; local
39 opt.optionString =
43 args.options = &opt;
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerShellCommand.java74 String opt;
75 while ((opt = getNextOption()) != null) {
76 switch (opt) {
88 pw.println("Error: unknown option '" + opt + "'");
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java491 public boolean handleOption(String opt, ShellCommand cmd) {
492 if (opt.equals("-D")) {
494 } else if (opt.equals("-N")) {
496 } else if (opt.equals("-W")) {
498 } else if (opt.equals("-P")) {
501 } else if (opt.equals("--start-profiler")) {
504 } else if (opt.equals("--sampling")) {
506 } else if (opt.equals("-R")) {
508 } else if (opt.equals("-S")) {
510 } else if (opt
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp75 class OptTable : public llvm::opt::OptTable {
81 static const llvm::opt::OptTable::Info InfoTable[];
101 bool TranslateArguments(llvm::opt::InputArgList& args);
125 const llvm::opt::OptTable::Info Driver::OptTable::InfoTable[] = {
129 llvm::opt::Option::KIND ## Class, PARAM, FLAGS, kOpt_ ## GROUP, \
136 : llvm::opt::OptTable(InfoTable) { }
258 bool Driver::TranslateArguments(llvm::opt::InputArgList& args) {
264 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Color)) {
281 if (llvm::opt::Arg* arg = args.getLastArg(kOpt_Verbose)) {
293 if (llvm::opt
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java200 String opt;
201 while ((opt = getNextOption()) != null) {
202 switch (opt) {
207 pw.println("Error: Unknown option: " + opt);
254 String opt;
255 while ((opt = getNextOption()) != null) {
256 if (opt.equals("-S")) {
259 throw new IllegalArgumentException("Unknown option: " + opt);
292 String opt;
293 while ((opt
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java88 String opt;
89 while ((opt = getNextOption()) != null) {
90 if (opt.equals("--user")) {
93 pw.println("Error: Unknown option: " + opt);
104 String opt;
105 while ((opt=getNextOption()) != null) {
106 if (opt.equals("--user")) {
109 pw.println("Error: Unknown option: " + opt);
/frameworks/compile/libbcc/tools/bcc_compat/
H A DMain.cpp52 llvm::cl::opt<std::string>
56 llvm::cl::opt<std::string>
60 llvm::cl::opt<std::string>
74 llvm::cl::opt<bool>
78 llvm::cl::opt<char>
83 llvm::cl::opt<bool>
92 llvm::cl::opt<std::string>
98 llvm::cl::opt<bool>
/frameworks/base/cmds/dpm/src/com/android/commands/dpm/
H A DDpm.java110 String opt;
111 while ((opt = nextOption()) != null) {
112 if ("--user".equals(opt)) {
127 } else if (canHaveName && "--name".equals(opt)) {
130 throw new IllegalArgumentException("Unknown option: " + opt);
/frameworks/compile/libbcc/tests/debuginfo/
H A Dbuild_test_apk.sh64 opt="$1"
65 case "$opt" in
109 echo "ERROR: Unknown option '$opt', use --help for list of valid ones."
114 PARAMETERS="$opt"
116 PARAMETERS="$PARAMETERS $opt"
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp73 llvm::cl::opt<std::string>
78 llvm::cl::opt<std::string>
82 llvm::cl::opt<std::string>
88 llvm::cl::opt<std::string>
93 llvm::cl::opt<bool>
97 llvm::cl::opt<std::string>
108 llvm::cl::opt<bool>
112 llvm::cl::opt<bool>
116 llvm::cl::opt<bool>
121 llvm::cl::opt<st
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicHistogram.java95 * @param opt LaunchOptions for clipping
97 public void forEach(Allocation ain, Script.LaunchOptions opt) { argument
111 forEach(0, ain, null, null, opt);
196 * @param opt LaunchOptions for clipping
198 public void forEach_Dot(Allocation ain, Script.LaunchOptions opt) { argument
209 forEach(1, ain, null, null, opt);

Completed in 1499 milliseconds

123