/external/chromium_org/v8/src/ |
allocation-site-scopes.h | 51 bool ShouldCreateMemento(Handle<JSObject> object) { return false; } 73 // accompany object literals. 80 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object); 85 // behind some/all components of a copied object literal. 99 Object* nested_site = current()->nested_site(); 108 Handle<JSObject> object) { 109 // This assert ensures that we are pointing at the right sub-object in a 111 ASSERT(object.is_null() || *object == scope_site->transition_info()); 114 bool ShouldCreateMemento(Handle<JSObject> object); [all...] |
objects-visiting-inl.h | 111 Map* map, HeapObject* object) { 119 HeapObject::RawField(object, JSArrayBuffer::BodyDescriptor::kStartOffset), 120 HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset)); 123 HeapObject::RawField(object, 125 HeapObject::RawField(object, JSArrayBuffer::kSizeWithInternalFields)); 132 Map* map, HeapObject* object) { 135 HeapObject::RawField(object, JSTypedArray::BodyDescriptor::kStartOffset), 136 HeapObject::RawField(object, JSTypedArray::kWeakNextOffset)); 139 HeapObject::RawField(object, 141 HeapObject::RawField(object, JSTypedArray::kSizeWithInternalFields)) 262 HeapObject* object = HeapObject::cast(rinfo->target_object()); local [all...] |
/external/chromium_org/v8/test/cctest/ |
test-constantpool.cc | 33 Handle<Object> object = factory->NewHeapNumber(4.0); local 36 array->set(3, *object); 40 CHECK_EQ(array->get_ptr_entry(3), *object); 44 Object* old_ptr = array->get_ptr_entry(3); 45 CHECK_EQ(*object, old_ptr); 47 Object* new_ptr = array->get_ptr_entry(3); 48 CHECK_NE(*object, old_ptr); 49 CHECK_EQ(*object, new_ptr);
|
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/ |
XMLExporter.java | 64 public boolean save(Savable object, OutputStream f) throws IOException { 68 domOut.write(object, object.getClass().getName(), null); 80 public boolean save(Savable object, File f) throws IOException { 81 return save(object, new FileOutputStream(f)); 84 public OutputCapsule getCapsule(Savable object) {
|
/external/llvm/lib/Object/ |
YAML.cpp | 1 //===- YAML.cpp - YAMLIO utilities for object files -----------------------===// 11 // object files. 15 #include "llvm/Object/YAML.h" 20 using namespace object::yaml; 22 void yaml::ScalarTraits<object::yaml::BinaryRef>::output( 23 const object::yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) { 27 StringRef yaml::ScalarTraits<object::yaml::BinaryRef>::input( 28 StringRef Scalar, void *, object::yaml::BinaryRef &Val) { 36 Val = object::yaml::BinaryRef(Scalar);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/ |
galliumcom.idl | 32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")] 40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")] 71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
|
/frameworks/base/media/mca/filterfw/jni/ |
jni_util.cpp | 35 JavaObject::JavaObject(jobject object, JNIEnv* env) 121 bool IsJavaInstanceOf(JNIEnv* env, jobject object, const std::string& class_name) { 123 return clazz ? env->IsInstanceOf(object, clazz) == JNI_TRUE : false; 133 Value ToCValue(JNIEnv* env, jobject object) { 135 if (object != NULL) { 136 if (IsJavaInstanceOf(env, object, "java/lang/Boolean")) { 137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z"); 138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0); 139 } else if (IsJavaInstanceOf(env, object, "java/lang/Integer")) { 140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValue", "()I") [all...] |
/libcore/luni/src/main/java/java/util/ |
MapEntry.java | 42 public Object clone() { 51 public boolean equals(Object object) { 52 if (this == object) { 55 if (object instanceof Map.Entry) { 56 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object; 79 public V setValue(V object) { 81 value = object;
|
AbstractList.java | 97 public void add(E object) { 100 AbstractList.this.add(pos + 1, object); 140 public void set(E object) { 143 AbstractList.this.set(lastPosition, object); 185 public void add(E object) { 186 iterator.add(object); 231 public void set(E object) { 232 iterator.set(object); 244 public void add(int location, E object) { 247 fullList.add(location + offset, object); 425 add(size(), object); local 527 Object object = it.next(); local [all...] |
/libnativehelper/include/nativehelper/ |
ScopedBytes.h | 31 ScopedBytes(JNIEnv* env, jobject object) 32 : mEnv(env), mObject(object), mByteArray(NULL), mPtr(NULL) 66 ScopedBytesRO(JNIEnv* env, jobject object) : ScopedBytes<true>(env, object) {} 74 ScopedBytesRW(JNIEnv* env, jobject object) : ScopedBytes<false>(env, object) {}
|
/external/replicaisland/src/com/replica/replicaisland/ |
GameObjectFactory.java | 54 // objects must match the order of the object tileset in the level editor in order for the 265 mPoolSearchDummy = new GameComponentPool(Object.class, 1); 370 public void destroy(GameObject object) { 371 object.commitUpdates(); 372 final int componentCount = object.getCount(); 374 GameComponent component = (GameComponent)object.get(x); 379 object.removeAll(); 380 object.commitUpdates(); 381 mGameObjectPool.release(object); 587 GameObject object = spawn(type, worldX, worldY, false) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeNodeStream.cs | 85 public virtual object TreeSource { 91 * It is normally this object that instructs the node stream to 109 object node = input.LT(1); 114 public virtual object this[int i] { 120 public virtual object LT(int i) { 121 object node = input.LT(i); 130 object node = input.LT(i); 175 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { 179 public virtual string ToString(object start, object stop) [all...] |
TraceDebugEventListener.cs | 65 public override void ConsumeNode(object t) { 72 public override void LT(int i, object t) { 84 public override void NilNode(object t) { 88 public override void CreateNode(object t) { 95 public override void CreateNode(object node, IToken token) { 102 public override void BecomeRoot(object newRoot, object oldRoot) { 107 public override void AddChild(object root, object child) { 112 public override void SetTokenBoundaries(object t, int tokenStartIndex, int tokenStopIndex) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeNodeStream.cs | 97 public virtual object TreeSource 105 * It is normally this object that instructs the node stream to 127 object node = input.LT( 1 ); 132 public virtual object this[int i] 140 public virtual object LT( int i ) 142 object node = input.LT( i ); 152 object node = input.LT( i ); 206 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ) 211 public virtual string ToString( object start, object stop [all...] |
TraceDebugEventListener.cs | 73 public override void ConsumeNode( object t ) 81 public override void LT( int i, object t ) 94 public override void NilNode( object t ) 99 public override void CreateNode( object t ) 107 public override void CreateNode( object node, IToken token ) 115 public override void BecomeRoot( object newRoot, object oldRoot ) 121 public override void AddChild( object root, object child ) 127 public override void SetTokenBoundaries( object t, int tokenStartIndex, int tokenStopIndex [all...] |
/external/guava/guava/src/com/google/common/collect/ |
SingletonImmutableList.java | 50 @Override public int indexOf(@Nullable Object object) { 51 return element.equals(object) ? 0 : -1; 58 @Override public int lastIndexOf(@Nullable Object object) { 59 return element.equals(object) ? 0 : -1; 116 @Override public boolean contains(@Nullable Object object) { 117 return element.equals(object); 120 @Override public boolean equals(Object object) [all...] |
/libcore/libdvm/src/main/java/java/lang/reflect/ |
Field.java | 127 Object[] annotation = getSignatureAnnotation(declaringClass, slot); 139 native private Object[] getSignatureAnnotation(Class declaringClass, int slot); 224 * Indicates whether or not the specified {@code object} is equal to this 225 * field. To be equal, the specified object must be an instance of 228 * @param object 229 * the object to compare 230 * @return {@code true} if the specified object is equal to this method, 235 public boolean equals(Object object) { 236 return object instanceof Field && toString().equals(object.toString()) [all...] |
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/ |
callback.h | 52 T1* object, void (T2::*method)()) { 53 return new ::base::Closure(::base::Bind(method, base::Unretained(object))); 58 T1* object, void (T2::*method)(Arg1)) { 60 ::base::Bind(method, base::Unretained(object))); 65 T1* object, 68 return new ::base::Closure(::base::Bind(method, base::Unretained(object), 82 T1* object, 86 return new ::base::Closure(::base::Bind(method, base::Unretained(object), 92 T1* object, 96 ::base::Bind(method, base::Unretained(object), arg1)) [all...] |
/libcore/libdvm/src/main/java/java/lang/ |
Daemons.java | 27 * Calls Object.finalize() on objects in the finalizer reference queue. The VM 162 private final ReferenceQueue<Object> queue = FinalizerReference.queue; 163 private volatile Object finalizingObject; 179 Object object = reference.get(); local 183 finalizingObject = object; 187 object.finalize(); 207 Object object = waitForObject(); local 208 if (object == null) 222 Object object = FinalizerDaemon.INSTANCE.finalizingObject; local [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
object-observe.js | 70 assertSame(this.records[i].object, recs[i].object); 79 assertEquals('object', typeof r); 99 Object.freeze(frozenFunction); 103 Object.defineProperty(changeRecordWithAccessor, 'name', { 112 // Object.observe 113 assertThrows(function() { Object.observe("non-object", observer.callback); }, 115 assertThrows(function() { Object.observe(obj, nonFunction); }, TypeError); 116 assertThrows(function() { Object.observe(obj, frozenFunction); }, TypeError) [all...] |
/external/chromium/base/win/ |
object_watcher.cc | 16 HANDLE object; // The object being watched member in struct:base::win::ObjectWatcher::Watch 31 delegate->OnObjectSignaled(object); 44 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) { 46 NOTREACHED() << "Already watching an object"; 52 watch->object = object; 57 // Since our job is to just notice when an object is signaled and report the 61 if (!RegisterWaitForSingleObject(&watch->wait_object, object, DoneWaiting, 115 return watch_->object; [all...] |
/external/chromium_org/ppapi/thunk/ |
ppb_network_list_thunk.cc | 32 return enter.object()->GetCount(); 40 return enter.object()->GetName(index); 48 return enter.object()->GetType(index); 56 return enter.object()->GetState(index); 66 return enter.object()->GetIpAddresses(index, output); 74 return enter.object()->GetDisplayName(index); 82 return enter.object()->GetMTU(index);
|
ppb_scrollbar_thunk.cc | 33 return enter.object()->GetThickness(); 40 return PP_FromBool(enter.object()->IsOverlay()); 47 return enter.object()->GetValue(); 53 enter.object()->SetValue(value); 59 enter.object()->SetDocumentSize(size); 67 enter.object()->SetTickMarks(tick_marks, count); 73 enter.object()->ScrollBy(unit, multiplier);
|
ppb_view_thunk.cc | 32 return enter.object()->GetRect(rect); 40 return enter.object()->IsFullscreen(); 48 return enter.object()->IsVisible(); 56 return enter.object()->IsPageVisible(); 64 return enter.object()->GetClipRect(clip); 72 return enter.object()->GetDeviceScale(); 80 return enter.object()->GetCSSScale();
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
UniqueStack.java | 28 * An attempt to insert on a stack an object that is already there will fail and result with a 29 * method {@link #push(Object)} returning false. 32 * All provided operations ({@link #pop()} and {@link #push(Object)}) are done in average constant 39 // Field used for optimization: when only one object was 49 * A wrapper for a {@code Iterator<T>} object that provides immutability. 80 * Add an object to a stack. Object will be added only if it is not already on the stack. 82 * @param object to be added. If it is {@code null} a {@code NullPointerException} will be thrown. 83 * @return true if the object was added successfully 85 public boolean push(T object) { [all...] |