HomeSort by relevance Sort by last modified time
    Searched defs:Delete (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /external/lzma/CPP/Common/
MyString.h 116 Delete(0, (int)(p - _chars));
136 Delete(i, _length - i);
177 delete []_chars;
229 ~CStringBase() { delete []_chars; }
421 Delete(0, p - _chars);
460 Delete(i, _length - i);
522 Delete(pos, oldStringLength);
529 int Delete(int index, int count = 1)
540 void DeleteBack() { Delete(_length - 1); }
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_EditCtrl.cpp 211 Delete();
317 Delete();
603 void CPWL_EditCtrl::Delete()
606 m_pEdit->Delete();
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_unittest.cc 269 // A helper class to create/delete/check a Chrome desktop shortcut on Windows.
279 void Delete();
294 Delete();
331 void ShortcutHandler::Delete() {
356 void ShortcutHandler::Delete() {
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille_key_types.js 117 'Delete': 46
  /external/chromium_org/sql/
connection.cc 261 // TODO(shess): Calling "PRAGMA journal_mode = DELETE" at this point
262 // will delete the -journal file. For ChromiumOS or other more
543 // (to prevent other processes from opening it), then delete the
544 // journal files, then delete the main database file. Another option
550 bool Connection::Delete(const base::FilePath& path) {
973 // DELETE (default) - delete -journal file to commit.
    [all...]
  /external/chromium_org/third_party/re2/re2/
regexp.cc 28 // Private: use Decref() instead of delete to destroy Regexps.
40 delete name_;
43 delete[] runes_;
46 cc_->Delete();
47 delete ccb_;
56 delete this;
152 delete[] subs;
155 delete re;
170 delete[] old;
223 delete[] subcopy
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_model.cc 50 // Don't merge if previous edit is DELETE. This happens when a
52 // delete should be treated as separate edit that can be undone
238 // delete can be merged only with delete at the same position.
325 bool TextfieldModel::Delete() {
358 // Delete one code point, which may be two UTF-16 words.
492 // than beginning, unlike Delete/Backspace.
493 // TODO(oshima): Change Delete/Backspace to use DeleteSelection,
690 delete edit;
723 delete edit
    [all...]
  /external/chromium_org/v8/src/
v8natives.js 661 function Delete(obj, p, should_throw) {
895 if (!Delete(obj, index, false)) {
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field.h 165 // static void Delete(Type*);
272 static void Delete(GenericType* value) { delete value; }
298 static void Delete(string* value);
430 delete [] elements_;
574 // Avoid inlining of Reserve(): new, memcpy, and delete[] lead to a significant
585 delete [] old_elements;
622 TypeHandler::Delete(cast<TypeHandler>(elements_[i]));
625 delete [] elements_;
745 TypeHandler::Delete(cast<TypeHandler>(elements_[current_size_]))
    [all...]
  /external/regex-re2/re2/
regexp.cc 28 // Private: use Decref() instead of delete to destroy Regexps.
40 delete name_;
43 delete[] runes_;
46 cc_->Delete();
47 delete ccb_;
56 delete this;
152 delete[] subs;
155 delete re;
170 delete[] old;
223 delete[] subcopy
    [all...]
  /external/chromium_org/base/debug/
trace_event_impl.cc 43 static void Delete() {
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_database.cc 588 // Delete any files of the side-effect free sidelist that may be around
615 // Delete files on disk.
616 // TODO(shess): Hard to see where one might want to delete without a
617 // reset. Perhaps inline |Delete()|?
618 if (!Delete())
    [all...]
safe_browsing_store_file.cc 93 // FORMAT_EVENT_FOUND_SQLITE. It can differ if the delete fails,
98 // Found and deleted (or failed to delete) the ancient "Safe
204 // Delete the chunks in |deleted| from |chunks|.
666 bool SafeBrowsingStoreFile::Delete() {
821 // database files, this is a reasonable to time delete any old
835 // If the file exists but cannot be opened, try to delete it (not
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 352 // Certificate Delete overlay strings.
482 base::Bind(&CertificateManagerHandler::Delete,
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
c.cc 166 delete db->rep;
167 delete db;
185 SaveError(errptr, db->rep->Delete(options->rep, Slice(key, keylen)));
237 delete snapshot;
264 delete[] ranges;
293 delete iter->rep;
294 delete iter;
342 delete b;
359 b->rep.Delete(Slice(key, klen));
375 virtual void Delete(const Slice& key)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-internal-inl.h 330 static void Delete(T* x) {
331 delete x;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 217 // static void Delete(Type*);
336 static void Delete(GenericType* value) { delete value; }
382 static void Delete(string* value);
423 // Delete elements with indices in the range [start .. start+num-1].
578 delete [] elements_;
746 // Avoid inlining of Reserve(): new, copy, and delete[] lead to a significant
758 delete [] old_elements;
812 TypeHandler::Delete(cast<TypeHandler>(elements_[i]));
814 delete [] elements_
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
AndroidTest.java 395 // Delete channel
397 WebrtcLog("VoE delete channel failed");
405 // Delete VoiceEngine
406 Delete(); // Error logging is done in native API wrapper
490 Delete();
    [all...]
  /external/clang/lib/Parse/
Parser.cpp 374 delete OldScope;
403 // If we still have scopes active, delete the scope tree.
404 delete getCurScope();
409 delete ScopeCache[i];
773 // Check for '= delete' or '= default'
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 80 " d[NsS] - delete file(s) from the archive\n"
105 Delete, ///< Delete the specified members
197 case 'd': ++NumOperations; Operation = Delete; break;
353 case Delete:
504 if (Operation == Delete)
583 if (Operation == Delete)
876 case Delete:
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 329 static void Delete(T* x) {
330 delete x;
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 330 static void Delete(T* x) {
331 delete x;
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_bstring.cpp 386 FX_STRSIZE CFX_ByteString::Delete(FX_STRSIZE nIndex, FX_STRSIZE nCount)
    [all...]
fx_basic_wstring.cpp 740 FX_STRSIZE CFX_WideString::Delete(FX_STRSIZE nIndex, FX_STRSIZE nCount)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adojet.h 297 virtual HRESULT WINAPI Delete(VARIANT Index) = 0;
314 HRESULT (WINAPI *Delete)(Filters *This,VARIANT Index);
333 #define Filters_Delete(This,Index) (This)->lpVtbl->Delete(This,Index)

Completed in 2449 milliseconds

1 2 3 45 6 7 8