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

1234

/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/rs/rsov/compiler/
H A Dbcc_rsov.sh28 while getopts "ho:" opt; do
29 case "$opt" in
/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.java103 * @param opt LaunchOptions for clipping
105 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
109 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);
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DViewfinderProcessor.java190 Script.LaunchOptions opt = new Script.LaunchOptions();
191 opt.setX(2, mBlurAllocation.getType().getX() - 2);
192 opt.setY(2, mBlurAllocation.getType().getY() - 2);
193 mScriptCanny.forEach_blur_uchar(mBlurAllocation, opt);
195 opt.setX(3, mBlurAllocation.getType().getX() - 3);
196 opt.setY(3, mBlurAllocation.getType().getY() - 3);
197 mScriptCanny.forEach_edge(mEdgeAllocation, opt);
199 opt.setX(4, mBlurAllocation.getType().getX() - 4);
200 opt.setY(4, mBlurAllocation.getType().getY() - 4);
201 mScriptCanny.forEach_thin(mBlurAllocation, opt);
[all...]
/frameworks/base/services/core/java/com/android/server/om/
H A DOverlayManagerShellCommand.java102 String opt;
103 while ((opt = getNextOption()) != null) {
104 switch (opt) {
109 err.println("Error: Unknown option: " + opt);
144 String opt;
145 while ((opt = getNextOption()) != null) {
146 switch (opt) {
151 err.println("Error: Unknown option: " + opt);
164 String opt;
165 while ((opt
[all...]
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerShellCommand.java131 String opt;
132 while ((opt = getNextOption()) != null) {
133 switch (opt) {
145 pw.println("Error: unknown option '" + opt + "'");
178 String opt;
179 while ((opt = getNextOption()) != null) {
180 switch (opt) {
187 pw.println("Error: unknown option '" + opt + "'");
210 String opt = getNextArgRequired();
212 if ("on".equals(opt)) {
[all...]
/frameworks/compile/slang/
H A Dllvm-rs-as.cpp40 static cl::opt<std::string>
43 static cl::opt<std::string>
47 static cl::opt<bool>
50 static cl::opt<bool>
53 static cl::opt<uint32_t>
58 static cl::opt<bool>
61 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 count, size_t offset, MoveOpt opt);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java198 String opt;
199 while ((opt=nextOption()) != null) {
200 if (opt.equals("-p")) {
202 } else if (opt.equals("-w")) {
204 } else if (opt.equals("-r")) {
206 } else if (opt.equals("-m")) {
208 } else if (opt.equals("-e")) {
212 } else if (opt.equals("--no_window_animation")
213 || opt.equals("--no-window-animation")) {
215 } else if (opt
[all...]
/frameworks/native/cmds/surfacereplayer/replayer/
H A DMain.cpp67 int opt = 0; local
68 while ((opt = getopt(argc, argv, "mt:s:nlh?")) != -1) {
69 switch (opt) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java278 public boolean handleOption(String opt, ShellCommand cmd) {
279 if (opt.equals("-D")) {
281 } else if (opt.equals("-N")) {
283 } else if (opt.equals("-W")) {
285 } else if (opt.equals("-P")) {
288 } else if (opt.equals("--start-profiler")) {
291 } else if (opt.equals("--sampling")) {
293 } else if (opt.equals("--streaming")) {
295 } else if (opt.equals("-R")) {
297 } else if (opt
[all...]
/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.cpp39 JavaVMOption opt; local
41 opt.optionString =
45 args.options = &opt;
/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/compile/libbcc/tools/bcc_compat/
H A DMain.cpp48 llvm::cl::opt<std::string>
52 llvm::cl::opt<std::string>
56 llvm::cl::opt<std::string>
70 llvm::cl::opt<bool>
74 llvm::cl::opt<char>
79 llvm::cl::opt<bool>
88 llvm::cl::opt<std::string>
94 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/base/services/core/java/com/android/server/
H A DLockSettingsShellCommand.java96 String opt;
97 while ((opt = getNextOption()) != null) {
98 if ("--old".equals(opt)) {
100 } else if ("--user".equals(opt)) {
103 getErrPrintWriter().println("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"

Completed in 1630 milliseconds

1234