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

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
stringquery.cpp 17 edit = new QLineEdit;
18 edit->setFocus();
21 layout->addWidget(edit, 0, 1);
24 connect(edit, SIGNAL(returnPressed()), this, SLOT(accept()));
30 return edit->text();
stringquery.h 25 QLineEdit *edit; member in class:StringQuery
  /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...]
  /external/chromium_org/webkit/tools/test_shell/resources/
fonts.conf 6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
13 <edit name="family" mode="assign">
15 </edit>
22 <edit name="family" mode="assign">
24 </edit>
31 <edit name="family" mode="assign">
33 </edit>
42 <edit name="family" mode="assign">
44 </edit>
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 29 edit = self.dict[key]
30 edit.top.wakeup()
31 return edit
39 edit = self.open(filename)
40 if edit is not None and lineno is not None:
41 edit.gotoline(lineno)
47 for edit in self.inversedict.keys():
48 reply = edit.close()
53 def unregister_maybe_terminate(self, edit):
55 key = self.inversedict[edit]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 29 edit = self.dict[key]
30 edit.top.wakeup()
31 return edit
39 edit = self.open(filename)
40 if edit is not None and lineno is not None:
41 edit.gotoline(lineno)
47 for edit in self.inversedict.keys():
48 reply = edit.close()
53 def unregister_maybe_terminate(self, edit):
55 key = self.inversedict[edit]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/data/fonts/
fonts.conf 6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
13 <edit name="family" mode="assign">
15 </edit>
22 <edit name="family" mode="assign">
24 </edit>
31 <edit name="family" mode="assign">
33 </edit>
42 <edit name="family" mode="assign">
44 </edit>
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Prefs.java 29 public static SharedPreferences.Editor edit(Context context) { method in class:Prefs
30 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
  /external/chromium_org/third_party/WebKit/Source/core/html/
BaseMultipleFieldsDateAndTimeInputType.cpp 215 if (DateTimeEditElement* edit = dateTimeEditElement())
216 edit->focusIfNoFocus();
228 if (DateTimeEditElement* edit = dateTimeEditElement())
229 return edit->hasFocusedField();
235 if (DateTimeEditElement* edit = dateTimeEditElement())
236 edit->stepDown();
241 if (DateTimeEditElement* edit = dateTimeEditElement())
242 edit->stepUp();
257 DateTimeEditElement* edit = this->dateTimeEditElement(); local
258 if (!edit)
381 DateTimeEditElement* edit = dateTimeEditElement(); local
434 DateTimeEditElement* edit = dateTimeEditElement(); local
458 DateTimeEditElement* edit = dateTimeEditElement(); local
477 DateTimeEditElement* edit = dateTimeEditElement(); local
496 DateTimeEditElement* edit = dateTimeEditElement(); local
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model.cc 27 // An edit object holds enough information/state to undo/redo the
30 // mark an edit as an independent edit and it shouldn't be merged.
33 class Edit {
41 virtual ~Edit() {
44 // Revert the change made by this edit in |model|.
51 // Apply the change of this edit to the |model|.
58 // Try to merge the |edit| into this edit. Returns true if merge was
59 // successful, or false otherwise. Merged edit will be deleted afte
713 Edit* edit = new DeleteEdit(mergeable, text, old_text_start, backward); local
738 Edit* edit = new ReplaceEdit(merge_type, local
754 Edit* edit = new InsertEdit(mergeable, text, GetCursorPosition()); local
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.css 21 .edit-mode-border {
45 /* The point of edit-bar-wrapper is to clip the edit bar. Otherwise it can show
48 .edit-bar-wrapper {
54 /* The edit bar appears on hover. */
55 .edit-bar {
74 .most-visited:focus .edit-bar,
75 .most-visited:hover .edit-bar {
79 .most-visited:hover .edit-bar {
80 /* Delay the appearance of the edit bar on hover. *
    [all...]
  /external/scrypt/
build-config.mk 1 # Auto-generated - DO NOT EDIT!
2 # To regenerate, edit scrypt.config, then run:
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
CommonPreferences.java 30 final SharedPreferences.Editor editor = pref.edit();
36 final SharedPreferences.Editor editor = pref.edit();
  /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...]
  /packages/apps/Email/src/com/android/email/
Preferences.java 115 getPreferences(context).mSharedPreferences.edit().remove(ACCOUNT_UUIDS).apply();
119 mSharedPreferences.edit().putBoolean(ENABLE_DEBUG_LOGGING, value).apply();
127 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_LOGGING, value).apply();
135 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_FILE_LOGGING, value).apply();
143 mSharedPreferences.edit().putBoolean(INHIBIT_GRAPHICS_ACCELERATION, value).apply();
151 mSharedPreferences.edit().putBoolean(FORCE_ONE_MINUTE_REFRESH, value).apply();
159 mSharedPreferences.edit().putBoolean(ENABLE_STRICT_MODE, value).apply();
175 mSharedPreferences.edit().putString(DEVICE_UID, result).apply();
185 mSharedPreferences.edit().putInt(ONE_TIME_INITIALIZATION_PROGRESS, progress).apply();
193 mSharedPreferences.edit().putInt(AUTO_ADVANCE_DIRECTION, direction).apply()
    [all...]
  /external/clang/include/clang/Edit/
EditsReceiver.h 19 namespace edit { namespace in namespace:clang
Rewriters.h 24 namespace edit { namespace in namespace:clang
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchSettings.java 42 prefs.edit().putString(PREF_RESEARCH_LOGGER_UUID, newUuid).apply();
52 prefs.edit().putBoolean(PREF_RESEARCH_LOGGER_ENABLED_FLAG, isEnabled).apply();
61 prefs.edit().putBoolean(PREF_RESEARCH_LOGGER_HAS_SEEN_SPLASH, hasSeenSplash).apply();
70 prefs.edit().putLong(PREF_RESEARCH_LAST_DIR_CLEANUP_TIME, lastDirCleanupTime).apply();
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 71 .edit-bar {
90 .edit-bar > * {
95 .thumbnail-container:focus .edit-bar,
96 .thumbnail-container:hover .edit-bar {
107 .edit-bar > .spacer {
111 .edit-bar > .pin,
112 .edit-bar > .remove {
119 .edit-bar > .pin {
123 .edit-bar > .pin:hover {
127 .edit-bar > .pin:active
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
autofill_edit_overlay.css 5 #autofill-edit-address-overlay {
9 #autofill-edit-credit-card-overlay {
24 #autofill-edit-address-overlay list {
30 #autofill-edit-address-overlay list div.static-text {
42 :-webkit-any(#autofill-edit-credit-card-overlay, #autofill-edit-address-overlay)
82 #autofill-edit-credit-card-overlay .content-area > *:first-child {
  /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;
224 for (edit::Commit::edit_iterator
226 const edit::Commit::Edit &edit = *I; local
227 switch (edit.Kind) {
228 case edit::Commit::Act_Insert
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchSettingsImpl.java 99 SharedPreferencesCompat.apply(getSearchPreferences().edit().putBoolean(name, value));
103 SharedPreferencesCompat.apply(getSearchPreferences().edit().putInt(name, value));
107 SharedPreferencesCompat.apply(getSearchPreferences().edit().putLong(name, value));
111 SharedPreferencesCompat.apply(getSearchPreferences().edit().putString(name, value));
115 SharedPreferencesCompat.apply(getSearchPreferences().edit().remove(name));
157 SharedPreferencesCompat.apply(prefs.edit()
206 Editor sharedPrefEditor = getSearchPreferences().edit();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete2.java 38 findViewById(R.id.edit);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwGeolocationPermissions.java 37 mSharedPreferences.edit().putBoolean(key, true).apply();
47 mSharedPreferences.edit().putBoolean(key, false).apply();
57 mSharedPreferences.edit().remove(key).apply();
69 editor = mSharedPreferences.edit();
  /external/chromium_org/tools/clang/scripts/
run_tool.py 46 Edit = collections.namedtuple(
47 'Edit', ('edit_type', 'offset', 'length', 'replacement'))
87 edits[path].append(Edit(edit_type, int(offset), int(length), replacement))
89 print 'Unable to parse edit: %s' % line
190 edits: A dict mapping filenames to Edit instances that apply to that file.
199 # subsequent edits don't need to have their offsets updated with each edit
205 for edit in reversed(v):
206 if edit == last_edit:
208 last_edit = edit
209 contents[edit.offset:edit.offset + edit.length] = edit.replacemen
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>