HomeSort by relevance Sort by last modified time
    Searched defs:inserted (Results 1 - 18 of 18) sorted by null

  /external/antlr/src/org/antlr/runtime/
MissingTokenException.java 34 public Object inserted; field in class:MissingTokenException
38 public MissingTokenException(int expecting, IntStream input, Object inserted) {
40 this.inserted = inserted;
48 if ( inserted!=null && token!=null ) {
49 return "MissingTokenException(inserted "+inserted+" at "+token.getText()+")";
BaseRecognizer.java 611 Object inserted = getMissingSymbol(input, e, ttype, follow); local
612 e = new MissingTokenException(ttype, input, inserted);
614 return inserted;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
AbsoluteLayoutRuleTest.java 46 INode inserted = dragInto( local
63 assertEquals("30dp", inserted.getStringAttr(ANDROID_URI, "layout_x"));
64 assertEquals("-10dp", inserted.getStringAttr(ANDROID_URI, "layout_y"));
67 inserted = dragInto(new Rect(0, 0, 0, 0), new Point(30, -10), 4, -1,
73 assertEquals("30dp", inserted.getStringAttr(ANDROID_URI, "layout_x"));
74 assertEquals("-10dp", inserted.getStringAttr(ANDROID_URI, "layout_y"));
  /external/oprofile/libutil++/
unique_storage.h 83 inserted = ids.insert(val); local
84 if (inserted.second)
87 return inserted.first->second;
  /external/chromium/chrome/browser/extensions/
extension_toolbar_model.cc 59 bool inserted = false; local
63 inserted = true;
68 if (!inserted) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameLookupBuilderTest.java 65 public String inserted() { method in class:NameLookupBuilderTest.TestNameLookupBuilder
87 assertEquals("", mBuilder.inserted());
92 assertEquals("(0:Foo)(2:Foo)", mBuilder.inserted());
97 assertEquals("(0:Foo)(2:Foo)", mBuilder.inserted());
102 assertEquals("(0:Foo.Bar)(2:FooBar)(1:Bar.Foo)(2:BarFoo)", mBuilder.inserted());
117 "(1:Baz.Foo.Bar)(2:BazFooBar)", mBuilder.inserted());
151 "(1:Biz.Foo.Bar.Baz)(2:BizFooBarBaz)", mBuilder.inserted());
156 assertEquals("(0:Bill)(2:Bill)(1:*William)", mBuilder.inserted());
161 assertEquals("(0:Al)(2:Al)(1:*Alex)(1:*Alice)", mBuilder.inserted());
170 "(1:Foo.*Alice)(1:*Alice.Foo)", mBuilder.inserted());
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_handler.cc 426 // Find the substring that was inserted (if any) to get the new string
429 std::string inserted = new_value.substr( local
433 if (!inserted.empty() && !deleted.empty()) {
434 // Replace one substring with another, speak inserted text.
435 AppendUtterance(inserted, out_spoken_description);
436 } else if (!inserted.empty()) {
437 // Speak inserted text.
438 AppendUtterance(inserted, out_spoken_description);
  /external/llvm/lib/Target/X86/
SSEDomainFix.cpp 382 bool inserted = false; local
384 i != e && !inserted; ++i) {
386 inserted = true;
388 inserted = true;
392 if (!inserted)
  /external/oprofile/libregex/
op_regex.cpp 218 string inserted; local
227 inserted += '\\';
239 inserted += str.substr(matched.rm_so,
244 inserted += replace[i];
251 str.replace(first, count, inserted);
  /external/stlport/test/eh/
nc_alloc.cpp 195 bool inserted = alloc_set().insert(p).second; local
197 inserted;
198 EH_ASSERT(inserted);
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 227 Uri inserted = ContentUris.withAppendedId(uri, id); local
228 getContext().getContentResolver().notifyChange(inserted, null, false);
229 return inserted;
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/calllog/
FillCallLogTestActivity.java 219 * @return the number of inserted entries
222 int inserted = 0; local
244 ++inserted;
245 this.publishProgress(inserted);
250 return inserted;
257 * @param count the number of entries inserted so far
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
UiElementPart.java 186 int inserted = insertUiAttributes(mUiElementNode, table, managedForm); local
188 if (inserted == 0) {
202 * @return The number of UI attributes inserted. It is >= 0.
  /external/jdiff/src/jdiff/
DiffMyers.java 94 The diagonal number equals the number of inserted lines minus the number
97 lines inserted or deleted (counting only lines before the midpoint).
356 /** Scan the tables of which lines are inserted and deleted,
391 /** Scan the tables of which lines are inserted and deleted,
469 and some are inserted.
473 INSERTED is the number of lines inserted here in file 1.
476 which the insertion was done; vice versa for INSERTED and LINE1. */
482 public int inserted; field in class:DiffMyers.change
487 /** Line number of 1st inserted line. *
    [all...]
  /external/webkit/Source/WebCore/editing/
ReplaceSelectionCommand.cpp 360 Position inserted = endOfInsertedContent.deepEquivalent(); local
361 bool isInsideMailBlockquote = enclosingNodeOfType(inserted, isMailBlockquote, CanCrossEditingBoundary);
362 return isInsideMailBlockquote && (numEnclosingMailBlockquotes(existing) == numEnclosingMailBlockquotes(inserted));
376 // For a successful merge, we still need to make sure that the inserted content starts with the beginning of a paragraph.
471 // Style rules that match just inserted elements could change their appearance, like
472 // a div inserted into a document with div { display:inline; }.
481 // inserted content from appearing in the right paragraph.
548 // Return the inserted content's first VisiblePosition.
731 // Merging two paragraphs will destroy the moved one's block styles. Always move the end of inserted forward
751 // FIXME: Maintain positions for the start and end of inserted content instead of keeping nodes. The nodes ar
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 478 int inserted = change(false, start + 1, start + 1, tb, tbstart, tbend); local
480 change(false, start + inserted, start + inserted + origlen, "", 0, 0);
493 off = off * inserted / (end - start);
502 off = off * inserted / (end - start);
507 sendTextChange(recipients, start, origlen, inserted);
517 * inserted at the start or end of the span's range.
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 2309 milliseconds