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

1 2

  /frameworks/compile/slang/
slang_rs_exportable.cpp 21 bool RSExportable::keep() { function in class:slang::RSExportable
slang_rs_export_type.cpp 763 bool RSExportType::keep() { function in class:slang::RSExportType
764 if (!RSExportable::keep())
1098 bool RSExportPointerType::keep() { function in class:slang::RSExportPointerType
1331 bool RSExportConstantArrayType::keep() { function in class:slang::RSExportConstantArrayType
1466 bool RSExportRecordType::keep() { function in class:slang::RSExportRecordType
    [all...]
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 25 /// object is destroyed unless the client calls keep().
35 /// Keep - The flag which indicates whether we should not delete the file.
36 bool Keep;
55 /// keep - Indicate that the tool's job wrt this output file has been
57 void keep() { Installer.Keep = true; } function in class:llvm::tool_output_file
  /frameworks/base/core/java/android/text/
InputFilter.java 69 return null; // keep original
84 int keep = mMax - (dest.length() - (dend - dstart)); local
86 if (keep <= 0) {
88 } else if (keep >= end - start) {
89 return null; // keep original
91 keep += start;
92 if (Character.isHighSurrogate(source.charAt(keep - 1))) {
93 --keep;
94 if (keep == start) {
98 return source.subSequence(start, keep);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraButtonIntentReceiver.java 44 holder.keep();
ThumbnailHolder.java 68 public static synchronized void keep(Thumbnail t) { method in class:ThumbnailHolder
CameraHolder.java 38 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
50 private long mKeepBeforeTime; // Keep the Camera before this time.
217 public synchronized void keep() { method in class:CameraHolder
222 // Keep the camera instance for 3 seconds.
PanoramaActivity.java 208 // We keep the last known orientation. So if the user first orient
458 if (mThumbnail != null) ThumbnailHolder.keep(mThumbnail);
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraButtonIntentReceiver.java 44 holder.keep();
CameraHolder.java 36 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
48 private long mKeepBeforeTime = 0; // Keep the Camera before this time.
194 public synchronized void keep() { method in class:CameraHolder
199 // Keep the camera instance for 3 seconds.
  /external/tcpdump/
print-chdlc.c 138 } keep; member in union:cisco_slarp::__anon12988
177 EXTRACT_32BITS(&slarp->un.keep.myseq),
178 EXTRACT_32BITS(&slarp->un.keep.yourseq),
179 EXTRACT_16BITS(&slarp->un.keep.rel));
  /system/core/libcutils/
dir_hash.c 178 char *keep; local
207 keep = malloc(len + strlen(name) + 3);
210 if (keep == NULL || res == NULL) {
224 free(keep);
229 sprintf(keep, "%s %s\n", name, outstr);
231 res->name = keep;
  /external/v8/src/
zone.cc 113 // Find a segment with a suitable size to keep around.
114 Segment* keep = segment_head_; local
115 while (keep != NULL && keep->size() > kMaximumKeptSegmentSize) {
116 keep = keep->next();
120 // and freeing every segment except the one we wish to keep.
124 if (current == keep) {
125 // Unlink the segment we wish to keep from the list.
138 // If we have found a segment we want to keep, we must recompute th
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 185 TreeMap<String, ClassReader> keep = new TreeMap<String, ClassReader>(); local
190 ClassReader cr = mAa.findClass("mock_android.widget.TableLayout", zipClasses, keep);
191 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps);
  /external/libpng/
pngwrite.c 25 * the chunk, as that will keep the code from breaking if you want to just
116 int keep = png_handle_as_unknown(png_ptr, up->name); local
117 if (keep != PNG_HANDLE_CHUNK_NEVER &&
120 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
294 int keep = png_handle_as_unknown(png_ptr, up->name); local
295 if (keep != PNG_HANDLE_CHUNK_NEVER &&
299 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
398 int keep = png_handle_as_unknown(png_ptr, up->name); local
399 if (keep != PNG_HANDLE_CHUNK_NEVER &&
401 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS |
    [all...]
  /external/oprofile/opjitconv/
jitsymbol.c 228 * We decided to keep one entry in favor of the other. Instead of dropping
234 * keep: |---|
239 * keep: |---|
243 static void split_entry(struct jitentry * split, struct jitentry const * keep)
245 unsigned long long start_addr_keep = keep->vma;
246 unsigned long long end_addr_keep = keep->vma + keep->code_size;
319 struct jitentry const * keep = entries_address_ascending[keep_idx]; local
321 unsigned long long start_addr_keep = keep->vma;
322 unsigned long long end_addr_keep = keep->vma + keep->code_size
    [all...]
  /external/proguard/src/proguard/
Configuration.java 86 // Keep options.
94 public List keep; field in class:Configuration
  /external/qemu/distrib/libpng-1.2.19/
pngwrite.c 21 * the chunk, as that will keep the code from breaking if you want to just
108 int keep=png_handle_as_unknown(png_ptr, up->name); local
109 if (keep != PNG_HANDLE_CHUNK_NEVER &&
112 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
275 int keep=png_handle_as_unknown(png_ptr, up->name); local
276 if (keep != PNG_HANDLE_CHUNK_NEVER &&
279 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS ||
377 int keep=png_handle_as_unknown(png_ptr, up->name); local
378 if (keep != PNG_HANDLE_CHUNK_NEVER &&
380 ((up->name[3] & 0x20) || keep == PNG_HANDLE_CHUNK_ALWAYS |
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 126 abstract protected void deleteMessagesForThread(Context context, long threadId, int keep);
191 protected void deleteMessagesForThread(Context context, long threadId, int keep) {
208 int numberToDelete = count - keep;
210 Log.v(TAG, "SMS: deleteMessagesForThread keep: " + keep +
217 // Move to the keep limit and then delete everything older than that one.
218 cursor.move(keep);
356 int keep = getMessageLimit(context); local
357 int numberToDelete = count - keep;
359 Log.v(TAG, "MMS: deleteOldMessagesByUri keep: " + keep
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackagesDiffLogic.java 115 // Keep track of the max api seen
118 // keep track of what platform is currently installed (that is, has at least
350 public void keep(Package pkg) { method in class:PackagesDiffLogic.UpdateOp
354 public void keep(PkgItem item) { method in class:PackagesDiffLogic.UpdateOp
358 public void keep(PkgCategory cat) { method in class:PackagesDiffLogic.UpdateOp
428 Set<PkgItem> keep = new HashSet<PkgItem>(); local
441 op.keep(currItem);
442 op.keep(cat);
443 keep.add(currItem);
450 keep.add(addNewItem(op, localPkg, PkgState.INSTALLED))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /frameworks/base/tools/aapt/
Resource.cpp 2354 ProguardKeepSet keep; local
    [all...]
  /external/proguard/src/proguard/gui/
ProGuardGUI.java 335 // Create the boiler plate keep panels.
361 // Create the boiler plate keep names panels.
1090 List keep = new ArrayList(); local
    [all...]
  /frameworks/base/services/java/com/android/server/
AppWidgetServiceImpl.java 1668 HashSet<String> keep = new HashSet<String>(); local
    [all...]
  /external/valgrind/main/memcheck/
mc_main.c 151 Valgrind's address space manager tries very hard to keep things below
923 Bool keep = False; local
    [all...]

Completed in 1596 milliseconds

1 2