HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 176 - 200 of 7860) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 114 * which Token object was examined. Like consumeToken, this indicates
183 * data fields are transmitted. The token object or whatever that
184 * caused the problem was the last object referenced by LT. The
286 void ConsumeNode( object t );
294 void LT( int i, object t );
314 void NilNode( object t );
323 void ErrorNode( object t );
333 void CreateNode( object t );
343 void CreateNode( object node, IToken token );
363 void BecomeRoot( object newRoot, object oldRoot )
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Pool.java 48 /** Returns an object from this pool. The object may be new (from {@link #newObject()}) or reused (previously
49 * {@link #free(Object) freed}). */
54 /** Puts the specified object in the pool, making it eligible to be returned by {@link #obtain()}. If the pool already contains
55 * {@link #max} free objects, the specified object is reset but not added to the pool. */
56 public void free (T object) {
57 if (object == null) throw new IllegalArgumentException("object cannot be null.");
59 freeObjects.add(object);
62 reset(object);
78 T object = objects.get(i); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleNodeStream.cs 53 object oneElement
61 IList<object> elements
65 public object NextNode() {
69 override protected object ToTree(object el) {
73 protected override object Dup(object el) {
RewriteRuleTokenStream.cs 55 object oneElement
63 IList<object> elements
71 /// ITreeAdaptor.Create() returns an object, so no further restrictions possible.
73 public virtual object NextNode() {
86 override protected object ToTree(object el) {
90 protected override object Dup(object el) {
  /external/clang/lib/Headers/
stdatomic.h 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST)
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST)
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST
    [all...]
  /external/v8/test/mjsunit/es6/
object-literals-method.js 9 var object = {
14 assertEquals(42, object.method());
19 var object = {
21 assertEquals(object, this);
24 object.method();
29 var object = {
35 var desc = Object.getOwnPropertyDescriptor(object, 'method');
46 var object = {
50 assertEquals(Function.prototype, Object.getPrototypeOf(object.method))
    [all...]
arrow-functions-this.js 5 var object = {};
36 var withObject = { 'this': object }
43 assertEquals(global, call(globalSloppyArrow, object));
44 assertEquals(global, call(globalStrictArrow, object));
45 assertEquals(global, call(globalSloppyArrowEval, object, "this"));
46 assertEquals(global, call(globalStrictArrowEval, object, "this"));
47 assertEquals(global, call(globalSloppyArrowEval, object, "(() => this)()"));
48 assertEquals(global, call(globalStrictArrowEval, object, "(() => this)()"));
50 assertEquals(object, call(sloppyFunctionArrow, object));
    [all...]
object-literals-super.js 9 var object = {
36 assertEquals(object, object.method[%HomeObjectSymbol()]);
37 var desc = Object.getOwnPropertyDescriptor(object, 'getter');
38 assertEquals(object, desc.get[%HomeObjectSymbol()]);
39 desc = Object.getOwnPropertyDescriptor(object, 'setter');
40 assertEquals(object, desc.set[%HomeObjectSymbol()]);
41 desc = Object.getOwnPropertyDescriptor(object, 'accessor')
    [all...]
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
stdatomic.h 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST)
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST)
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
stdatomic.h 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST)
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST)
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST
    [all...]
  /art/runtime/
art_field-inl.h 28 #include "mirror/object-inl.h"
63 inline uint32_t ArtField::Get32(mirror::Object* object) {
64 DCHECK(object != nullptr) << PrettyField(this);
65 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
67 return object->GetField32Volatile(GetOffset());
69 return object->GetField32(GetOffset());
73 inline void ArtField::Set32(mirror::Object* object, uint32_t new_value) {
74 DCHECK(object != nullptr) << PrettyField(this)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /external/vulkan-validation-layers/loader/
cJSON.h 47 struct cJSON *next, *prev; /* next/prev allow you to walk array/object
50 struct cJSON *child; /* An array or object item will have a child pointer
52 array/object. */
62 in the list of subitems of an object. */
73 /* Supply a block of JSON, and this returns a cJSON object you can interrogate.
89 /* Returns the number of items in an array (or object). */
94 /* Get item "string" from object. Case insensitive. */
95 extern cJSON *cJSON_GetObjectItem(cJSON *object, const char *string);
118 /* Append item to the specified array/object. */
120 extern void cJSON_AddItemToObject(cJSON *object, const char *string
    [all...]
  /external/v8/src/
allocation-site-scopes.cc 41 Handle<JSObject> object) {
42 if (!object.is_null()) {
46 scope_site->set_transition_info(*object);
51 static_cast<void*>(*object));
56 static_cast<void*>(*object));
63 bool AllocationSiteUsageContext::ShouldCreateMemento(Handle<JSObject> object) {
64 if (activated_ && AllocationSite::CanTrack(object->map()->instance_type())) {
66 AllocationSite::GetMode(object->GetElementsKind()) ==
70 object->IsJSArray() ? "JSArray" : "JSObject",
71 static_cast<void*>(*object));
    [all...]
  /external/vulkan-validation-layers/layers/
threading.h 44 THREADING_CHECKER_MULTIPLE_THREADS, // Object used simultaneously by multiple threads
45 THREADING_CHECKER_SINGLE_THREAD_REUSE, // Object used simultaneously by recursion in single thread
65 void startWrite(debug_report_data *report_data, T object) {
69 if (uses.find(object) == uses.end()) {
70 // There is no current use of the object. Record writer thread.
71 struct object_use_data *use_data = &uses[object];
76 struct object_use_data *use_data = &uses[object];
80 skipCall |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, objectType, (uint64_t)(object),
82 "THREADING ERROR : object of type %s is simultaneously used in thread %ld and thread %ld",
85 // Wait for thread-safe access to object instead of skipping call
    [all...]
  /external/tpm2/
Object.c 17 // This function is called at TPM2_Startup() to initialize the object subsystem.
25 // object slots initialization
37 // In this implementation, a persistent object is moved from NV into an object slot for processing. It is
51 // If an object is a temporary evict object, flush it from slot
52 if(s_objects[i].object.entity.attributes.evict == SET)
61 // This function checks to see if a transient handle references a loaded object. This routine should not be
67 // TRUE if the handle references a loaded object
68 // FALSE if the handle is not an object handle, or it does not reference to
146 OBJECT *object = ObjectGet(handle); local
165 OBJECT *object = ObjectGet(handle); local
185 OBJECT *object = ObjectGet(handle); local
235 OBJECT *object = ObjectGet(handle); local
304 OBJECT *object = NULL; local
676 OBJECT *object; local
820 OBJECT *object = ObjectGet(handle); local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.require/
bullet_3_and_4.pass.cpp 20 // Bullets 3 and 4 handle the case where 'f' is a pointer to member object.
21 // Bullet 3 only handles the cases where t1 is an object of type T or a
26 // 2) The return type is not less cv-qualified that the object that contains it.
27 // 3) The return type is not less cv-qualified than object type.
28 // 4) The call object is perfectly forwarded.
29 // 5) Classes that are publicly derived from 'T' are accepted as the call object
31 // as the call object.
32 // 7) Pointers to T or a type derived from T can be used as the call object.
43 TestMemberObject() : object() {}
44 Tp object; member in struct:TestMemberObject
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtilImpl.inl 131 VkInstance object = 0;
132 VK_CHECK(vk.createInstance(pCreateInfo, pAllocator, &object));
133 return Move<VkInstance>(check<VkInstance>(object), Deleter<VkInstance>(vk, object, pAllocator));
138 VkDevice object = 0;
139 VK_CHECK(vk.createDevice(physicalDevice, pCreateInfo, pAllocator, &object));
140 return Move<VkDevice>(check<VkDevice>(object), Deleter<VkDevice>(vk, object, pAllocator));
145 VkDeviceMemory object = 0;
146 VK_CHECK(vk.allocateMemory(device, pAllocateInfo, pAllocator, &object));
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleNodeStream.cs 53 public RewriteRuleNodeStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
64 public virtual object NextNode()
69 protected override object ToTree( object el )
74 protected override object Dup( object el )
RewriteRuleTokenStream.cs 48 public RewriteRuleTokenStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
60 public virtual object NextNode()
76 protected override object ToTree( object el )
81 protected override object Dup( object el )
  /external/libchrome/base/
sequenced_task_runner.h 119 // Submits a non-nestable task to delete the given object. Returns
120 // true if the object may be deleted at some point in the future,
121 // and false if the object definitely will not be deleted.
124 const T* object) {
127 this, from_here, object);
130 // Submits a non-nestable task to release the given object. Returns
131 // true if the object may be released at some point in the future,
132 // and false if the object definitely will not be released.
135 T* object) {
138 this, from_here, object);
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileUtils.h 10 // Contains utilities for compiling IR to object files.
20 #include "llvm/Object/ObjectFile.h"
34 object::OwningBinary<object::ObjectFile> operator()(Module &M) const {
45 ErrorOr<std::unique_ptr<object::ObjectFile>> Obj =
46 object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
48 typedef object::OwningBinary<object::ObjectFile> OwningObj;

Completed in 296 milliseconds

1 2 3 4 5 6 78 91011>>