Searched defs:edit (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/include/clang/Edit/
H A DRewriters.h24 namespace edit { namespace in namespace:clang
H A DEditsReceiver.h19 namespace edit { namespace in namespace:clang
H A DEditedSource.h23 namespace edit { namespace in namespace:clang
H A DFileOffset.h17 namespace edit { namespace in namespace:clang
H A DCommit.h22 namespace edit { namespace in namespace:clang
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dstringquery.h25 QLineEdit *edit; member in class:StringQuery
H A Dnetworkconfig.cpp457 void NetworkConfig::writeWepKey(int network_id, QLineEdit *edit, int id) argument
464 if (!edit->isEnabled() || edit->text().isEmpty())
471 txt = edit->text().toAscii().constData();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Duser_mock.py47 def edit(self, files): member in class:MockUser
H A Duser.py125 def edit(self, files): member in class:User
145 self.edit(files)
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_edit_test.cc10 static void TestEncodeDecode(const VersionEdit& edit) { argument
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
[all...]
H A Dleveldb_main.cc111 VersionEdit edit; local
112 Status s = edit.DecodeFrom(record);
117 printf("%s", edit.DebugString().c_str());
H A Dversion_set.h173 // 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);
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DInMemorySharedPreferences.java108 public SharedPreferences.Editor edit() { method in class:InMemorySharedPreferences
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
H A DInvalidationPreferences.java31 * 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/javassist/src/main/javassist/expr/
H A DExprEditor.java34 * 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);
197 edit((FieldAccess)expr);
211 edit((NewExpr)expr);
219 edit(ccall);
223 edit(mcal
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/clang/lib/Edit/
H A DEditedSource.cpp20 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:
227 commitInsert(edit.OrigLoc, edit.Offset, edit.Text, edit
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
H A DTestSharedPreferences.java74 public Editor edit() { method in class:TestSharedPreferences
/external/e2fsprogs/debugfs/
H A Dset_fields.c700 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/third_party/WebKit/Source/core/html/forms/
H A DBaseMultipleFieldsDateAndTimeInputType.cpp216 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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java61 * <p>Clients call {@link #edit} to create or update the values of an entry. An
63 * edited then {@link #edit} will return null.
72 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
82 * an error occurs while writing a cache value, the edit will fail silently.
154 * a sequence number each time an edit is committed. A snapshot is stale if
442 * edit is in progress.
444 public Editor edit(String key) throws IOException { method in class:DiskLruCache
445 return edit(key, ANY_SEQUENCE_NUMBER);
448 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
460 return null; // Another edit i
683 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/glide/third_party/disklrucache/
H A Ddisklrucache-2.0.2.jar ... public com.jakewharton.disklrucache.DiskLruCache$Editor edit () throws java.io.IOException public java.io ...
/external/chromium_org/media/formats/mp4/
H A Dbox_definitions.h282 Edit edit; member in struct:media::mp4::Track
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield_model.cc22 // Commit() marks an edit as an independent operation that shouldn't be merged.
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) { argument
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
53 // and should not be merged with the replace edit
108 MergeReplace(const Edit* edit) argument
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
733 AddOrMergeEditHistory(Edit* edit) argument
[all...]
/external/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1355 void InlineSpiller::spill(LiveRangeEdit &edit) { argument
1357 Edit = &edit;
1358 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1361 Original = VRM.getOriginal(edit.getReg());
1366 << MRI.getRegClass(edit.getReg())->getName()
1367 << ':' << edit.getParent()
1369 assert(edit.getParent().isSpillable() &&

Completed in 718 milliseconds

12