Searched refs:add (Results 201 - 225 of 3272) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/gui/
H A DClassSpecificationDialog.java163 commentsPanel.add(tip(commentsScrollPane, "commentsTip"), constraintsLastStretch);
167 keepButtonGroup.add(keepClassesAndMembersRadioButton);
168 keepButtonGroup.add(keepClassMembersRadioButton);
169 keepButtonGroup.add(keepClassesWithMembersRadioButton);
175 keepOptionPanel.add(tip(keepClassesAndMembersRadioButton, "keepTip"), constraintsLastStretch);
176 keepOptionPanel.add(tip(keepClassMembersRadioButton, "keepClassMembersTip"), constraintsLastStretch);
177 keepOptionPanel.add(tip(keepClassesWithMembersRadioButton, "keepClassesWithMembersTip"), constraintsLastStretch);
184 allowOptionPanel.add(tip(allowShrinkingCheckBox, "allowShrinkingTip"), constraintsLastStretch);
185 allowOptionPanel.add(tip(allowOptimizationCheckBox, "allowOptimizationTip"), constraintsLastStretch);
186 allowOptionPanel.add(ti
[all...]
H A DFilterDialog.java133 filterPanel.add(explanationTextArea, textConstraints);
135 filterPanel.add(tip(filterLabel, "nameFilterTip"), labelConstraints);
136 filterPanel.add(tip(filterTextField, "fileNameFilterTip"), textFieldConstraints);
138 filterPanel.add(tip(jarFilterLabel, "jarNameFilterTip"), labelConstraints);
139 filterPanel.add(tip(jarFilterTextField, "fileNameFilterTip"), textFieldConstraints);
141 filterPanel.add(tip(warFilterLabel, "warNameFilterTip"), labelConstraints);
142 filterPanel.add(tip(warFilterTextField, "fileNameFilterTip"), textFieldConstraints);
144 filterPanel.add(tip(earFilterLabel, "earNameFilterTip"), labelConstraints);
145 filterPanel.add(tip(earFilterTextField, "fileNameFilterTip"), textFieldConstraints);
147 filterPanel.add(ti
[all...]
H A DMemberSpecificationDialog.java158 accessPanel.add(Box.createGlue(), labelConstraints);
159 accessPanel.add(tip(new JLabel(msg("required")), "requiredTip"), labelConstraints);
160 accessPanel.add(tip(new JLabel(msg("not")), "notTip"), labelConstraints);
161 accessPanel.add(tip(new JLabel(msg("dontCare")), "dontCareTip"), labelConstraints);
162 accessPanel.add(Box.createGlue(), constraintsLastStretch);
189 typePanel.add(tip(typeTextField, "typeTip"), constraintsLastStretch);
196 annotationTypePanel.add(tip(annotationTypeTextField, "classNameTip"), constraintsLastStretch);
203 namePanel.add(tip(nameTextField, isField ? "fieldNameTip" :
211 argumentsPanel.add(tip(argumentTypesTextField, "argumentTypes2Tip"), constraintsLastStretch);
253 mainPanel.add(ti
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.java38 * Once you start next()ing, do not try to add more elements. It will
44 * TODO: add mechanism to detect/puke on modification after reading from stream
52 /** Track single elements w/o creating a list. Upon 2nd add, alloc list */
88 add(oneElement);
111 public void add(Object el) { method in class:RewriteRuleElementStream
112 //System.out.println("add '"+elementDescription+"' is "+el);
116 if ( elements!=null ) { // if in list, just add
117 elements.add(el);
126 elements.add(singleElement);
128 elements.add(e
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DBitSet.pm55 sub add : Tests(1) { subroutine
58 $bs->add(2);
59 $bs->add(7);
66 $bs->add(3);
67 $bs->add(12);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_UnmodifiableCollectionTest.java56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
62 hs.add(new Integer(100));
75 ss.add(it.next());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptedData.java77 v.add(contentType);
78 v.add(encryptionAlgorithm.toASN1Primitive());
79 v.add(new BERTaggedObject(false, 0, content));
110 v.add(new ASN1Integer(0));
111 v.add(data);
/external/chromium/chrome/browser/resources/ntp4/
H A Dgrabber.js58 this.events_.add(this.element, 'dragstart', function(e) {
63 this.events_.add(this.element, TouchHandler.EventType.TOUCH_START,
65 this.events_.add(this.element, TouchHandler.EventType.LONG_PRESS,
67 this.events_.add(this.element, TouchHandler.EventType.DRAG_START,
69 this.events_.add(this.element, TouchHandler.EventType.DRAG_MOVE,
71 this.events_.add(this.element, TouchHandler.EventType.DRAG_END,
73 this.events_.add(this.element, TouchHandler.EventType.TOUCH_END,
177 this.element.classList.add(Grabber.PRESSED_CLASS);
212 this.element.classList.add(Grabber.GRAB_CLASS);
240 this.element.classList.add(Grabbe
[all...]
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dgrabber.js58 this.events_.add(this.element, 'dragstart', function(e) {
63 this.events_.add(this.element, TouchHandler.EventType.TOUCH_START,
65 this.events_.add(this.element, TouchHandler.EventType.LONG_PRESS,
67 this.events_.add(this.element, TouchHandler.EventType.DRAG_START,
69 this.events_.add(this.element, TouchHandler.EventType.DRAG_MOVE,
71 this.events_.add(this.element, TouchHandler.EventType.DRAG_END,
73 this.events_.add(this.element, TouchHandler.EventType.TOUCH_END,
177 this.element.classList.add(Grabber.PRESSED_CLASS);
212 this.element.classList.add(Grabber.GRAB_CLASS);
240 this.element.classList.add(Grabbe
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DInterferenceGraph.java53 interference.add(SetFactory.makeInterferenceSet(countRegs));
64 public void add(int regV, int regW) { method in class:InterferenceGraph
67 interference.get(regV).add(regW);
68 interference.get(regW).add(regV);
110 interference.add(SetFactory.makeInterferenceSet(size));
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DListIntSet.java38 public void add(int value) { method in class:ListIntSet
72 add(o.ints.get(j++));
83 add(o.ints.get(j++));
91 ints.add(i);
97 add(iter.next());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DBuildResultsElement.java63 DESCRIPTORS.add(getInfosDescriptor(status));
64 DESCRIPTORS.add(getWarningsDescriptor(status));
65 DESCRIPTORS.add(ERROR_DESCRIPTOR);
68 DESCRIPTORS.add(BUILD_DATE_DESCRIPTOR);
70 DESCRIPTORS.add(BUILD_BASELINE_DESCRIPTOR);
72 DESCRIPTORS.add(BUILD_COMMENT_DESCRIPTOR);
74 DESCRIPTORS.add(BUILD_SUMMARY_DESCRIPTOR);
76 DESCRIPTORS.add(BUILD_IS_BASELINE_DESCRIPTOR);
78 DESCRIPTORS.add(BUILD_TEST_FAILURE_DESCRIPTOR);
80 DESCRIPTORS.add(BUILD_TEST_DELTA_DESCRIPTO
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIElement.java74 public IElementList add (final IContent content) method in class:IElement.Factory.ElementImpl
78 m_contents.add (content);
84 public IElementList add (final int index, final IContent content) method in class:IElement.Factory.ElementImpl
88 m_contents.add (index, content);
104 m_contents.add (new Text (text, nbsp));
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionAddTester.java31 * A generic JUnit test which tests {@code add} operations on a collection.
44 assertTrue("add(notPresent) should return true",
45 collection.add(samples.e3));
52 collection.add(samples.e3);
53 fail("add(notPresent) should throw");
64 assertFalse("add(present) should return false or throw",
65 collection.add(samples.e0));
75 assertTrue("add(null) should return true", collection.add(null));
83 collection.add(nul
[all...]
/external/openssl/crypto/sha/asm/
H A Dsha1-armv4-large.pl80 add $e,$K,$e,ror#2 @ E+=K_xx_xx
86 add $e,$e,$a,ror#27 @ E+=ROR(A,27)
91 add $e,$e,$t0 @ E+=X[i]
102 add $e,$K,$e,ror#2 @ E+=K_00_19
107 add $e,$e,$a,ror#27 @ E+=ROR(A,27)
111 add $e,$K,$e,ror#2 @ E+=K_00_19
113 add $e,$e,$a,ror#27 @ E+=ROR(A,27)
119 add $e,$e,$t0 @ E+=X[i]
122 add $e,$e,$t1 @ E+=F_00_19(B,C,D)
131 add
[all...]
H A Dsha1-sparcv9a.pl155 add $tmp0,$e,$e
158 add $tmp1,$e,$e
160 add $Xi,$e,$e
165 add $tmp1,$e,$e
174 add $tmp0,$e,$e
177 add $tmp1,$e,$e
180 add $Xi,$e,$e
186 add $tmp1,$e,$e
207 add $tmp0,$e,$e
210 add
[all...]
H A Dsha1-ppc.pl79 add $f,$K,$e
81 add $f,$f,@X[$i]
83 add $f,$f,$e
87 add $f,$f,$t0
90 add $f,$K,$e
93 add $f,$f,@X[$i%16]
96 add $f,$f,$e
101 add $f,$f,$t0
110 add $f,$K,$e
113 add
[all...]
/external/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl113 add %rax,$lo0 # discarded
123 add %rax,$hi1
126 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
134 add %rax,$hi0
144 add %rax,$hi1
147 add $hi0,$hi1 # np[j]*m1+ap[j]*bp[0]
154 add $hi0,$hi1
168 add %rax,$lo0 # ap[0]*bp[i]+tp[0]
176 add %rax,$lo0 # discarded
187 add
[all...]
/external/quake/quake/src/QW/client/
H A Dd_draw16.asm330 add edi,ecx
332 add edi,ecx
392 add esi,ds:dword ptr[s]
393 add edx,ds:dword ptr[t]
415 add esi,ebx
416 add esi,eax
435 add ebp,eax
436 add ecx,edx
465 add eax,edx
468 add ea
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractQueueTest.java107 * @tests java.util.AbstractQueue.add(E)
111 queue.add(null);
119 * @tests java.util.AbstractQueue.add(E)
125 queue.add(o);
129 queue.add(o);
137 * @tests java.util.AbstractQueue#add(E)
143 queue.add(o);
146 queue.add(I);
260 queue.add(c);
262 queue.add(
[all...]
H A DEnumSetTest.java142 set.add(HugeEnumCount.NO64);
143 set.add(HugeEnumCount.NO65);
144 set.add(HugeEnumCount.NO128);
188 enumSet.add(EnumFoo.a);
203 hugeEnumSet.add(HugeEnum.a);
213 * @tests java.util.EnumSet#add(E)
218 set.add(EnumFoo.a);
219 set.add(EnumFoo.b);
222 set.add(null);
231 rawSet.add(HugeEnumWithInnerClas
[all...]
H A DTreeSetTest.java72 myTreeSet.add(new Integer(1));
73 myTreeSet.add(new Integer(2));
90 myTreeSet.add(objArray[i]);
104 * @tests java.util.TreeSet#add(java.lang.Object)
107 // Test for method boolean java.util.TreeSet.add(java.lang.Object)
108 ts.add(new Integer(-8));
109 assertTrue("Failed to add Object", ts.contains(new Integer(-8)));
110 ts.add(objArray[0]);
123 assertTrue("Incorrect size after add", s.size() == ts.size());
308 s1.add("key
[all...]
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoMainActivity.java83 listDemos.add(new DemoLaunchEntry("jme3test.android.SimpleTexturedTest", "An field of textured boxes rotating"));
84 listDemos.add(new DemoLaunchEntry("jme3test.android.TestSkyLoadingLagoon", "Sky box demonstration with jpg"));
85 listDemos.add(new DemoLaunchEntry("jme3test.android.TestSkyLoadingPrimitives", "Sky box demonstration with png"));
86 listDemos.add(new DemoLaunchEntry("jme3test.android.TestBumpModel", "Shows a bump mapped well with a moving light"));
87 listDemos.add(new DemoLaunchEntry("jme3test.android.TestNormalMapping", "Shows a normal mapped sphere"));
88 listDemos.add(new DemoLaunchEntry("jme3test.android.TestUnshadedModel", "Shows an unshaded model of the sphere"));
89 listDemos.add(new DemoLaunchEntry("jme3test.android.TestMovingParticle", "Demonstrates particle effects"));
90 listDemos.add(new DemoLaunchEntry("jme3test.android.TestAmbient", "Positional sound - You sit in a dark cave under a waterfall"));
92 //listDemos.add(new DemoLaunchEntry("jme3test.effect.TestParticleEmitter", ""));
93 //listDemos.add(ne
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
H A DRenderQueue.java219 * @param g The geometry to add
231 shadowCast.add(g);
234 shadowRecv.add(g);
237 shadowCast.add(g);
238 shadowRecv.add(g);
248 * when flattening the scene graph. The bucket to add
251 * @param g The geometry to add
252 * @param bucket The bucket to add to, usually
258 guiList.add(g);
261 opaqueList.add(
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DTestCanvas.java76 frame.getContentPane().add(tabbedPane);
86 menuBar.add(menuTortureMethods);
89 menuTortureMethods.add(itemRemoveCanvas);
97 currentPanel.add(canvas, BorderLayout.CENTER);
105 menuTortureMethods.add(itemHideCanvas);
119 menuTortureMethods.add(itemSwitchTab);
124 canvasPanel2.add(canvas, BorderLayout.CENTER);
129 canvasPanel1.add(canvas, BorderLayout.CENTER);
137 menuTortureMethods.add(itemSwitchLaf);
151 menuTortureMethods.add(itemSmallSiz
[all...]

Completed in 499 milliseconds

1234567891011>>