HomeSort by relevance Sort by last modified time
    Searched refs:keep (Results 126 - 150 of 1170) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/darwin-x86/src/html/template/
html_test.go 23 "erroneous\x960") // keep at the end
36 "erroneous�0") // keep at the end
  /prebuilts/go/darwin-x86/test/chan/
select5.go 181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
248 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
293 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
342 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
  /prebuilts/go/linux-x86/src/html/template/
html_test.go 23 "erroneous\x960") // keep at the end
36 "erroneous�0") // keep at the end
  /prebuilts/go/linux-x86/test/chan/
select5.go 181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
248 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
293 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
342 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
  /external/proguard/src/proguard/
ConfigurationParser.java 166 else if (ConfigurationConstants.KEEP_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, true, false, false);
167 else if (ConfigurationConstants.KEEP_CLASS_MEMBERS_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, false, false);
168 else if (ConfigurationConstants.KEEP_CLASSES_WITH_MEMBERS_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, true, false);
169 else if (ConfigurationConstants.KEEP_NAMES_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, true, false, true);
170 else if (ConfigurationConstants.KEEP_CLASS_MEMBER_NAMES_OPTION .startsWith(nextWord)) configuration.keep = parseKeepClassSpecificationArguments(configuration.keep, false, false, true)
    [all...]
  /frameworks/support/work/integration-tests/testapp/src/main/java/androidx/work/integration/testapp/
MainActivity.java 19 import static androidx.work.ExistingWorkPolicy.KEEP;
147 CheckBox keep = findViewById(R.id.keep);
148 ExistingWorkPolicy policy = keep.isChecked() ? KEEP : REPLACE;
  /toolchain/binutils/binutils-2.27/bfd/
elf-ifunc.c 153 or we are building a PIC object, we must keep dynamic relocation
158 bfd_boolean keep = FALSE; local
164 keep = TRUE;
173 if (keep)
174 goto keep;
199 keep:
  /prebuilts/go/darwin-x86/src/archive/zip/
zip_test.go 343 // to 'keep' bytes of data written to it. Call Suffix to get the
346 keep int
358 if back > int64(ss.keep) {
370 if len(ss.buf) < ss.keep {
373 buf := make([]byte, ss.keep)
382 if len(ss.buf) < ss.keep {
383 space := ss.keep - len(ss.buf)
395 if ss.start == ss.keep {
405 ss := &suffixSaver{keep: 10 << 20}
735 const keep = 1
    [all...]
  /prebuilts/go/linux-x86/src/archive/zip/
zip_test.go 343 // to 'keep' bytes of data written to it. Call Suffix to get the
346 keep int
358 if back > int64(ss.keep) {
370 if len(ss.buf) < ss.keep {
373 buf := make([]byte, ss.keep)
382 if len(ss.buf) < ss.keep {
383 space := ss.keep - len(ss.buf)
395 if ss.start == ss.keep {
405 ss := &suffixSaver{keep: 10 << 20}
735 const keep = 1
    [all...]
  /external/python/cpython2/Modules/_ctypes/
callproc.c 586 * used to keep the object alive where this parameter refers to.
614 PyObject *keep; member in struct:argument
624 pa->keep = NULL; /* so we cannot forget it later */
634 pa->keep = (PyObject *)carg;
642 pa->keep = obj;
679 pa->keep = obj;
689 pa->keep = obj;
702 pa->keep = CAPSULE_NEW(pa->value.p, CTYPES_CAPSULE_WCHAR_T);
703 if (!pa->keep) {
    [all...]
callbacks.c 333 PyObject *keep; local
340 keep = setfunc(mem, result, 0);
341 CHECK("'converting callback result'", keep);
342 /* keep is an object we have to keep alive so that the result
346 If there is such an object, we have no choice than to keep
351 if (keep == NULL) /* Could not convert callback result. */
353 else if (keep == Py_None) /* Nothing to keep */
354 Py_DECREF(keep);
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
nm.c 470 int keep = 0;
484 keep = bfd_is_und_section (sym->section);
487 keep = ((sym->flags & (BSF_GLOBAL
493 keep = 1;
495 if (keep
498 keep = 0;
500 if (keep
504 keep = 0;
506 if (keep
510 keep = 0
466 int keep = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
prune.go 122 var keep, drop *regexp.Regexp
130 if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil {
134 p.Prune(drop, keep)
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
prune.go 122 var keep, drop *regexp.Regexp
130 if keep, err = regexp.Compile("^(" + p.KeepFrames + ")$"); err != nil {
134 p.Prune(drop, keep)
  /external/python/cpython3/Modules/_ctypes/
callproc.c 577 * used to keep the object alive where this parameter refers to.
603 PyObject *keep; member in struct:argument
613 pa->keep = NULL; /* so we cannot forget it later */
625 pa->keep = (PyObject *)carg;
633 pa->keep = obj;
664 pa->keep = obj;
674 pa->keep = PyCapsule_New(pa->value.p, CTYPES_CAPSULE_NAME_PYMEM, pymem_destructor);
675 if (!pa->keep) {
    [all...]
  /build/soong/scripts/
diff_build_graphs.sh 102 BUILD_NUMBER=sample "$builder" $PRODUCTS_ARG --keep --out "$OUT_DIR_TEMP" || true
122 # outputs are different, so remove the unzipped versions but keep the zipped versions
  /external/llvm/test/MC/ARM/
eh-compact-pr1.s 68 @ will keep __aeabi_unwind_cpp_pr1.
  /external/llvm/tools/llvm-as/
llvm-as.cpp 87 Out->keep();
  /external/swiftshader/third_party/LLVM/tools/llvm-link/
llvm-link.cpp 139 Out.keep();
  /external/valgrind/coregrind/m_syswrap/
syscall-mips32-linux.S 109 # TODO: this should remain, keep it just for now
  /frameworks/compile/libbcc/tools/bcc_strip_attr/
bcc_strip_attr.cpp 152 Out.keep();
  /frameworks/compile/slang/
llvm-rs-as.cpp 105 Out->keep();
slang_rs_export_type.h 102 * TODO: but if you do this, you won't be able to keep using First* & Last*
310 virtual bool keep();
474 virtual bool keep();
588 virtual bool keep();
679 virtual bool keep();
  /prebuilts/devtools/
update_jars.sh 35 echo " -o: only keep the given *leaf* filenames (.jar can be omitted)"
42 echo "Error: -o must be followed by names of files to keep."
97 echo "!--> Keep changed file $i"
107 local i j tmpf dstf keep
115 echo "!--> Keep changed file $i"
  /prebuilts/go/darwin-x86/src/runtime/
lfstack_test.go 33 // Need to keep additional references to nodes, the stack is not all that type-safe.
89 // Need to keep additional references to nodes,

Completed in 552 milliseconds

1 2 3 4 56 7 8 91011>>