Searched defs:edit (Results 1 - 25 of 42) 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.h25 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.cpp458 void NetworkConfig::writeWepKey(int network_id, QLineEdit *edit, int id) argument
465 if (!edit->isEnabled() || edit->text().isEmpty())
472 txt = edit->text().toLocal8Bit().constData();
/external/python/cpython2/Lib/curses/
H A Dtextpad.py164 def edit(self, validate=None): member in class:Textbox
185 return Textbox(win).edit()
/external/autotest/frontend/client/src/autotest/tko/
H A DFilterStringViewer.java38 private Button edit = new Button(EDIT_FILTER_STRING); field in class:FilterStringViewer
46 edit.addClickHandler(new ClickHandler() {
62 viewerHeaderPanel.add(edit);
145 edit.setText(EDIT_FILTER_STRING);
152 edit.setText(UNEDIT_FILTER_STRING);
/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;
274 for (edit::Commit::edit_iterator
276 const edit::Commit::Edit &edit = *I; local
277 switch (edit.Kind) {
278 case edit::Commit::Act_Insert:
279 commitInsert(edit.OrigLoc, edit.Offset, edit.Text, edit
[all...]
/external/python/cpython2/Lib/idlelib/
H A DTreeWidget.py266 self.edit(event)
270 def edit(self, event=None): member in class:TreeNode
/external/robolectric/v1/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.c796 void *edit, *target; local
809 edit = &set_gd4;
813 edit = &set_gd;
843 memcpy(edit, target, size);
845 memcpy(target, edit, size);
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DDiskLruCache.java60 * <p>Clients call {@link #edit} to create or update the values of an entry. An
62 * edited then {@link #edit} will return null.
71 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
81 * an error occurs while writing a cache value, the edit will fail silently.
152 * a sequence number each time an edit is committed. A snapshot is stale if
438 * edit is in progress.
440 public Editor edit(String key) throws IOException { method in class:DiskLruCache
441 return edit(key, ANY_SEQUENCE_NUMBER);
444 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
455 return null; // Another edit i
684 public Editor edit() throws IOException { method in class:DiskLruCache.Value
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java63 * <p>Clients call {@link #edit} to create or update the values of an entry. An
65 * edited then {@link #edit} will return null.
74 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
84 * an error occurs while writing a cache value, the edit will fail silently.
161 * a sequence number each time an edit is committed. A snapshot is stale if
443 * edit is in progress.
445 public Editor edit(String key) throws IOException { method in class:DiskLruCache
446 return edit(key, ANY_SEQUENCE_NUMBER);
449 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
460 return null; // Another edit i
788 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jar ... MalformedTreeException org.eclipse.text.edits.CopyTargetEdit edit public org.eclipse.text.edits.ISourceModifier ...
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DInlineSpiller.cpp1251 void InlineSpiller::spill(LiveRangeEdit &edit) { argument
1253 Edit = &edit;
1254 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1257 Original = VRM.getOriginal(edit.getReg());
1262 << MRI.getRegClass(edit.getReg())->getName()
1263 << ':' << edit.getParent() << "\nFrom original "
1265 assert(edit.getParent().isSpillable() &&
/external/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1020 void InlineSpiller::spill(LiveRangeEdit &edit) { argument
1022 Edit = &edit;
1023 assert(!TargetRegisterInfo::isStackSlot(edit.getReg())
1026 Original = VRM.getOriginal(edit.getReg());
1031 << TRI.getRegClassName(MRI.getRegClass(edit.getReg()))
1032 << ':' << edit.getParent()
1034 assert(edit.getParent().isSpillable() &&
/external/googletest/googletest/src/
H A Dgtest.cc1132 void PushLine(char edit, const char* line) { argument
1133 switch (edit) {
1208 // Find first edit.
1231 // There is no next edit or it is too far away.
1236 EditType edit = edits[edit_i]; local
1238 n_suffix = edit == kMatch ? n_suffix + 1 : 0;
1240 if (edit == kMatch || edit == kRemove || edit == kReplace) {
1241 hunk.PushLine(edit
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest.cc1135 void PushLine(char edit, const char* line) { argument
1136 switch (edit) {
1211 // Find first edit.
1234 // There is no next edit or it is too far away.
1239 EditType edit = edits[edit_i]; local
1241 n_suffix = edit == kMatch ? n_suffix + 1 : 0;
1243 if (edit == kMatch || edit == kRemove || edit == kReplace) {
1244 hunk.PushLine(edit
[all...]
/external/python/cpython2/Lib/lib-tk/
H A DTkinter.py3023 def edit(self, *args): member in class:Text
3029 follows the edit argument. The following forms
3036 return self.tk.call(self._w, 'edit', *args)
3042 flag of the widget. The insert, delete, edit undo and
3043 edit redo commands or the user can set or clear the
3047 return self.edit("modified", arg)
3050 """Redo the last undone edit
3057 return self.edit("redo")
3062 return self.edit("reset")
3069 return self.edit("separato
[all...]
/external/v8/testing/gtest/src/
H A Dgtest.cc1135 void PushLine(char edit, const char* line) { argument
1136 switch (edit) {
1211 // Find first edit.
1234 // There is no next edit or it is too far away.
1239 EditType edit = edits[edit_i]; local
1241 n_suffix = edit == kMatch ? n_suffix + 1 : 0;
1243 if (edit == kMatch || edit == kRemove || edit == kReplace) {
1244 hunk.PushLine(edit
[all...]
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...

Completed in 1478 milliseconds

12