Searched refs:opt (Results 26 - 50 of 63) sorted by relevance

123

/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicLUT.java134 * @param opt Options for clipping
136 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
141 forEach(0, ain, aout, null, opt);
H A DScriptIntrinsicColorMatrix.java242 * @param opt LaunchOptions for clipping
244 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
269 forEach(0, ain, aout, null, opt);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicConvolve3x3.java126 * @param opt LaunchOptions for clipping
128 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
129 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicConvolve5x5.java129 * @param opt LaunchOptions for clipping
131 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
132 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicResize.java111 * @param opt LaunchOptions for clipping
113 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) { argument
114 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicColorMatrix.java222 * @param opt LaunchOptions for clipping
224 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
249 forEach(0, ain, aout, null, opt);
/frameworks/base/cmds/ime/src/com/android/commands/ime/
H A DIme.java89 String opt;
92 while ((opt=nextOption()) != null) {
93 if (opt.equals("-a")) {
95 } else if (opt.equals("-s")) {
98 System.err.println("Error: Unknown option: " + opt);
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp38 static cl::opt<std::string>
42 static cl::opt<bool>
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java249 if ("force-dex-opt".equals(op)) {
441 String opt;
442 while ((opt = nextOption()) != null) {
443 if (opt.equals("-S")) {
446 throw new IllegalArgumentException("Unknown option: " + opt);
466 String opt;
467 while ((opt = nextOption()) != null) {
468 switch (opt) {
538 throw new IllegalArgumentException("Unknown option " + opt);
730 String opt;
[all...]
/frameworks/minikin/libs/minikin/
H A DGraphemeBreak.cpp181 size_t offset, MoveOpt opt) {
182 switch (opt) {
180 getTextRunCursor(const uint16_t* buf, size_t start, size_t count, size_t offset, MoveOpt opt) argument
/frameworks/opt/bitmap/
H A DAndroid.mk18 LOCAL_MODULE := android-opt-bitmap
/frameworks/opt/bitmap/sample/
H A DAndroid.mk23 LOCAL_STATIC_JAVA_LIBRARIES += android-opt-bitmap
/frameworks/opt/chips/tests/
H A DAndroid.mk24 LOCAL_RESOURCE_DIR := frameworks/opt/chips/res/
/frameworks/opt/datetimepicker/
H A DAndroid.mk18 LOCAL_MODULE := android-opt-datetimepicker
/frameworks/opt/timezonepicker/
H A DAndroid.mk18 LOCAL_MODULE := android-opt-timezonepicker
/frameworks/compile/mclinker/tools/mcld/
H A DAndroid.mk81 $(call transform-device-td-to-out,opt-parser-defs)
112 $(call transform-host-td-to-out,opt-parser-defs)
/frameworks/base/tools/obbtool/
H A DMain.cpp183 int opt; local
194 while ((opt = getopt_long(argc, argv, ADD_OPTS, longopts, &option_index)) != -1) {
195 switch (opt) {
/frameworks/support/core-utils/kitkat/android/support/v4/print/
H A DPrintHelperKitkat.java617 BitmapFactory.Options opt = new BitmapFactory.Options();
618 opt.inJustDecodeBounds = true;
619 loadBitmap(uri, opt);
621 int w = opt.outWidth;
622 int h = opt.outHeight;
/frameworks/native/opengl/tests/hwc/
H A DhwcColorEquiv.cpp167 int rv, opt; local
180 while ((opt = getopt(argc, argv, "vs:e:r:D:?h")) != -1) {
181 switch (opt) {
H A DhwcRects.cpp205 int rv, opt; local
213 while ((opt = getopt(argc, argv, "D:v?h")) != -1) {
214 switch (opt) {
H A DhwcStress.cpp242 int rv, opt; local
251 while ((opt = getopt(argc, argv, "vp:d:D:n:s:e:t:?h")) != -1) {
252 switch (opt) {
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py510 def _set_adb_device(option, opt, value, parser):
512 if opt == '-d' or opt == '--device':
514 if opt == '-e' or opt == '--emulator':
516 if opt == '-s' or opt == '--serial':
/frameworks/compile/slang/
H A DAndroid.mk194 $(call transform-host-td-to-out,opt-parser-defs)
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1937 BitmapFactory.Options opt = new BitmapFactory.Options();
1938 opt.inJustDecodeBounds = true;
1939 BitmapFactory.decodeStream(is, null, opt);
1943 width = opt.outWidth;
1944 height = opt.outHeight;
1945 if (opt.outWidth > getMaxImageWidthPx()) {
1947 height = height * getMaxImageWidthPx() / opt.outWidth;
2632 BitmapFactory.Options opt = new BitmapFactory.Options();
2633 opt.inJustDecodeBounds = true;
2634 BitmapFactory.decodeStream(is, null, opt);
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp471 for (const llvm::ELF::Elf_Options* opt = optb; opt < opte;
472 opt += opt->size) {
473 switch (opt->kind) {
480 reinterpret_cast<const llvm::ELF::Elf32_RegInfo*>(opt + 1);
484 reinterpret_cast<const llvm::ELF::Elf64_RegInfo*>(opt + 1);

Completed in 845 milliseconds

123