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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MissingTokenException.as 5 public var inserted:Object;
7 public function MissingTokenException(expecting:int, input:IntStream, inserted:Object) {
9 this.inserted = inserted;
17 if ( inserted!=null && token!=null ) {
18 return "MissingTokenException(inserted "+inserted+" at "+token.text+")";
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MissingTokenException.js 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) {
5 this.inserted = inserted;
17 if (org.antlr.lang.isValue(this.inserted) &&
20 return "MissingTokenException(inserted "+this.inserted+" at "+this.token.getText()+")";
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
brokw-1.s 8 ; Short jump around secondary jump table inserted here :
12 ; Secondary jump table inserted here :
brokw-2.s 9 ; Short jump around secondary jump table inserted here :
13 ; Secondary jump table inserted here :
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MissingTokenException.pm 10 has 'inserted' => (
23 if (defined (my $inserted = $self->inserted) && defined (my $token = $self->token)) {
24 return "MissingTokenException(inserted $inserted at " . $token->get_text() . ")";
  /external/llvm/test/CodeGen/ARM/
legalize-unaligned-load.ll 21 %inserted.real = insertvalue { float, float } undef, float %arg.val.0, 0
22 %inserted.imag = insertvalue { float, float } %inserted.real, float %arg.val.1, 1
30 %inserted.real.1 = insertvalue { float, float } undef, float %.18, 0
31 %inserted.imag.1 = insertvalue { float, float } %inserted.real.1, float %.20, 1
32 store { float, float } %inserted.imag, { float, float }* %.16, align 1
33 store { float, float } %inserted.imag.1, { float, float }* %retptr, align 4
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/symver/
symver0.d 4 # The #... and #pass are there to match extra symbols inserted by
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
farcall-group3.s 2 @ and that stubs are correctly inserted between input sections
rodata-merge-map1.s 1 @ Test to ensure that no nameless mapping symbol is inserted
  /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()+")";
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MissingTokenException.cs 59 public MissingTokenException(int expecting, IIntStream input, object inserted)
60 : this(expecting, input, inserted, null) {
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
65 this._inserted = inserted;
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
70 this._inserted = inserted;
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
75 this._inserted = inserted;
90 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")";
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MissingTokenException.cs 64 public MissingTokenException(int expecting, IIntStream input, object inserted)
65 : this(expecting, input, inserted, null)
69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
72 this._inserted = inserted;
75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
78 this._inserted = inserted;
81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
84 this._inserted = inserted;
104 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")";
  /external/llvm/test/MC/Mips/
micromips-pc16-fixup.s 7 .space 65536 - 8, 1 # -8 = size of b instr plus size of automatically inserted nop
mips-pc16-fixup.s 7 .space 131072 - 8, 1 # -8 = size of b instr plus size of automatically inserted nop
  /external/llvm/test/Transforms/LoopSimplify/
basictest.ll 3 ; This function should get a preheader inserted before BB3, that is jumped
  /external/opencv3/samples/winrt/JavaScript/sample-utils/
scenario-select.html 11 <!-- scenario list is inserted here -->
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
struct.d 5 # The #... is there to match extra symbols inserted by
  /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:Mr.Foo)(2:MrFoo)(1:Foo.Mr)(2:FooMr)", 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/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMissingTokenException.m 61 inserted = insertedToken;
73 if ( inserted != nil && token != nil ) {
74 return [NSString stringWithFormat:@"MissingTokenException(inserted %@ at %@)", inserted, token.text];
82 @synthesize inserted;
  /external/deqp/framework/delibs/depool/
dePoolSet.c 49 deBool inserted = deInBounds32(i, 0, 5000); local
51 DE_TEST_ASSERT(found == inserted);
61 deBool inserted = deInBounds32(i, 1000, 5000); local
63 DE_TEST_ASSERT(found == inserted);
74 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); local
76 DE_TEST_ASSERT(found == inserted);
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ListChangeRegistry.java 32 private static final int INSERTED = 2;
46 case INSERTED:
85 * Notify registered callbacks that elements were inserted.
88 * @param start The index where the elements were inserted.
89 * @param count The number of elements that were inserted.
93 notifyCallbacks(list, INSERTED, listChanges);
  /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/javassist/src/main/javassist/bytecode/
CodeIterator.java 74 * when code blocks are inserted.
75 * If a code block is inclusively inserted at the position of the
76 * bytecode, the mark is set to the inserted code block.
306 * then the bytecode is inserted within that block.
308 * <p>An extra gap may be inserted at the end of the inserted
312 * @param code inserted bytecode sequence.
314 * inserted byte sequence.
329 * then the bytecode is inserted within that block.
331 * <p>An extra gap may be inserted at the end of the inserte
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Messages.java 45 * @param binding the object to be inserted into the message
56 * @param binding1 An object to be inserted into the message
57 * @param binding2 A second object to be inserted into the message
68 * @param bindings An array of objects to be inserted into the message
  /external/llvm/test/CodeGen/X86/
TruncAssertZext.ll 2 ; Checks that a zeroing mov is inserted for the trunc/zext pair even when

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>