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

1234567891011>>

/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-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/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyGuard.java33 public void checkGuard(Object object) { argument
/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...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXBoolean.java24 * This class represents an XPath boolean object, and is capable of
33 * A true boolean object so we don't have to keep creating them.
39 * A true boolean object so we don't have to keep creating them.
44 /** Value of the object.
49 * Construct a XBoolean object.
51 * @param b Value of the boolean object
62 * Construct a XBoolean object.
64 * @param b Value of the boolean object
98 * Cast result object to a number.
100 * @return numeric value of the object valu
133 public Object object() method in class:XBoolean
[all...]
H A DXNodeSet.java34 * This class represents an XPath nodeset object, and is capable of
49 * Construct a XNodeSet object.
51 * @param val Value of the XNodeSet object
75 * Construct a XNodeSet object.
77 * @param val Value of the XNodeSet object
92 * Construct an empty XNodeSet object. This is used to create a mutable
101 * Construct a XNodeSet object for one node.
103 * @param n Node to add to the new XNodeSet object
155 * Cast result object to a number.
168 * Cast result object t
289 public Object object() method in class:XNodeSet
[all...]
H A DXNodeSetForDOM.java32 * This class overrides the XNodeSet#object() method to provide the original
33 * Node object, NodeList object, or NodeIterator.
50 * Construct a XNodeSet object.
52 * @param val Value of the XNodeSet object
90 * Return the original DOM object that the user passed in. For use primarily
93 * @return The object that this class wraps
95 public Object object() method in class:XNodeSetForDOM
101 * Cast result object to a nodelist. Always issues an error.
114 * Cast result object t
[all...]
H A DXNumber.java36 /** Value of the XNumber object.
41 * Construct a XNodeSet object.
43 * @param d Value of the object
53 * Construct a XNodeSet object.
55 * @param num Value of the object
88 * Cast result object to a number.
90 * @return the value of the XNumber object
112 * Cast result object to a boolean.
122 // * Cast result object to a string.
272 * Cast result object t
377 public Object object() method in class:XNumber
[all...]
H A DXObject.java42 * This class represents an XPath object, and is capable of
43 * converting the object to various types, such as a string.
53 * The java object which this object wraps.
66 * @param obj Can be any object, should be a specific type
83 * @return This object.
115 * Forces the object to release it's resources. This is more harsh than
155 * Create the right XObject based on the type of the object passed. This
159 * @param val The java object which this object wil
397 public Object object() method in class:XObject
[all...]
H A DXRTreeFrag.java34 * This class represents an XPath result tree fragment object, and is capable of
76 * Return a java object that's closest to the representation
79 * @return The object that this class wraps
81 public Object object() method in class:XRTreeFrag
86 return super.object();
116 * In general, detach should only be called once on the object.
147 * Cast result object to a number.
161 * Cast result object to a boolean. This always returns true for a RTreeFrag
174 * Cast result object to an XMLString.
187 * Cast result object t
[all...]
H A DXStringForChars.java43 * Construct a XNodeSet object.
45 * @param val FastStringBuffer object this will wrap, must be non-null.
61 * Construct a XNodeSet object.
63 * @param val String object this will wrap.
73 * Cast result object to a string.
83 * Cast result object to a string.
94 * Tell if this object contains a java String object.
105 * Cast result object to a string.
119 * Since this object i
124 public Object object() method in class:XStringForChars
[all...]
H A DXStringForFSB.java50 * Construct a XNodeSet object.
52 * @param val FastStringBuffer object this will wrap, must be non-null.
70 * Construct a XNodeSet object.
72 * @param val String object this will wrap.
84 * Cast result object to a string.
94 * Cast result object to a string.
105 * Tell if this object contains a java String object.
121 * Since this object is incomplete without the length and the offset, we
124 * @return The java String representation of this object
126 public Object object() method in class:XStringForFSB
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dreactor.c130 reactor_object_t *object = (reactor_object_t *)list_node(iter); local
131 int fd = object->fd;
132 reactor_interest_t interest = object->interest;
161 reactor_object_t *object = (reactor_object_t *)list_node(iter); local
162 int fd = object->fd;
164 object->read_ready(object->context);
168 object->write_ready(object->context);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERApplicationSpecific.java9 * Base class for an application specific object
37 ASN1Encodable object)
40 this(true, tag, object);
46 ASN1Encodable object)
49 ASN1Primitive primitive = object.toASN1Primitive();
83 throw new ASN1ParsingException("malformed object: " + e, e);
103 throw new IllegalArgumentException("failed to construct object from byte[]: " + e.getMessage());
116 throw new IllegalArgumentException("unknown object in getInstance: " + obj.getClass().getName());
160 * Return the enclosed object assuming explicit tagging.
162 * @return the resulting object
35 DERApplicationSpecific( int tag, ASN1Encodable object) argument
43 DERApplicationSpecific( boolean explicit, int tag, ASN1Encodable object) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Util.java225 ASN1Encodable object)
246 sig.update(object.toASN1Primitive().getEncoded(ASN1Encoding.DER));
257 ASN1Encodable object)
278 sig.update(object.toASN1Primitive().getEncoded(ASN1Encoding.DER));
220 calculateSignature( DERObjectIdentifier sigOid, String sigName, PrivateKey key, SecureRandom random, ASN1Encodable object) argument
251 calculateSignature( DERObjectIdentifier sigOid, String sigName, String provider, PrivateKey key, SecureRandom random, ASN1Encodable object) argument
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.cc122 // throughout this object's lifetime.
195 // Stringizes a V8 object by calling its toString() method. Returns true
197 bool V8ObjectToUTF16String(v8::Handle<v8::Value> object, argument
200 if (object.IsEmpty())
204 v8::Local<v8::String> str_object = object->ToString();
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContents.java79 * primary entry point for the WebViewProvider implementation; it holds a 1:1 object
544 * @param containerView the view-hierarchy item this object will be bound to.
724 * Reconciles the state of this AwContents object with the state of the new container view.
754 * ^^^^^^^^^ See the native class declaration for more details on relative object lifetimes.
771 // The native side object has been bound to this java instance, so now is the time to
872 * Destroys this object and deletes its native counterpart.
880 * Deletes the native counterpart of this object.
1579 * Unsafely returning reference to mutable internal object to avoid excessive
1904 public void addPossiblyUnsafeJavascriptInterface(Object object, String name, argument
1907 mContentViewCore.addPossiblyUnsafeJavascriptInterface(object, nam
[all...]
/external/chromium_org/android_webview/native/
H A Daw_autofill_client.cc35 // Ownership: The native object is created (if autofill enabled) and owned by
36 // AwContents. The native object creates the java peer which handles most
38 // AwContents. The native object only maintains a weak ref to it.
170 jobject object,
169 SuggestionSelected(JNIEnv* env, jobject object, jint position) argument
H A Daw_quota_manager_bridge_impl.cc32 // This object lives on UI and IO threads. Care need to be taken to make sure
33 // there are no concurrent accesses to instance variables. Also this object
182 void AwQuotaManagerBridgeImpl::Init(JNIEnv* env, jobject object) { argument
183 java_ref_ = JavaObjectWeakGlobalRef(env, object);
204 void AwQuotaManagerBridgeImpl::DeleteAllData(JNIEnv* env, jobject object) { argument
224 JNIEnv* env, jobject object, jstring origin) {
249 JNIEnv* env, jobject object, jint callback_id) {
307 JNIEnv* env, jobject object,
223 DeleteOrigin( JNIEnv* env, jobject object, jstring origin) argument
248 GetOrigins( JNIEnv* env, jobject object, jint callback_id) argument
306 GetUsageAndQuotaForOrigin( JNIEnv* env, jobject object, jstring origin, jint callback_id, bool is_quota) argument

Completed in 481 milliseconds

1234567891011>>