Home
last modified time | relevance | path

Searched defs:object (Results 1 – 25 of 1444) sorted by relevance

12345678910>>...58

/external/skia/site/user/modules/
Dpathkit.md358 #### `addPath(otherPath)` ####
363 #### `addPath(otherPath, transform)` ####
372 #### `addPath(otherPath, a, b, c, d, e, f)` ####
398 #### `addPath(otherPath, scaleX, skewX, transX, skewY, scaleY, transY, pers0, pers1, pers2)` ####
424 #### `arc(x, y, radius, startAngle, endAngle, ccw=false)` ####
445 #### `arcTo(x1, y1, x2, y2, radius)` ####
453 #### `close()` or `closePath()` ####
458 #### `computeTightBounds()` ####
464 #### `conicTo(x1, y1, x2, y2, w)` ####
472 #### `copy()` ####
[all …]
/external/skqp/site/user/modules/
Dpathkit.md359 #### `addPath(otherPath)` ####
364 #### `addPath(otherPath, transform)` ####
373 #### `addPath(otherPath, a, b, c, d, e, f)` ####
399 #### `addPath(otherPath, scaleX, skewX, transX, skewY, scaleY, transY, pers0, pers1, pers2)` ####
425 #### `arc(x, y, radius, startAngle, endAngle, ccw=false)` ####
446 #### `arcTo(x1, y1, x2, y2, radius)` ####
454 #### `close()` or `closePath()` ####
459 #### `computeTightBounds()` ####
465 #### `conicTo(x1, y1, x2, y2, w)` ####
473 #### `copy()` ####
[all …]
/external/v8/src/handles/
Dmaybe-handles-inl.h17 MaybeHandle<T>::MaybeHandle(T object, Isolate* isolate) in MaybeHandle()
21 MaybeHandle<T>::MaybeHandle(T object, LocalHeap* local_heap) in MaybeHandle()
24 MaybeObjectHandle::MaybeObjectHandle(MaybeObject object, Isolate* isolate) { in MaybeObjectHandle()
36 MaybeObjectHandle::MaybeObjectHandle(MaybeObject object, in MaybeObjectHandle()
49 MaybeObjectHandle::MaybeObjectHandle(Handle<Object> object) in MaybeObjectHandle()
52 MaybeObjectHandle::MaybeObjectHandle(Object object, Isolate* isolate) in MaybeObjectHandle()
56 MaybeObjectHandle::MaybeObjectHandle(Object object, LocalHeap* local_heap) in MaybeObjectHandle()
60 MaybeObjectHandle::MaybeObjectHandle(Object object, in MaybeObjectHandle()
65 MaybeObjectHandle::MaybeObjectHandle(Handle<Object> object, in MaybeObjectHandle()
69 MaybeObjectHandle MaybeObjectHandle::Weak(Handle<Object> object) { in Weak()
[all …]
Dhandles-inl.h20 HandleBase::HandleBase(Address object, Isolate* isolate) in HandleBase()
23 HandleBase::HandleBase(Address object, LocalIsolate* isolate) in HandleBase()
26 HandleBase::HandleBase(Address object, LocalHeap* local_heap) in HandleBase()
39 Handle<T> Handle<T>::New(T object, Isolate* isolate) { in New()
51 Handle<T>::Handle(T object, Isolate* isolate) in Handle()
55 Handle<T>::Handle(T object, LocalIsolate* isolate) in Handle()
59 Handle<T>::Handle(T object, LocalHeap* local_heap) in Handle()
63 V8_INLINE Handle<T> handle(T object, Isolate* isolate) { in handle()
68 V8_INLINE Handle<T> handle(T object, LocalIsolate* isolate) { in handle()
73 V8_INLINE Handle<T> handle(T object, LocalHeap* local_heap) { in handle()
/external/tensorflow/tensorflow/python/util/
Dtf_inspect.py301 def getdoc(object): # pylint: disable=redefined-builtin argument
316 def getfile(object): # pylint: disable=redefined-builtin argument
330 def getmembers(object, predicate=None): # pylint: disable=redefined-builtin argument
335 def getmodule(object): # pylint: disable=redefined-builtin argument
345 def getsource(object): # pylint: disable=redefined-builtin argument
350 def getsourcefile(object): # pylint: disable=redefined-builtin argument
355 def getsourcelines(object): # pylint: disable=redefined-builtin argument
360 def isbuiltin(object): # pylint: disable=redefined-builtin argument
365 def isclass(object): # pylint: disable=redefined-builtin argument
370 def isfunction(object): # pylint: disable=redefined-builtin argument
[all …]
/external/python/cpython2/Lib/
Dpprint.py55 def pprint(object, stream=None, indent=1, width=80, depth=None): argument
61 def pformat(object, indent=1, width=80, depth=None): argument
65 def saferepr(object): argument
69 def isreadable(object): argument
73 def isrecursive(object): argument
116 def pprint(self, object): argument
120 def pformat(self, object): argument
125 def isrecursive(self, object): argument
128 def isreadable(self, object): argument
132 def _format(self, object, stream, indent, allowance, context, level): argument
[all …]
Dinspect.py51 def ismodule(object): argument
59 def isclass(object): argument
67 def ismethod(object): argument
78 def ismethoddescriptor(object): argument
98 def isdatadescriptor(object): argument
110 def ismemberdescriptor(object): argument
118 def ismemberdescriptor(object): argument
127 def isgetsetdescriptor(object): argument
135 def isgetsetdescriptor(object): argument
142 def isfunction(object): argument
[all …]
/external/elfutils/lib/
Dstdatomic-fbsd.h265 #define atomic_compare_exchange_strong_explicit(object, expected, \ argument
269 #define atomic_compare_exchange_weak_explicit(object, expected, \ argument
273 #define atomic_exchange_explicit(object, desired, order) \ argument
275 #define atomic_fetch_add_explicit(object, operand, order) \ argument
277 #define atomic_fetch_and_explicit(object, operand, order) \ argument
279 #define atomic_fetch_or_explicit(object, operand, order) \ argument
281 #define atomic_fetch_sub_explicit(object, operand, order) \ argument
283 #define atomic_fetch_xor_explicit(object, operand, order) \ argument
285 #define atomic_load_explicit(object, order) \ argument
287 #define atomic_store_explicit(object, desired, order) \ argument
[all …]
/external/v8/src/heap/
Dobjects-visiting-inl.h28 T HeapVisitor<ResultType, ConcreteVisitor>::Cast(HeapObject object) { in Cast()
33 ResultType HeapVisitor<ResultType, ConcreteVisitor>::Visit(HeapObject object) { in Visit()
39 HeapObject object) { in Visit()
110 Map map, HeapObject object) { in VisitDataObject()
122 Map map, JSObject object) { in VisitJSObjectFast()
135 Map map, JSObject object) { in VisitJSApiObject()
148 Map map, HeapObject object) { in VisitStruct()
161 Map map, FreeSpace object) { in VisitFreeSpace()
172 NativeContext object) { in VisitNativeContext()
181 JSObject object) { in VisitJSApiObject()
[all …]
Dmarking-worklist-inl.h30 void MarkingWorklists::Local::Push(HeapObject object) { active_.Push(object); } in Push()
32 bool MarkingWorklists::Local::Pop(HeapObject* object) { in Pop()
40 void MarkingWorklists::Local::PushOnHold(HeapObject object) { in PushOnHold()
44 bool MarkingWorklists::Local::PopOnHold(HeapObject* object) { in PopOnHold()
48 void MarkingWorklists::Local::PushEmbedder(HeapObject object) { in PushEmbedder()
52 bool MarkingWorklists::Local::PopEmbedder(HeapObject* object) { in PopEmbedder()
Dconcurrent-marking.cc96 static V8_INLINE T Cast(HeapObject object) { in Cast()
104 int VisitJSObject(Map map, JSObject object) { in VisitJSObject()
108 int VisitJSObjectFast(Map map, JSObject object) { in VisitJSObjectFast()
112 int VisitWasmInstanceObject(Map map, WasmInstanceObject object) { in VisitWasmInstanceObject()
116 int VisitJSWeakCollection(Map map, JSWeakCollection object) { in VisitJSWeakCollection()
120 int VisitConsString(Map map, ConsString object) { in VisitConsString()
124 int VisitSlicedString(Map map, SlicedString object) { in VisitSlicedString()
128 int VisitThinString(Map map, ThinString object) { in VisitThinString()
132 int VisitSeqOneByteString(Map map, SeqOneByteString object) { in VisitSeqOneByteString()
138 int VisitSeqTwoByteString(Map map, SeqTwoByteString object) { in VisitSeqTwoByteString()
[all …]
Dmarking-visitor-inl.h24 HeapObject host, HeapObject object) { in MarkObject()
74 typename TSlot::TObject object = slot.Relaxed_Load(); in VisitPointersImpl() local
91 HeapObject object = rinfo->target_object(); in VisitEmbeddedPointer() local
118 Map map, BytecodeArray object) { in VisitBytecodeArray()
131 Map map, JSFunction object) { in VisitJSFunction()
167 VisitFixedArrayWithProgressBar(Map map, FixedArray object, in VisitFixedArrayWithProgressBar()
196 Map map, FixedArray object) { in VisitFixedArray()
207 Map map, FixedDoubleArray object) { in VisitFixedDoubleArray()
219 T object) { in VisitEmbedderTracingSubclass()
232 Map map, JSObject object) { in VisitJSApiObject()
[all …]
/external/flac/libFLAC/
Dmetadata_object.c164 static void seektable_calculate_length_(FLAC__StreamMetadata *object) in seektable_calculate_length_()
192 static void vorbiscomment_calculate_length_(FLAC__StreamMetadata *object) in vorbiscomment_calculate_length_()
249 static FLAC__bool vorbiscomment_set_entry_(FLAC__StreamMetadata *object, FLAC__StreamMetadata_Vorbi… in vorbiscomment_set_entry_()
294 static int vorbiscomment_find_entry_from_(const FLAC__StreamMetadata *object, unsigned offset, cons… in vorbiscomment_find_entry_from_()
310 static void cuesheet_calculate_length_(FLAC__StreamMetadata *object) in cuesheet_calculate_length_()
396 static FLAC__bool cuesheet_set_track_(FLAC__StreamMetadata *object, FLAC__StreamMetadata_CueSheet_T… in cuesheet_set_track_()
432 FLAC__StreamMetadata *object; in FLAC__metadata_object_new() local
520 FLAC_API FLAC__StreamMetadata *FLAC__metadata_object_clone(const FLAC__StreamMetadata *object) in FLAC__metadata_object_clone()
626 void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object) in FLAC__metadata_object_delete_data()
689 FLAC_API void FLAC__metadata_object_delete(FLAC__StreamMetadata *object) in FLAC__metadata_object_delete()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkRefUtilImpl.inl167 VkInstance object = 0; local
174 VkDevice object = 0; local
181 VkDeviceMemory object = 0; local
188 VkFence object = 0; local
195 VkSemaphore object = 0; local
202 VkEvent object = 0; local
209 VkQueryPool object = 0; local
216 VkBuffer object = 0; local
223 VkBufferView object = 0; local
230 VkImage object = 0; local
[all …]
/external/python/cpython3/Lib/
Dpprint.py47 def pprint(object, stream=None, indent=1, width=80, depth=None, *, argument
55 def pformat(object, indent=1, width=80, depth=None, *, argument
61 def pp(object, *args, sort_dicts=False, **kwargs): argument
65 def saferepr(object): argument
69 def isreadable(object): argument
73 def isrecursive(object): argument
147 def pprint(self, object): argument
151 def pformat(self, object): argument
156 def isrecursive(self, object): argument
159 def isreadable(self, object): argument
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
Dcompiler.cc60 bool ExceedsMaxSize(const Object& object, const GpuInfo& gpu_info) { in ExceedsMaxSize()
153 Object object = MakePHWC4Ref(value->id, value->tensor.shape); in Compile() local
189 auto set_object_type = [&](Object* object) { in Compile()
207 for (auto& object : attr.code.objects) { in Compile() local
235 auto object = objects[ref->id]; in Compile() local
240 auto object = objects[ref->id]; in Compile() local
248 auto set_binding = [&](ObjectType type, Object& object) { in Compile()
253 for (auto& object : attr.inputs) { in Compile() local
256 for (auto& object : attr.outputs) { in Compile() local
259 for (auto& object : attr.code.objects) { in Compile() local
[all …]
/external/fonttools/Doc/source/designspaceLib/
Dscripting.rst65 Option: add label names
82 Option: add a map
129 Option: exclude glyphs
167 Option: add more names
179 Option: add glyph specific masters
/external/v8/src/execution/
Disolate-utils-inl.h25 inline IsolateRoot GetIsolateForPtrCompr(HeapObject object) { in GetIsolateForPtrCompr()
29 V8_INLINE Heap* GetHeapFromWritableObject(HeapObject object) { in GetHeapFromWritableObject()
47 V8_INLINE Isolate* GetIsolateFromWritableObject(HeapObject object) { in GetIsolateFromWritableObject()
60 V8_INLINE bool GetIsolateFromHeapObject(HeapObject object, Isolate** isolate) { in GetIsolateFromHeapObject()
/external/v8/src/objects/
Dmaybe-object-inl.h27 MaybeObject MaybeObject::FromObject(Object object) { in FromObject()
32 MaybeObject MaybeObject::MakeWeak(MaybeObject object) { in MakeWeak()
50 HeapObjectReference::HeapObjectReference(Object object) in HeapObjectReference()
54 HeapObjectReference HeapObjectReference::Strong(Object object) { in Strong()
61 HeapObjectReference HeapObjectReference::Weak(Object object) { in Weak()
68 HeapObjectReference HeapObjectReference::From(Object object, in From()
/external/replicaisland/src/com/replica/replicaisland/
DObjectManager.java52 BaseObject object = mObjects.get(i); in reset() local
62 BaseObject object = (BaseObject)additionsArray[i]; in commitUpdates() local
73 BaseObject object = (BaseObject)removalsArray[i]; in commitUpdates() local
87 BaseObject object = (BaseObject)objectArray[i]; in update() local
110 public void add(BaseObject object) { in add()
114 public void remove(BaseObject object) { in remove()
134 T object = null; in findByClass() local
/external/v8/src/builtins/
Dbuiltins-object.cc25 Handle<JSReceiver> object; in BUILTIN() local
63 Object ObjectDefineAccessor(Isolate* isolate, Handle<Object> object, in ObjectDefineAccessor()
104 Object ObjectLookupAccessor(Isolate* isolate, Handle<Object> object, in ObjectLookupAccessor()
179 Handle<Object> object = args.at(0); // Receiver. in BUILTIN() local
189 Handle<Object> object = args.at(0); // Receiver. in BUILTIN() local
199 Handle<Object> object = args.at(0); in BUILTIN() local
208 Handle<Object> object = args.at(0); in BUILTIN() local
216 Handle<Object> object = args.atOrUndefined(isolate, 1); in BUILTIN() local
242 Handle<Object> object = args.receiver(); in BUILTIN() local
274 Handle<Object> object = args.atOrUndefined(isolate, 1); in GetOwnPropertyKeys() local
[all …]
/external/python/cpython2/Include/
Dpymactoolbox.h89 #define PyMac_INIT_TOOLBOX_OBJECT_NEW(object, rtn) { \ argument
93 #define PyMac_INIT_TOOLBOX_OBJECT_CONVERT(object, rtn) { \ argument
102 #define PyMac_INIT_TOOLBOX_OBJECT_NEW(object, rtn) argument
103 #define PyMac_INIT_TOOLBOX_OBJECT_CONVERT(object, rtn) argument
/external/v8/src/heap/cppgc/
Dpointer-policies.cc24 PersistentRegion& StrongPersistentPolicy::GetPersistentRegion(void* object) { in GetPersistentRegion()
29 PersistentRegion& WeakPersistentPolicy::GetPersistentRegion(void* object) { in GetPersistentRegion()
35 void* object) { in GetPersistentRegion()
41 void* object) { in GetPersistentRegion()
/external/clang/lib/Headers/
Dstdatomic.h131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) argument
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) argument
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) argument
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_str… argument
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(… argument
146 #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST) argument
149 #define atomic_fetch_sub(object, operand) __c11_atomic_fetch_sub(object, operand, __ATOMIC_SEQ_CST) argument
152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) argument
155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) argument
158 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) argument
[all …]
/external/webrtc/webrtc/base/
Dkeep_ref_until_done.h23 static inline void DoNothing(const scoped_refptr<T>& object) {} in DoNothing()
30 static inline Callback0<void> KeepRefUntilDone(ObjectT* object) { in KeepRefUntilDone()
36 const scoped_refptr<ObjectT>& object) { in KeepRefUntilDone()

12345678910>>...58