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

1 2

  /external/clang/include/clang/Edit/
Rewriters.h 24 namespace edit { namespace in namespace:clang
EditsReceiver.h 19 namespace edit { namespace in namespace:clang
EditedSource.h 13 #include "clang/Edit/FileOffset.h"
23 namespace edit { namespace in namespace:clang
FileOffset.h 17 namespace edit { namespace in namespace:clang
Commit.h 13 #include "clang/Edit/FileOffset.h"
22 namespace edit { namespace in namespace:clang
33 struct Edit {
54 SmallVector<Edit, 8> CachedEdits;
109 typedef SmallVectorImpl<Edit>::const_iterator edit_iterator;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user_mock.py 47 def edit(self, files): member in class:MockUser
user.py 125 def edit(self, files): member in class:User
145 self.edit(files)
  /external/chromium_org/third_party/leveldatabase/src/db/
version_edit_test.cc 10 static void TestEncodeDecode(const VersionEdit& edit) {
12 edit.EncodeTo(&encoded);
25 VersionEdit edit; local
27 TestEncodeDecode(edit);
28 edit.AddFile(3, kBig + 300 + i, kBig + 400 + i,
31 edit.DeleteFile(4, kBig + 700 + i);
32 edit.SetCompactPointer(i, InternalKey("x", kBig + 900 + i, kTypeValue));
35 edit.SetComparatorName("foo");
36 edit.SetLogNumber(kBig + 100);
37 edit.SetNextFile(kBig + 200)
    [all...]
leveldb_main.cc 111 VersionEdit edit; local
112 Status s = edit.DecodeFrom(record);
117 printf("%s", edit.DebugString().c_str());
version_set.h 173 // Apply *edit to the current version to form a new descriptor that
178 Status LogAndApply(VersionEdit* edit, port::Mutex* mu)
332 VersionEdit* edit() { return &edit_; } function in class:leveldb::Compaction
347 // Add all inputs to this compaction as delete operations to *edit.
348 void AddInputDeletions(VersionEdit* edit);
version_set.cc 655 // Apply all of the edits in *edit to the current state.
656 void Apply(VersionEdit* edit) {
658 for (size_t i = 0; i < edit->compact_pointers_.size(); i++) {
659 const int level = edit->compact_pointers_[i].first;
661 edit->compact_pointers_[i].second.Encode().ToString();
665 const VersionEdit::DeletedFileSet& del = edit->deleted_files_;
675 for (size_t i = 0; i < edit->new_files_.size(); i++) {
676 const int level = edit->new_files_[i].first;
677 FileMetaData* f = new FileMetaData(edit->new_files_[i].second);
811 Status VersionSet::LogAndApply(VersionEdit* edit, port::Mutex* mu)
939 VersionEdit edit; local
1058 VersionEdit edit; local
    [all...]
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
InMemorySharedPreferences.java 108 public SharedPreferences.Editor edit() { method in class:InMemorySharedPreferences
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationPreferences.java 31 * To write a preference, first call {@link #edit} to obtain a {@link EditContext}. Then, make
32 * one or more calls to a {@code set...} method, providing the same edit context to each call.
46 mEditor = PreferenceManager.getDefaultSharedPreferences(mContext).edit();
88 public EditContext edit() { method in class:InvalidationPreferences
  /external/clang/lib/Edit/
EditedSource.cpp 10 #include "clang/Edit/EditedSource.h"
13 #include "clang/Edit/Commit.h"
14 #include "clang/Edit/EditsReceiver.h"
20 using namespace edit;
222 for (edit::Commit::edit_iterator
224 const edit::Commit::Edit &edit = *I; local
225 switch (edit.Kind) {
226 case edit::Commit::Act_Insert
    [all...]
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 34 * is found, <code>edit()</code> is called in <code>ExprEdit</code>.
35 * <code>edit()</code> can inspect and modify the given expression.
37 * <code>edit()</code> does nothing, the original method body is not
45 * public void edit(MethodCall m) throws CannotCompileException {
97 edit(h);
191 edit((MethodCall)expr); method
197 edit((FieldAccess)expr); method
211 edit((NewExpr)expr); method
219 edit(ccall);
223 edit(mcall)
232 edit((NewArray)expr); method
236 edit((Instanceof)expr); method
240 edit((Cast)expr); method
262 public void edit(NewExpr e) throws CannotCompileException {} method in class:ExprEditor
271 public void edit(NewArray a) throws CannotCompileException {} method in class:ExprEditor
278 public void edit(MethodCall m) throws CannotCompileException {} method in class:ExprEditor
290 public void edit(ConstructorCall c) throws CannotCompileException {} method in class:ExprEditor
297 public void edit(FieldAccess f) throws CannotCompileException {} method in class:ExprEditor
303 public void edit(Instanceof i) throws CannotCompileException {} method in class:ExprEditor
309 public void edit(Cast c) throws CannotCompileException {} method in class:ExprEditor
315 public void edit(Handler h) throws CannotCompileException {} method in class:ExprEditor
    [all...]
  /external/e2fsprogs/debugfs/
set_fields.c 700 void *edit, *target; local
713 edit = &set_gd4;
717 edit = &set_gd;
747 memcpy(edit, target, size);
749 memcpy(target, edit, size);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/invalidation/
InvalidationControllerTest.java 217 InvalidationPreferences.EditContext edit = invalidationPreferences.edit(); local
224 invalidationPreferences.setSyncTypes(edit, storedModelTypes);
226 invalidationPreferences.setAccount(edit, storedAccount);
227 invalidationPreferences.commit(edit);
260 InvalidationPreferences.EditContext edit = invalidationPreferences.edit(); local
263 invalidationPreferences.setSyncTypes(edit, storedModelTypes);
265 invalidationPreferences.setAccount(edit, storedAccount);
266 invalidationPreferences.commit(edit);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseMultipleFieldsDateAndTimeInputType.cpp 216 if (DateTimeEditElement* edit = dateTimeEditElement())
217 edit->focusIfNoFocus();
229 if (DateTimeEditElement* edit = dateTimeEditElement())
230 return edit->hasFocusedField();
236 if (DateTimeEditElement* edit = dateTimeEditElement())
237 edit->stepDown();
242 if (DateTimeEditElement* edit = dateTimeEditElement())
243 edit->stepUp();
264 DateTimeEditElement* edit = this->dateTimeEditElement(); local
265 if (!edit)
395 DateTimeEditElement* edit = dateTimeEditElement(); local
448 DateTimeEditElement* edit = dateTimeEditElement(); local
477 DateTimeEditElement* edit = dateTimeEditElement(); local
496 DateTimeEditElement* edit = dateTimeEditElement(); local
510 DateTimeEditElement* edit = dateTimeEditElement(); local
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_model.cc 20 // Edit holds state information to undo/redo editing changes. Editing operations
22 // Commit() marks an edit as an independent operation that shouldn't be merged.
23 class Edit {
31 virtual ~Edit() {}
33 // Revert the change made by this edit in |model|.
40 // Apply the change of this edit to the |model|.
47 // Try to merge the |edit| into this edit and returns true on success. The
48 // merged edit will be deleted after redo and should not be reused.
49 bool Merge(const Edit* edit)
684 Edit* edit = new DeleteEdit(mergeable, old_text, old_text_start, backward); local
710 Edit* edit = new ReplaceEdit(merge_type, local
726 Edit* edit = new InsertEdit(mergeable, new_text, GetCursorPosition()); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit is in progres
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit is in progres
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit is in progres
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
    [all...]
  /external/chromium_org/media/formats/mp4/
box_definitions.h 142 struct MEDIA_EXPORT Edit : Box {
143 DECLARE_BOX_METHODS(Edit);
282 Edit edit; member in struct:media::mp4::Track

Completed in 665 milliseconds

1 2