Searched defs:object (Results 1 - 25 of 1059) sorted by path

1234567891011>>

/external/ImageMagick/MagickCore/
H A Dsegment.c946 *object,
1158 object=head;
1162 object=head->next;
1163 for (cluster=object; cluster->next != (Cluster *) NULL; )
1165 if (cluster->count < object->count)
1166 object=cluster;
1179 threshold=(background->red.center+object->red.center)/2.0;
1182 threshold=(background->green.center+object->green.center)/2.0;
1185 threshold=(background->blue.center+object->blue.center)/2.0;
936 *object, local
H A Dvision.c116 % o objects: return the attributes of each unique object.
143 *object;
217 object=(CCObjectInfo *) AcquireQuantumMemory(MaxColormapSize,sizeof(*object));
218 if (object == (CCObjectInfo *) NULL)
224 (void) ResetMagickMemory(object,0,MaxColormapSize*sizeof(*object));
227 object[i].id=i;
228 object[i].bounding_box.x=(ssize_t) image->columns;
229 object[
141 *object; local
273 object, local
[all...]
/external/ImageMagick/coders/
H A Dpdf.c1269 object,
1313 Write Info object.
1315 object=0;
1337 Write Catalog object.
1339 xref[object++]=TellBlob(image);
1340 root_id=object;
1342 object);
1347 (double) object+1);
1351 (double) object+1);
1354 (double) object
1260 object, local
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jar ... antlr.analysis.DecisionProbe extends java.lang.Object { public org.antlr.analysis.DFA dfa protected ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jar ... ant.tasks.FlexUnitLauncher extends java.lang.Object { private static final String WINDOWS_OS private static final String MAC_OS_X ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DSemanticContext.java95 * The simple Predicate object's predicate AST's type is used to set
589 public boolean equals(Object object) { argument
590 if ( !(object instanceof NOT) ) {
593 return this.ctx.equals(((NOT)object).ctx);
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DBigFraction.java583 * Compares this object to another based on size.
586 * @param object
587 * the object to compare to, must not be <code>null</code>.
588 * @return -1 if this is less than <tt>object</tt>, +1 if this is greater
589 * than <tt>object</tt>, 0 if they are equal.
592 public int compareTo(final BigFraction object) { argument
593 BigInteger nOd = numerator.multiply(object.denominator);
594 BigInteger dOn = denominator.multiply(object.numerator);
697 * @return true if two fractions are equal, false if object is
802 * @return a hash code value for this object
[all...]
H A DFraction.java300 * Compares this object to another based on size.
301 * @param object the object to compare to
302 * @return -1 if this is less than <tt>object</tt>, +1 if this is greater
303 * than <tt>object</tt>, 0 if they are equal.
305 public int compareTo(Fraction object) { argument
306 long nOd = ((long) numerator) * object.denominator;
307 long dOn = ((long) denominator) * object.numerator;
326 * @return true if two fractions are equal, false if object is
373 * @return a hash code value for this object
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DAbstractFieldMatrix.java966 * Returns true iff <code>object</code> is a
970 * @param object the object to test equality against.
971 * @return true if object equals this
974 public boolean equals(final Object object) { argument
975 if (object == this ) {
978 if (object instanceof FieldMatrix<?> == false) {
981 FieldMatrix<?> m = (FieldMatrix<?>) object;
H A DAbstractRealMatrix.java1019 * Returns true iff <code>object</code> is a
1023 * @param object the object to test equality against.
1024 * @return true if object equals this
1027 public boolean equals(final Object object) { argument
1028 if (object == this ) {
1031 if (object instanceof RealMatrix == false) {
1034 RealMatrix m = (RealMatrix) object;
H A DBigMatrixImpl.java1326 * Returns true iff <code>object</code> is a
1331 * @param object the object to test equality against.
1332 * @return true if object equals this
1335 public boolean equals(Object object) { argument
1336 if (object == this ) {
1339 if (object instanceof BigMatrixImpl == false) {
1342 final BigMatrix m = (BigMatrix) object;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DAbstractStorelessUnivariateStatistic.java154 * Returns true iff <code>object</code> is an
157 * @param object object to test equality against.
158 * @return true if object returns the same value as this
161 public boolean equals(Object object) { argument
162 if (object == this ) {
165 if (object instanceof AbstractStorelessUnivariateStatistic == false) {
168 AbstractStorelessUnivariateStatistic stat = (AbstractStorelessUnivariateStatistic) object;
H A DAggregateSummaryStatistics.java32 * contributors can be obtained from this object.
81 * object as a prototype for contributing statistics and for the internal
89 * means that other objects are initialized by copying this object's state.
90 * If {@code null}, a new, default statistics object is used. Any statistic
102 * object as a prototype for contributing statistics and for the internal
111 * means that other objects are initialized by copying this object's state.
112 * If {@code null}, a new, default statistics object is used. Any statistic
116 * internal aggregate statistics object. If {@code null}, a new, default
117 * statistics object is used.
364 * aggregate statistics object
395 equals(Object object) argument
[all...]
H A DMultivariateSummaryStatistics.java362 * Returns true iff <code>object</code> is a <code>MultivariateSummaryStatistics</code>
364 * @param object the object to test equality against.
365 * @return true if object equals this
368 public boolean equals(Object object) { argument
369 if (object == this ) {
372 if (object instanceof MultivariateSummaryStatistics == false) {
375 MultivariateSummaryStatistics stat = (MultivariateSummaryStatistics) object;
H A DStatisticalSummaryValues.java25 * Value object representing the results of a univariate statistical summary.
124 * Returns true iff <code>object</code> is a
128 * @param object the object to test equality against.
129 * @return true if object equals this
132 public boolean equals(Object object) { argument
133 if (object == this ) {
136 if (object instanceof StatisticalSummaryValues == false) {
139 StatisticalSummaryValues stat = (StatisticalSummaryValues) object;
H A DSummaryStatistics.java350 * Returns true iff <code>object</code> is a
353 * @param object the object to test equality against.
354 * @return true if object equals this
357 public boolean equals(Object object) { argument
358 if (object == this) {
361 if (object instanceof SummaryStatistics == false) {
364 SummaryStatistics stat = (SummaryStatistics)object;
H A DSynchronizedMultivariateSummaryStatistics.java168 public synchronized boolean equals(Object object) { argument
169 return super.equals(object);
H A DSynchronizedSummaryStatistics.java161 public synchronized boolean equals(Object object) { argument
162 return super.equals(object);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DResizableDoubleArray.java659 * @return the internal storage array used by this object
676 * @return the internal storage array used by this object
869 * the copy, so the returned object is an exact copy of this.
882 * Returns true iff object is a ResizableDoubleArray with the same properties
885 * @param object object to be compared for equality with this
886 * @return true iff object is a ResizableDoubleArray with the same data and
891 public boolean equals(Object object) { argument
892 if (object == this ) {
895 if (object instanceo
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DParsedEvent.java129 * The class extends EventThread by associating it with monitor object and location.
508 private TaggedObject object; field in class:ParsedEvent.Event_FIELD_ACCESS
521 object = packet.getNextValueAsTaggedObject();
532 * @return Returns the object.
535 return object;
564 private TaggedObject object; field in class:ParsedEvent.Event_FIELD_MODIFICATION
579 object = packet.getNextValueAsTaggedObject();
591 * @return Returns the object.
594 return object;
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java150 * Returns golden file for an object being tested.
169 * returned by {@link #getData() getData()}to golden files, each object to
192 * Serializes specified object to an output stream.
203 * Deserializes single object from an input stream.
225 * initial object used for creating serialized form
227 * deserialized object
242 * Comparator for verifying that deserialized object is the same as initial.
383 * <code>object</code>.
387 * selected as </code>comparator</code>.<br>- if passed <code>object</code>
390 * method tries to select one of known comparators basing on <code>object'
401 defineComparator(TestCase test, Object object) argument
444 verifyGolden(TestCase test, Object object) argument
463 verifyGolden(TestCase test, Object object, SerializableAssert comparator) argument
529 verifySelf(Object object) argument
547 verifySelf(Object object, SerializableAssert comparator) argument
626 createGoldenFile(String root, TestCase test, Object object) argument
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java146 * @param object A String or, an array of character bytes containing hexidecimal digits
150 * to this function or the object is not a String or char[]
153 public Object decode(Object object) throws DecoderException { argument
155 char[] charArray = object instanceof String ? ((String) object).toCharArray() : (char[]) object;
182 * @param object a String, or byte[] to convert to Hex characters
184 * @throws EncoderException Thrown if the given object is not a String or byte[]
187 public Object encode(Object object) throws EncoderException { argument
189 byte[] byteArray = object instanceo
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElement.java204 public boolean equals(final Object object) { argument
205 if (object == null) return false;
206 if (this == object) return true;
207 if (object instanceof HeaderElement) {
208 BasicHeaderElement that = (BasicHeaderElement) object;
H A DBasicNameValuePair.java171 public boolean equals(final Object object) { argument
172 if (object == null) return false;
173 if (this == object) return true;
174 if (object instanceof NameValuePair) {
175 BasicNameValuePair that = (BasicNameValuePair) object;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DQName.java32 * Class to represent a qualified name: "The name of an internal XSLT object,
40 * is used as the name of the object. The default namespace is not used for
578 * the passed object is a string and it matches
599 * the passed object is a QName and it matches
604 public boolean equals(Object object) argument
607 if (object == this)
610 if (object instanceof QName) {
611 QName qname = (QName) object;
625 * Given a string, create and return a QName object
630 * @return a QName object
[all...]

Completed in 549 milliseconds

1234567891011>>