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

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMissingTokenException.h 37 id<ANTLRToken> inserted; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMissingTokenException.h 37 id<ANTLRToken> inserted; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMissingTokenException.h 37 id<ANTLRToken> inserted; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMissingTokenException.h 37 id<ANTLRToken> inserted; variable
51 @property (retain) id<ANTLRToken> inserted; variable
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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/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);
  /external/valgrind/main/VEX/priv/
guest_s390_helpers.c 588 Int inserted = 0; local
592 inserted |= cc_dep1 & 0xff;
596 inserted |= cc_dep1 & 0xff00;
600 inserted |= cc_dep1 & 0xff0000;
604 inserted |= cc_dep1 & 0xff000000;
608 if (inserted & msb) // MSB is 1
610 if (inserted > 0)
923 /* Select the bits that were inserted */
926 /* cc == 0 --> all inserted bits zero or mask == 0 (cond == 8)
927 cc == 1 --> leftmost inserted bit is one (cond == 4
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/calllog/
FillCallLogTestActivity.java 251 * @return the number of inserted entries
254 int inserted = 0; local
290 ++inserted;
291 this.publishProgress(inserted);
296 return inserted;
303 * @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/clang/lib/ARCMigrate/
ARCMT.cpp 435 bool &inserted = Uniquer[RI->first]; local
436 if (inserted)
438 inserted = true;
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 206 Uri inserted = ContentUris.withAppendedId(uri, id); local
207 getContext().getContentResolver().notifyChange(inserted, null, false);
208 return inserted;
  /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/clang/lib/CodeGen/
CGStmt.cpp 282 bool inserted = false; local
287 inserted = true;
292 if (!inserted)
    [all...]
CGCall.cpp 367 bool inserted = FunctionsBeingProcessed.insert(FI); (void)inserted; local
368 assert(inserted && "Recursively being processed?");
781 bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted;
782 assert(Inserted && "Recursively being processed?");
    [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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /external/guava/guava/lib/
jdiff.jar 

Completed in 796 milliseconds

1 2