HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 201 - 225 of 5712) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 41 public class TreeIterator : IEnumerator<object> {
43 protected object root;
44 protected object tree;
48 public object up;
49 public object down;
50 public object eof;
55 protected Queue<object> nodes;
57 public TreeIterator(object tree)
61 public TreeIterator(ITreeAdaptor adaptor, object tree) {
65 nodes = new Queue<object>();
    [all...]
RewriteRuleSubtreeStream.cs 43 public RewriteRuleSubtreeStream(ITreeAdaptor adaptor, string elementDescription, object oneElement)
69 public virtual object NextNode() {
75 object el = NextCore();
79 object tree = NextCore();
83 object el2 = adaptor.DupNode(tree); // dup just the root (want node here)
87 protected override object Dup(object el) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 66 protected object singleElement;
95 public RewriteRuleElementStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
122 public virtual void Add( object el )
140 elements = new List<object>( 5 );
153 public virtual object NextTree()
159 object el = NextCore();
163 object el2 = NextCore();
175 protected virtual object NextCore()
198 object o = ToTree( elements[cursor] );
210 protected abstract object Dup( object el )
    [all...]
RewriteRuleSubtreeStream.cs 46 public RewriteRuleSubtreeStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
74 public virtual object NextNode()
82 object el = NextCore();
86 object tree = NextCore();
90 object el2 = adaptor.DupNode(tree); // dup just the root (want node here)
94 protected override object Dup( object el )
TreeIterator.cs 42 public class TreeIterator : IEnumerator<object>
45 protected object root;
46 protected object tree;
51 public object up;
52 public object down;
53 public object eof;
58 protected Queue<object> nodes;
65 public TreeIterator( ITreeAdaptor adaptor, object tree )
70 nodes = new Queue<object>();
76 #region IEnumerator<object> Member
    [all...]
  /external/chromium_org/ui/base/gtk/
gtk_signal_registrar.cc 7 #include <glib-object.h>
20 GObject* object = list_iter->first; local
22 object, WeakNotifyThunk, this);
27 g_signal_handler_disconnect(object, *ids_iter);
52 GObject* object = G_OBJECT(instance); local
54 HandlerMap::iterator iter = handler_lists_.find(object);
57 object, WeakNotifyThunk, this);
58 handler_lists_[object] = HandlerList();
59 iter = handler_lists_.find(object);
82 GObject* object = G_OBJECT(instance) local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
value-wrapper.js 29 // numbers, we should create a wrapper object.
36 assertEquals('object', 'xxx'.TypeOfThis());
37 assertEquals('object', true.TypeOfThis(2,3));
38 assertEquals('object', false.TypeOfThis());
39 assertEquals('object', (42).TypeOfThis());
40 assertEquals('object', (3.14).TypeOfThis());
44 assertEquals('object', 'xxx'['TypeOfThis']());
45 assertEquals('object', true['TypeOfThis']());
46 assertEquals('object', false['TypeOfThis']());
47 assertEquals('object', (42)['TypeOfThis']())
    [all...]
  /external/v8/test/mjsunit/
value-wrapper.js 29 // numbers, we should create a wrapper object.
36 assertEquals('object', 'xxx'.TypeOfThis());
37 assertEquals('object', true.TypeOfThis(2,3));
38 assertEquals('object', false.TypeOfThis());
39 assertEquals('object', (42).TypeOfThis());
40 assertEquals('object', (3.14).TypeOfThis());
44 assertEquals('object', 'xxx'['TypeOfThis']());
45 assertEquals('object', true['TypeOfThis']());
46 assertEquals('object', false['TypeOfThis']());
47 assertEquals('object', (42)['TypeOfThis']())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 43 public static object get( this FieldInfo field, object obj )
77 public static object invoke( this MethodInfo method, object obj, params object[] parameters )
95 public static object newInstance( this Type type )
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
PropertiesSidebarPane.js 56 function nodeResolved(object)
58 if (!object)
75 object.callFunction(protoList, undefined, nodePrototypesReady.bind(this));
76 object.release();
82 function nodePrototypesReady(object, wasThrown)
84 if (!object || wasThrown)
86 object.getOwnProperties(fillSection.bind(this));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java 162 /** A (Object, int) pair, used as a map key. */
164 private final Object object; field in class:ExtensionRegistryLite.ObjectIntPair
167 ObjectIntPair(final Object object, final int number) {
168 this.object = object;
174 return System.identityHashCode(object) * ((1 << 16) - 1) + number;
177 public boolean equals(final Object obj) {
182 return object == other.object && number == other.number
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java 146 /** A (Object, int) pair, used as a map key. */
148 private final Object object; field in class:ExtensionRegistryLite.ObjectIntPair
151 ObjectIntPair(final Object object, final int number) {
152 this.object = object;
158 return System.identityHashCode(object) * ((1 << 16) - 1) + number;
161 public boolean equals(final Object obj) {
166 return object == other.object && number == other.number
    [all...]
  /external/chromium/base/memory/
scoped_nsobject.h 14 // of an NSObject subclass object. Style deviations here are solely for
18 // When scoped_nsobject<> takes ownership of an object (in the constructor or
20 // caller must own the object it gives to scoped_nsobject<>, and relinquishes
21 // an ownership claim to that object. scoped_nsobject<> does not call
34 explicit scoped_nsobject(NST* object = nil)
35 : object_(object) {
42 void reset(NST* object = nil) {
43 // We intentionally do not check that object != object_ as the caller must
49 object_ = object;
70 // a wrapper for [object_ release]. To force a scoped_nsobject<> object t
    [all...]
  /external/chromium_org/ppapi/proxy/
ppp_class_proxy.h 37 // Creates a proxied object in the browser process. This takes the browser's
38 // PPB_Var_Deprecated interface to use to create the object. The class and
55 void OnMsgHasProperty(int64 ppp_class, int64 object,
59 void OnMsgHasMethod(int64 ppp_class, int64 object,
63 void OnMsgGetProperty(int64 ppp_class, int64 object,
68 int64 ppp_class, int64 object,
71 void OnMsgSetProperty(int64 ppp_class, int64 object,
75 void OnMsgRemoveProperty(int64 ppp_class, int64 object,
78 void OnMsgCall(int64 ppp_class, int64 object,
83 void OnMsgConstruct(int64 ppp_class, int64 object,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 57 bool WebBindings::construct(NPP npp, NPObject* object, const NPVariant* args, uint32_t argCount, NPVariant* result)
59 return _NPN_Construct(npp, object, args, argCount, result);
67 bool WebBindings::enumerate(NPP npp, NPObject* object, NPIdentifier** identifier, uint32_t* identifierCount)
69 return _NPN_Enumerate(npp, object, identifier, identifierCount);
72 bool WebBindings::evaluate(NPP npp, NPObject* object, NPString* script, NPVariant* result)
74 return _NPN_Evaluate(npp, object, script, result);
77 bool WebBindings::evaluateHelper(NPP npp, bool popupsAllowed, NPObject* object, NPString* script, NPVariant* result)
79 return _NPN_EvaluateHelper(npp, popupsAllowed, object, script, result);
87 bool WebBindings::getProperty(NPP npp, NPObject* object, NPIdentifier property, NPVariant* result)
89 return _NPN_GetProperty(npp, object, property, result)
390 NPObject* object = NPVARIANT_TO_OBJECT(*variant); local
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
selection_dev.cc 19 void* object = local
21 if (!object)
23 return static_cast<Selection_Dev*>(object)->
  /external/chromium_org/third_party/WebKit/public/testing/
WebTask.h 69 // A task containing an object pointer of class T. Derived classes should
75 explicit WebMethodTask(T* object)
76 : WebTask(object->taskList())
77 , m_object(object)
  /external/clang/test/ARCMT/
Common.h 31 - (BOOL)isEqual:(id)object;
72 extern objc_objectptr_t objc_unretainedPointer(id object);
74 #define dispatch_retain(object) ({ dispatch_object_t _o = (object); _dispatch_object_validate(_o); (void)[_o retain]; })
75 #define dispatch_release(object) ({ dispatch_object_t _o = (object); _dispatch_object_validate(_o); [_o release]; })
76 #define xpc_retain(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o retain]; })
77 #define xpc_release(object) ({ xpc_object_t _o = (object); _xpc_object_validate(_o); [_o release]; }
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
UnhashableObject.java 20 * An unhashable object to be used in testing as values in our collections.
33 @Override public boolean equals(Object object) {
34 if (object instanceof UnhashableObject) {
35 UnhashableObject that = (UnhashableObject) object;
45 // needed because otherwise Object.toString() calls hashCode()
  /external/junit/src/org/junit/runner/manipulation/
Sorter.java 34 * @param object
36 public void apply(Object object) {
37 if (object instanceof Sortable) {
38 Sortable sortable = (Sortable) object;
  /external/llvm/test/MC/ELF/
type.s 9 .type bar,@object
17 .type obj,@object
23 .type func,@object
39 // CHECK-NEXT: Type: Object
75 // CHECK-NEXT: Type: Object
  /libcore/luni/src/main/java/java/text/
ParsePosition.java 40 * Compares the specified object to this {@code ParsePosition} and indicates
41 * if they are equal. In order to be equal, {@code object} must be an
45 * @param object
46 * the object to compare with this object.
47 * @return {@code true} if the specified object is equal to this
52 public boolean equals(Object object) {
53 if (!(object instanceof ParsePosition)) {
56 ParsePosition pos = (ParsePosition) object;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1TypeCollection.java 37 public final Object[] DEFAULT;
50 this.DEFAULT = new Object[type.length];
66 * @param object a component's default value
69 protected final void setDefault(Object object, int index) {
71 DEFAULT[index] = object;
75 * Provides an object's values to be encoded
82 * @param object an object to be encoded
83 * @param values an array to store an object's values to be encode
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
DirectoryString.java 57 public int getIndex(java.lang.Object object) {
62 public Object getObjectToEncode(Object object) {
63 return /*(String)*/ object;
  /external/chromium_org/v8/src/
json-stringifier.h 42 MaybeObject* Stringify(Handle<Object> object);
45 Handle<String> object));
82 Handle<Object> ApplyToJsonFunction(Handle<Object> object,
83 Handle<Object> key);
85 Result SerializeGeneric(Handle<Object> object,
86 Handle<Object> key
    [all...]

Completed in 686 milliseconds

1 2 3 4 5 6 7 891011>>