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

1 2 3

  /frameworks/compile/slang/
slang_rs_exportable.cpp 21 bool RSExportable::keep() { function in class:slang::RSExportable
slang_rs_export_type.cpp 827 bool RSExportType::keep() { function in class:slang::RSExportType
828 if (!RSExportable::keep())
1169 bool RSExportPointerType::keep() { function in class:slang::RSExportPointerType
1402 bool RSExportConstantArrayType::keep() { function in class:slang::RSExportConstantArrayType
1537 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;
57 /// keep - Indicate that the tool's job wrt this output file has been
59 void keep() { Installer.Keep = true; } function in class:llvm::tool_output_file
  /frameworks/compile/mclinker/lib/Support/
ToolOutputFile.cpp 29 : Keep(false), m_Path(pPath) {
40 if (!Keep && "_" != m_Path.native())
62 m_Installer.Keep = true;
80 void ToolOutputFile::keep() function in class:ToolOutputFile
82 m_Installer.Keep = true;
  /external/chromium_org/chrome/browser/policy/cloud/
resource_cache_unittest.cc 65 std::set<std::string> keep; local
66 keep.insert(kSubB);
67 keep.insert(kSubD);
68 cache.PurgeOtherSubkeys(kKey1, keep);
93 keep.clear();
94 keep.insert(kKey3);
95 cache.PurgeOtherKeys(keep);
component_cloud_policy_store_unittest.cc 283 std::set<std::string> keep; local
284 keep.insert(kTestExtension);
285 store_->Purge(POLICY_DOMAIN_EXTENSIONS, keep);
301 keep.clear();
302 store_->Purge(POLICY_DOMAIN_EXTENSIONS, keep);
  /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();
CameraHolder.java 41 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
53 private long mKeepBeforeTime; // Keep the Camera before this time.
280 public void keep() { method in class:CameraHolder
281 keep(KEEP_CAMERA_TIMEOUT);
284 public synchronized void keep(int time) { method in class:CameraHolder
  /packages/apps/Camera2/src/com/android/camera/
CameraButtonIntentReceiver.java 46 holder.keep();
CameraHolder.java 41 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
53 private long mKeepBeforeTime; // Keep the Camera before this time.
280 public void keep() { method in class:CameraHolder
281 keep(KEEP_CAMERA_TIMEOUT);
284 public synchronized void keep(int time) { method in class:CameraHolder
  /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::__anon28682
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/chromium_org/v8/src/
zone.cc 94 // Find a segment with a suitable size to keep around.
95 Segment* keep = NULL; local
97 // and freeing every segment except the one we wish to keep.
100 if (keep == NULL && current->size() <= kMaximumKeptSegmentSize) {
101 // Unlink the segment we wish to keep from the list.
102 keep = current;
103 keep->clear_next();
115 // If we have found a segment we want to keep, we must recompute the
119 if (keep != NULL) {
120 Address start = keep->start()
    [all...]
  /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 190 TreeMap<String, ClassReader> keep = new TreeMap<String, ClassReader>(); local
195 ClassReader cr = mAa.findClass("mock_android.widget.TableLayout", zipClasses, keep);
196 DependencyVisitor visitor = mAa.getVisitor(zipClasses, keep, new_keep, in_deps, out_deps);
229 keep.putAll(new_keep);
234 }, keep.keySet().toArray());
  /external/chromium_org/third_party/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/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...]
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-gradle/4.9/
proguard-gradle-4.9.jar 

Completed in 1235 milliseconds

1 2 3