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

1 2 3 45 6 7 8 91011

  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Edit/
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;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Edit/
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;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Edit/
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;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Edit/
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;
  /system/core/libutils/
String16.cpp 358 char16_t* edit = NULL; local
362 if (!edit) {
363 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
367 edit = (char16_t*)buf->data();
368 mString = str = edit;
370 edit[i] = tolower((char)v);
380 char16_t* edit = NULL; local
383 if (!edit) {
384 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
388 edit = (char16_t*)buf->data()
    [all...]
  /frameworks/multidex/library/src/androidx/multidex/
MultiDexExtractor.java 322 SharedPreferences.Editor edit = prefs.edit(); local
323 edit.putLong(keyPrefix + KEY_TIME_STAMP, timeStamp);
324 edit.putLong(keyPrefix + KEY_CRC, crc);
325 edit.putInt(keyPrefix + KEY_DEX_NUMBER, extractedDexes.size() + 1);
329 edit.putLong(keyPrefix + KEY_DEX_CRC + extractedDexId, dex.crc);
330 edit.putLong(keyPrefix + KEY_DEX_TIME + extractedDexId, dex.lastModified());
336 edit.commit();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapUtils.java 166 Editor edit = pref.edit(); local
167 edit.putLong("primary", sPrimaryVersionCounter);
168 edit.putLong("secondary", sSecondaryVersionCounter);
169 edit.putLong("dbIdentifier", dbIdentifier);
170 edit.putLong("totalContacts", sTotalContacts);
171 edit.putLong("lastUpdatedTimestamp", sContactsLastUpdated);
172 edit.putLong("totalFields", sTotalFields);
173 edit.putLong("totalSvcFields", sTotalSvcFields);
174 edit.apply()
    [all...]
  /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;
274 for (edit::Commit::edit_iterator
276 const edit::Commit::Edit &edit = *I; local
277 switch (edit.Kind) {
278 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/python/cpython2/Lib/idlelib/
TreeWidget.py 266 self.edit(event)
270 def edit(self, event=None): member in class:TreeNode
  /external/python/cpython3/Lib/idlelib/
tree.py 267 self.edit(event)
271 def edit(self, event=None): member in class:TreeNode
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/
TestSharedPreferences.java 74 public Editor edit() { method in class:TestSharedPreferences
  /frameworks/base/core/java/android/webkit/
JsDialogHelper.java 119 EditText edit = ((EditText) view.findViewById(com.android.internal.R.id.value)); local
120 edit.setText(mDefaultValue);
121 builder.setPositiveButton(positiveTextId, new PositiveListener(edit));
146 public PositiveListener(EditText edit) {
147 mEdit = edit;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
SharedPreferencesLogger.java 92 public Editor edit() { method in class:SharedPreferencesLogger
  /packages/apps/EmergencyInfo/tests/unit/src/com/android/emergency/edit/
EditInfoActivityTest.java 16 package com.android.emergency.edit;
68 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().clear().commit();
73 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().clear().commit();
82 // Because the initial state of each preference is empty, the edit activity removes the
104 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString(
106 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString(
108 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString(
110 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString(
112 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString(
114 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().putString
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
TreeWidget.py 265 self.edit(event)
269 def edit(self, event=None): member in class:TreeNode
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
TreeWidget.py 265 self.edit(event)
269 def edit(self, event=None): member in class:TreeNode
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 265 self.edit(event)
269 def edit(self, event=None): member in class:TreeNode
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 265 self.edit(event)
269 def edit(self, event=None): member in class:TreeNode

Completed in 879 milliseconds

1 2 3 45 6 7 8 91011