/frameworks/base/core/java/com/android/internal/view/menu/ |
IconMenuItemView.java | 245 protected void onTextChanged(CharSequence text, int start, int before, int after) { 246 super.onTextChanged(text, start, before, after);
|
/frameworks/base/core/tests/coretests/ |
Android.mk | 43 # Use R_file_stamp as dependency because we want the test apks in place before the R.java is generated.
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardAbsKeyInputView.java | 119 public void onTextChanged(CharSequence s, int start, int before, int count) { 239 public void onTextChanged(CharSequence s, int start, int before, int count) {
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
Security2Test.java | 107 int before = table.get(key); local 108 table.put(key, before + 1);
|
/libcore/luni/src/test/java/tests/api/java/lang/ |
ProcessManagerTest.java | 186 int before = countLines(process); local 196 assertEquals(before, after);
|
/ndk/tests/build/topological-sort/jni/ |
Android.mk | 55 # IMPORTANT: foo must appear before bar here.
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapActivity.java | 275 public void beforeTextChanged(CharSequence s, int start, int before, int after) { 278 public void onTextChanged(CharSequence s, int start, int before, int count) {
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntitySet.java | 73 final Entity before = iterator.next(); local 74 final EntityDelta entity = EntityDelta.fromBefore(before); 100 // No local entry before, so insert 110 * the "before" {@link Entity} states into the modified state which all
|
EntityDelta.java | 82 * starting point; the "before" snapshot. 84 public static EntityDelta fromBefore(Entity before) { 86 entity.mValues = ValuesDelta.fromBefore(before.getEntityValues()); 88 for (NamedContentValues namedValues : before.getSubValues()) { 96 * "before" state represented by this {@link EntityDelta}, discarding any 129 // No local entry before, so insert 247 // Requesting an "insert" entry, which has no "before" 345 * "before" state hasn't changed. This is maintained separately so that all 346 * asserts can take place before any updates occur. 366 * current "before" {@link Entity} state into the modified state which thi [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
UserDictionaryToolsEdit.java | 147 /* save the word's information before this edit */ 187 public void onTextChanged(CharSequence s, int start, int before, int count) { 203 public void onTextChanged(CharSequence s, int start, int before, int count) {
|
/sdk/files/ |
post_tools_install.bat | 26 rem Grab current directory before we change it
|
/external/linux-tools-perf/util/ |
map.c | 413 struct map *before = map__clone(pos); local 415 if (before == NULL) { 420 before->end = map->start - 1; 421 map_groups__insert(self, before); 423 map__fprintf(before, fp);
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afcjk.c | 1975 AF_Edge before, after; local [all...] |
/external/freetype/src/autofit/ |
afcjk.c | 1980 AF_Edge before, after; local [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactModifierTests.java | 180 final RawContact before = new RawContact(contact); local 182 before.addDataItemValues(values); 184 return RawContactDelta.fromBefore(before); 445 // Build "before" that has empty row 447 final ContentValues before = new ContentValues(); local 448 before.put(Data._ID, TEST_ID); 449 before.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 450 state.addEntry(ValuesDelta.fromBefore(before)); 469 // Build "before" that has row with some phone number 470 final ContentValues before = new ContentValues() local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
utxttest.cpp | 157 // The test string is unescaped before use. 1137 before = UTEXT_INITIALIZER, local 1185 before = UTEXT_INITIALIZER, local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pickletools.py | 79 long integers (before protocol 2, the only ways to pickle a Python long 99 "text mode" before Python 2.3. The entire pickle bytestream is made up of 105 "binary mode" before Python 2.3. This added many opcodes with arguments 141 as describing unpickling in Python 2.2 and before. 841 # what the stack looks like before this opcode runs; a list [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pickletools.py | 79 long integers (before protocol 2, the only ways to pickle a Python long 99 "text mode" before Python 2.3. The entire pickle bytestream is made up of 105 "binary mode" before Python 2.3. This added many opcodes with arguments 141 as describing unpickling in Python 2.2 and before. 841 # what the stack looks like before this opcode runs; a list [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/css/ |
bootstrap-responsive.css | 15 .clearfix:before, 206 .row:before, 299 .row-fluid:before, 442 .row:before, 535 .row-fluid:before, 774 .nav-collapse .dropdown-menu:before,
|
/external/chromium_org/third_party/skia/src/views/ |
SkWidgets.cpp | 126 // override in subclass to add any additional fields before posting 360 SkScalar before, after; local 361 (void)fPaint.measureText(0, NULL, &before, &after); 363 this->setHeight(lines * (after - before) + fMargin.fY * 2);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
low_level_alloc.cc | 446 AllocList *before = &arena->freelist; // predecessor of s local 447 while ((s = Next(i, before, arena)) != 0 && s->header.size < req_rnd) { 448 before = s; 454 // we unlock before mmap() both because mmap() may call a callback hook,
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
low_level_alloc.cc | 446 AllocList *before = &arena->freelist; // predecessor of s local 447 while ((s = Next(i, before, arena)) != 0 && s->header.size < req_rnd) { 448 before = s; 454 // we unlock before mmap() both because mmap() may call a callback hook,
|
/external/skia/src/views/ |
SkWidgets.cpp | 126 // override in subclass to add any additional fields before posting 360 SkScalar before, after; local 361 (void)fPaint.measureText(0, NULL, &before, &after); 363 this->setHeight(lines * (after - before) + fMargin.fY * 2);
|
/external/valgrind/main/coregrind/ |
m_libcsignal.c | 248 ULong before[2]; 267 vg_assert(oldactCopy.before[0] == 0x5555555555555555ULL); 268 vg_assert(oldactCopy.before[1] == 0x5555555555555555ULL); 383 - Restore the handler for the signal to whatever it was before. 468 /* Restore signal's handler to whatever it was before */
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
RawContactDelta.java | 87 * starting point; the "before" snapshot. 89 public static RawContactDelta fromBefore(RawContact before) { 91 rawContactDelta.mValues = ValuesDelta.fromBefore(before.getValues()); 93 for (final ContentValues values : before.getContentValues()) { 101 * "before" state represented by this {@link RawContactDelta}, discarding any 134 // No local entry before, so insert 299 // Requesting an "insert" entry, which has no "before" 400 * "before" state hasn't changed. This is maintained separately so that all 401 * asserts can take place before any updates occur. 421 * current "before" {@link Entity} state into the modified state which thi [all...] |