HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 51 - 75 of 3359) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 26 * Tests serialization and deserialization of an object, optionally asserting
27 * that the resulting object is equal to the original.
44 * Serializes and deserializes the specified object.
51 * <p>Note that the specified object may not be known by the compiler to be a
53 * {@code Object}. For example, it might be declared as a {@code List}.
55 * @return the re-serialized object
56 * @throws RuntimeException if the specified object was not successfully
60 public static <T> T reserialize(T object) {
61 return Platform.reserialize(object);
65 * Serializes and deserializes the specified object and verifies that th
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 64 public virtual object Create( IToken payload )
71 object node = adaptor.Create( payload );
76 public virtual object ErrorNode( ITokenStream input, IToken start, IToken stop,
79 object node = adaptor.ErrorNode( input, start, stop, e );
87 public virtual object DupTree( object tree )
89 object t = adaptor.DupTree( tree );
98 protected virtual void SimulateTreeConstruction( object t )
104 object child = adaptor.GetChild( t, i );
110 public virtual object DupNode( object treeNode
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 48 protected IDictionary<object, int> treeToUniqueIDMap;
51 public virtual object Nil() {
70 public virtual object ErrorNode(ITokenStream input, IToken start, IToken stop,
77 public virtual bool IsNil(object tree) {
81 public virtual object DupTree(object tree) {
91 public virtual object DupTree(object t, object parent) {
95 object newTree = DupNode(t)
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSDictionaryExtras.m 36 id object = [self objectForKey:key];
37 return [object isKindOfClass:[NSNumber class]] ? object : nil;
48 id object = [self objectForKey:key];
49 return [object isKindOfClass:[NSString class]] ? object : nil;
54 id object = [self objectForKey:key];
55 return [object isKindOfClass:[NSArray class]] ? object : nil;
85 -(void)_webkit_setObject:(id)object forUncopiedKey:(id)ke
    [all...]
  /external/v8/src/
accessors.h 81 MUST_USE_RESULT static MaybeObject* FunctionGetPrototype(Object* object,
83 MUST_USE_RESULT static MaybeObject* FunctionSetPrototype(JSObject* object,
84 Object* value,
86 static MaybeObject* FunctionGetArguments(Object* object, void*);
90 static MaybeObject* FunctionGetLength(Object* object, void*);
91 static MaybeObject* FunctionGetName(Object* object, void*)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 51 protected IDictionary<object, int> treeToUniqueIDMap;
54 public virtual object Nil()
74 public virtual object ErrorNode( ITokenStream input, IToken start, IToken stop,
82 public virtual bool IsNil( object tree )
87 public virtual object DupNode(int type, object treeNode)
89 object t = DupNode(treeNode);
94 public virtual object DupNode(object treeNode, string text)
96 object t = DupNode(treeNode)
    [all...]
  /external/bluetooth/glib/gobject/
gobject.h 1 /* GObject - GLib Type, Object, Parameter and Signal Library
20 #error "Only <glib-object.h> can be included directly."
46 * @object: Object which is subject to casting.
52 #define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject))
62 * @object: Instance to check for being a %G_TYPE_OBJECT.
66 #define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT))
77 * @object: a #GObject instance
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
Platform.java 28 * Serializes and deserializes the specified object (a no-op under GWT).
31 static <T> T reserialize(T object) {
32 return checkNotNull(object);
  /external/protobuf/python/google/protobuf/internal/
message_listener.py 40 class MessageListener(object):
73 class NullMessageListener(object):
  /external/replicaisland/src/com/replica/replicaisland/
TObjectPool.java 23 * @param <T> The type of object managed by the pool.
36 T object = (T)super.allocate(); local
37 return object;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-007.js 52 * This is the object that will be the "this" in a with block.
72 function TryForIn( object ) {
74 for ( p in object ) {
75 if ( typeof object[p] == "function" ) {
76 result = object[p]();
85 "TryForIn( " + object+ " )",
86 (object.exception ? EXCEPTION_STRING +": " + object.value : object.value),
  /external/webkit/Source/WebCore/rendering/
RenderBR.h 65 inline RenderBR* toRenderBR(RenderObject* object)
67 ASSERT(!object || object->isBR());
68 return static_cast<RenderBR*>(object);
71 inline const RenderBR* toRenderBR(const RenderObject* object)
73 ASSERT(!object || object->isBR());
74 return static_cast<const RenderBR*>(object);
RenderCombineText.h 51 inline RenderCombineText* toRenderCombineText(RenderObject* object)
53 ASSERT(!object || object->isCombineText());
54 return static_cast<RenderCombineText*>(object);
57 inline const RenderCombineText* toRenderCombineText(const RenderObject* object)
59 ASSERT(!object || object->isCombineText());
60 return static_cast<const RenderCombineText*>(object);
RenderRubyRun.h 80 inline RenderRubyRun* toRenderRubyRun(RenderObject* object)
82 ASSERT(!object || object->isRubyRun());
83 return static_cast<RenderRubyRun*>(object);
86 inline const RenderRubyRun* toRenderRubyRun(const RenderObject* object)
88 ASSERT(!object || object->isBox());
89 return static_cast<const RenderRubyRun*>(object);
RenderTableCol.h 68 inline RenderTableCol* toRenderTableCol(RenderObject* object)
70 ASSERT(!object || object->isTableCol());
71 return static_cast<RenderTableCol*>(object);
74 inline const RenderTableCol* toRenderTableCol(const RenderObject* object)
76 ASSERT(!object || object->isTableCol());
77 return static_cast<const RenderTableCol*>(object);
RenderTextFragment.h 67 inline RenderTextFragment* toRenderTextFragment(RenderObject* object)
69 ASSERT(!object || toRenderText(object)->isTextFragment());
70 return static_cast<RenderTextFragment*>(object);
73 inline const RenderTextFragment* toRenderTextFragment(const RenderObject* object)
75 ASSERT(!object || toRenderText(object)->isTextFragment());
76 return static_cast<const RenderTextFragment*>(object);
RenderFieldset.h 51 inline RenderFieldset* toRenderFieldset(RenderObject* object)
53 ASSERT(!object || object->isFieldset());
54 return static_cast<RenderFieldset*>(object);
RenderHTMLCanvas.h 50 inline RenderHTMLCanvas* toRenderHTMLCanvas(RenderObject* object)
52 ASSERT(!object || !strcmp(object->renderName(), "RenderHTMLCanvas"));
53 return static_cast<RenderHTMLCanvas*>(object);
  /external/llvm/test/MC/ELF/
common.s 7 .type common1,@object
22 .type common2,@object
47 .type common3,@object
67 .type common4,@object
  /external/llvm/tools/llvm-stub/
Makefile 12 LINK_COMPONENTS := object
  /external/proguard/src/proguard/evaluation/value/
NegatedDoubleValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
NegatedFloatValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.floatValue.equals(((NegatedFloatValue)object).floatValue);
NegatedIntegerValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.integerValue.equals(((NegatedIntegerValue)object).integerValue);
NegatedLongValue.java 50 // Implementations for Object.
52 public boolean equals(Object object)
54 return this == object ||
55 super.equals(object) &&
56 this.longValue.equals(((NegatedLongValue)object).longValue);
  /external/webkit/Source/WebCore/bindings/v8/
V8Helpers.cpp 42 V8NPObject* object = reinterpret_cast<V8NPObject*>(npObject); local
43 return V8Proxy::mainWorldContext(object->rootObject->frame());
48 V8NPObject* object = reinterpret_cast<V8NPObject*>(npObject); local
49 Frame* frame = object->rootObject->frame();

Completed in 1130 milliseconds

1 23 4 5 6 7 8 91011>>