Home
last modified time | relevance | path

Searched full:objects (Results 1 – 25 of 13791) sorted by relevance

12345678910>>...552

/external/python/cpython3/Tools/c-analyzer/
DTODO11 Objects/obmalloc.c:_PyMem static PyMemAllocatorEx _PyMem
12 Objects/obmalloc.c:_PyMem_Debug static struct { debug_alloc_api_t …
13 Objects/obmalloc.c:_PyMem_Raw static PyMemAllocatorEx _PyMem_Raw
14 Objects/obmalloc.c:_PyObject static PyMemAllocatorEx _PyObject
15 Objects/obmalloc.c:_PyObject_Arena static PyObjectArenaAllocator _PyO…
16 Objects/obmalloc.c:_Py_tracemalloc_config struct _PyTraceMalloc_Config _Py_t…
17 Objects/obmalloc.c:arenas static struct arena_object* arenas
18 Objects/obmalloc.c:maxarenas static uint maxarenas
19 Objects/obmalloc.c:narenas_currently_allocated static size_t narenas_currently_al…
20 Objects/obmalloc.c:narenas_highwater static size_t narenas_highwater
[all …]
/external/python/cpython3/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv7 # global objects to fix in core code
12 Objects/boolobject.c - PyBool_Type -
13 Objects/bytearrayobject.c - PyByteArrayIter_Type -
14 Objects/bytearrayobject.c - PyByteArray_Type -
15 Objects/bytesobject.c - PyBytesIter_Type -
16 Objects/bytesobject.c - PyBytes_Type -
17 Objects/capsule.c - PyCapsule_Type -
18 Objects/cellobject.c - PyCell_Type -
19 Objects/classobject.c - PyInstanceMethod_Type -
20 Objects/classobject.c - PyMethod_Type -
[all …]
Dignored.tsv388 Objects/exceptions.c ImportError_init kwlist -
389 Objects/interpreteridobject.c interpid_new kwlist -
390 Objects/weakrefobject.c weakref_call kwlist -
391 Objects/exceptions.c NameError_init kwlist -
392 Objects/exceptions.c AttributeError_init kwlist -
747 Objects/bytearrayobject.c - bytearray_methods -
748 Objects/bytearrayobject.c - bytearrayiter_methods -
749 Objects/bytesobject.c - bytes_methods -
750 Objects/bytesobject.c - striter_methods -
751 Objects/classobject.c - method_methods -
[all …]
/external/pdfium/fxjs/xfa/
Dcfxjse_resolveprocessor.cpp67 rnd.m_Result.objects.emplace_back(m_pEngine->GetThisObject()); in Resolve()
74 rnd.m_Result.objects.emplace_back(pObjNode); in Resolve()
76 rnd.m_Result.objects.emplace_back(rnd.m_CurObject); in Resolve()
82 if (!rnd.m_Result.objects.empty()) in Resolve()
85 return !rnd.m_Result.objects.empty(); in Resolve()
88 rnd.m_Result.objects.emplace_back(m_pEngine->GetDocument()->GetRoot()); in Resolve()
90 return !rnd.m_Result.objects.empty(); in Resolve()
110 rnd.m_Result.objects.emplace_back(pChild); in ResolveAnyChild()
115 for (const auto& pObject : rnd.m_Result.objects) in ResolveAnyChild()
120 rnd.m_Result.objects = in ResolveAnyChild()
[all …]
/external/autotest/client/cros/graphics/
Dgraphics_utils_unittest.py13 contents = '''274 shrinkable [0 free] objects, 249675776 bytes
15 frecon: 3 objects, 72192000 bytes (0 active, 0 inactive, 0 unbound, 0 closed)
16 chrome: 6 objects, 74629120 bytes (0 active, 0 inactive, 901120 unbound, 0 closed)
17 chrome: 14 objects, 1765376 bytes (0 active, 552960 inactive, 1212416 unbound, 0 closed)
18 chrome: 291 objects, 152686592 bytes (0 active, 0 inactive, 1183744 unbound, 0 closed)
19 chrome: 291 objects, 152686592 bytes (0 active, 75231232 inactive, 1183744 unbound, 0 closed)
20 chrome: 291 objects, 152686592 bytes (0 active, 155648 inactive, 1183744 unbound, 0 closed)
21 chrome: 291 objects, 152686592 bytes (64241664 active, 60248064 inactive, 1183744 unbound, 0 closed)
22 chrome: 291 objects, 152686592 bytes (0 active, 106496 inactive, 1183744 unbound, 0 closed)
23 chrome: 291 objects, 152686592 bytes (0 active, 724992 inactive, 1183744 unbound, 0 closed)
[all …]
/external/guava/android/guava-tests/test/com/google/common/base/
DObjectsTest.java26 * Tests for {@link Objects}.
34 assertTrue(Objects.equal(1, 1)); in testEqual()
35 assertTrue(Objects.equal(null, null)); in testEqual()
37 // test distinct string objects in testEqual()
40 assertTrue(Objects.equal(s1, s2)); in testEqual()
42 assertFalse(Objects.equal(s1, null)); in testEqual()
43 assertFalse(Objects.equal(null, s1)); in testEqual()
44 assertFalse(Objects.equal("foo", "bar")); in testEqual()
45 assertFalse(Objects.equal("1", 1)); in testEqual()
49 int h1 = Objects.hashCode(1, "two", 3.0); in testHashCode()
[all …]
/external/guava/guava-tests/test/com/google/common/base/
DObjectsTest.java26 * Tests for {@link Objects}.
34 assertTrue(Objects.equal(1, 1)); in testEqual()
35 assertTrue(Objects.equal(null, null)); in testEqual()
37 // test distinct string objects in testEqual()
40 assertTrue(Objects.equal(s1, s2)); in testEqual()
42 assertFalse(Objects.equal(s1, null)); in testEqual()
43 assertFalse(Objects.equal(null, s1)); in testEqual()
44 assertFalse(Objects.equal("foo", "bar")); in testEqual()
45 assertFalse(Objects.equal("1", 1)); in testEqual()
49 int h1 = Objects.hashCode(1, "two", 3.0); in testHashCode()
[all …]
/external/MPAndroidChart/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/notimportant/
DMainActivity.java68 ArrayList<ContentItem> objects = new ArrayList<>(); in onCreate() local
71 objects.add(0, new ContentItem("Line Charts")); in onCreate()
73 objects.add(1, new ContentItem("Basic", "Simple line chart.")); in onCreate()
74 objects.add(2, new ContentItem("Multiple", "Show multiple data sets.")); in onCreate()
75 objects.add(3, new ContentItem("Dual Axis", "Line chart with dual y-axes.")); in onCreate()
76 objects.add(4, new ContentItem("Inverted Axis", "Inverted y-axis.")); in onCreate()
77 objects.add(5, new ContentItem("Cubic", "Line chart with a cubic line shape.")); in onCreate()
78 objects.add(6, new ContentItem("Colorful", "Colorful line chart.")); in onCreate()
79 objects.add(7, new ContentItem("Performance", "Render 30.000 data points smoothly.")); in onCreate()
80 objects.add(8, new ContentItem("Filled", "Colored area between two lines.")); in onCreate()
[all …]
/external/python/cpython2/Doc/library/
Dgc.rst13 and set debugging options. It also provides access to unreachable objects that
19 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
45 unreachable objects found is returned.
71 Returns a list of all objects tracked by the collector, excluding the list
82 The GC classifies objects into three generations depending on how many
83 collection sweeps they have survived. New objects are placed in the youngest
86 generation, objects in that generation remain there after a collection. In
113 Return the list of objects that directly refer to any of objs. This function
115 types which do refer to other objects but do not support garbage collection will
118 Note that objects which have already been dereferenced, but which live in cycles
[all …]
/external/zxing/core/src/main/java/com/google/zxing/client/result/
DExpandedProductParsedResult.java30 import java.util.Objects;
102 return Objects.equals(productID, other.productID) in equals()
103 && Objects.equals(sscc, other.sscc) in equals()
104 && Objects.equals(lotNumber, other.lotNumber) in equals()
105 && Objects.equals(productionDate, other.productionDate) in equals()
106 && Objects.equals(bestBeforeDate, other.bestBeforeDate) in equals()
107 && Objects.equals(expirationDate, other.expirationDate) in equals()
108 && Objects.equals(weight, other.weight) in equals()
109 && Objects.equals(weightType, other.weightType) in equals()
110 && Objects.equals(weightIncrement, other.weightIncrement) in equals()
[all …]
/external/perfetto/test/trace_processor/diff_tests/stdlib/memory/
Dheap_graph_for_dominator_tree.textproto25 # objects in this part are 3 bytes in size.
46 objects {
52 objects {
60 objects {
67 objects {
73 objects {
80 objects {
86 objects {
93 objects {
100 objects {
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineFrameInfo.h55 /// of abstract objects on the stack frame.
58 /// objects requested clients. These identifiers are negative integers for
59 /// fixed stack objects (such as arguments passed on the stack) or nonnegative
60 /// for objects that may be reordered. Instructions which refer to stack
61 /// objects use a special MO_FrameIndex operand to represent these frame
69 /// variable sized stack objects, it is safe to decide whether there will be
70 /// any variable sized objects before all stack objects are known (for
72 /// objects).
97 // default, fixed objects are immutable unless marked otherwise.
101 // cannot alias any other memory objects.
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineFrameInfo.h81 /// of abstract objects on the stack frame.
84 /// objects requested clients. These identifiers are negative integers for
85 /// fixed stack objects (such as arguments passed on the stack) or nonnegative
86 /// for objects that may be reordered. Instructions which refer to stack
87 /// objects use a special MO_FrameIndex operand to represent these frame
95 /// variable sized stack objects, it is safe to decide whether there will be
96 /// any variable sized objects before all stack objects are known (for
98 /// objects).
137 // default, fixed objects are immutable unless marked otherwise.
141 // cannot alias any other memory objects.
[all …]
/external/python/cpython3/Doc/library/
Dgc.rst14 and set debugging options. It also provides access to unreachable objects that
20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
46 unreachable objects found is returned.
71 Returns a list of all objects tracked by the collector, excluding the list
72 returned. If *generation* is not None, return only the objects tracked by
89 * ``collected`` is the total number of objects collected inside this
92 * ``uncollectable`` is the total number of objects which were found
104 The GC classifies objects into three generations depending on how many
105 collection sweeps they have survived. New objects are placed in the youngest
108 generation, objects in that generation remain there after a collection. In
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
DMachineFrameInfo.h81 /// of abstract objects on the stack frame.
84 /// objects requested clients. These identifiers are negative integers for
85 /// fixed stack objects (such as arguments passed on the stack) or nonnegative
86 /// for objects that may be reordered. Instructions which refer to stack
87 /// objects use a special MO_FrameIndex operand to represent these frame
95 /// variable sized stack objects, it is safe to decide whether there will be
96 /// any variable sized objects before all stack objects are known (for
98 /// objects).
137 // default, fixed objects are immutable unless marked otherwise.
141 // cannot alias any other memory objects.
[all …]
/external/python/cpython3/
DAndroid.bp228 "Objects/abstract.c",
229 "Objects/accu.c",
230 "Objects/boolobject.c",
231 "Objects/bytes_methods.c",
232 "Objects/bytearrayobject.c",
233 "Objects/bytesobject.c",
234 "Objects/call.c",
235 "Objects/capsule.c",
236 "Objects/cellobject.c",
237 "Objects/classobject.c",
[all …]
/external/python/cpython2/PCbuild/
Dpythoncore.vcxproj.filters19 <Filter Include="Objects">
378 <ClInclude Include="..\Objects\stringlib\count.h">
379 <Filter>Objects</Filter>
381 <ClInclude Include="..\Objects\stringlib\fastsearch.h">
382 <Filter>Objects</Filter>
384 <ClInclude Include="..\Objects\stringlib\find.h">
385 <Filter>Objects</Filter>
387 <ClInclude Include="..\Objects\stringlib\partition.h">
388 <Filter>Objects</Filter>
390 <ClInclude Include="..\Objects\stringlib\split.h">
[all …]
/external/harfbuzz_ng/test/fuzzing/
Dhb-repacker-fuzzer.cc22 * number of objects: 2 bytes
23 * objects[number of objects]:
45 void cleanup (hb_object_t* objects, uint16_t num_objects) in cleanup() argument
49 free (objects[i].head); in cleanup()
50 free (objects[i].real_links); in cleanup()
54 void add_links_to_objects (hb_object_t* objects, uint16_t num_objects, in add_links_to_objects() argument
67 objects[i].num_real_links = link_count[i]; in add_links_to_objects()
68 objects[i].real_links = (hb_link_t*) calloc (link_count[i], sizeof (hb_link_t)); in add_links_to_objects()
69 objects[i].num_virtual_links = 0; in add_links_to_objects()
70 objects[i].virtual_links = nullptr; in add_links_to_objects()
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DTestObjectOrArrayDeserialization.java16 private final List<SomeObject> objects; field in TestObjectOrArrayDeserialization.ArrayOrObject
20 public ArrayOrObject(List<SomeObject> objects) { in ArrayOrObject() argument
21 this.objects = objects; in ArrayOrObject()
27 this.objects = null; in ArrayOrObject()
34 assertNull("expected objects field to be null", arrayOrObject.objects); in testObjectCase()
40 assertNotNull("expected objects field not to be null", arrayOrObject.objects); in testEmptyArrayCase()
41 assertTrue("expected objects field to be an empty list", arrayOrObject.objects.isEmpty()); in testEmptyArrayCase()
47 assertNotNull("expected objects field not to be null", arrayOrObject.objects); in testNotEmptyArrayCase()
48 assertEquals("expected objects field to have size 2", 2, arrayOrObject.objects.size()); in testNotEmptyArrayCase()
/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/number/
DMacroProps.java6 import java.util.Objects;
90 return Objects.hash(notation, in hashCode()
120 return Objects.equals(notation, other.notation) in equals()
121 && Objects.equals(unit, other.unit) in equals()
122 && Objects.equals(perUnit, other.perUnit) in equals()
123 && Objects.equals(precision, other.precision) in equals()
124 && Objects.equals(roundingMode, other.roundingMode) in equals()
125 && Objects.equals(grouping, other.grouping) in equals()
126 && Objects.equals(padder, other.padder) in equals()
127 && Objects.equals(integerWidth, other.integerWidth) in equals()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DMacroProps.java7 import java.util.Objects;
94 return Objects.hash(notation, in hashCode()
124 return Objects.equals(notation, other.notation) in equals()
125 && Objects.equals(unit, other.unit) in equals()
126 && Objects.equals(perUnit, other.perUnit) in equals()
127 && Objects.equals(precision, other.precision) in equals()
128 && Objects.equals(roundingMode, other.roundingMode) in equals()
129 && Objects.equals(grouping, other.grouping) in equals()
130 && Objects.equals(padder, other.padder) in equals()
131 && Objects.equals(integerWidth, other.integerWidth) in equals()
[all …]
/external/robolectric/resources/src/main/java/org/robolectric/res/android/
DConfigDescription.java9 import java.util.Objects;
164 !Objects.equals(part, "car")) { in initFromParts()
386 if (Objects.equals(name, kWildcardName)) { in parseLayoutDirection()
393 } else if (Objects.equals(name, "ldltr")) { in parseLayoutDirection()
400 } else if (Objects.equals(name, "ldrtl")) { in parseLayoutDirection()
413 if (Objects.equals(name, kWildcardName)) { in parseSmallestScreenWidthDp()
429 if (Objects.equals(name, kWildcardName)) { in parseScreenWidthDp()
445 if (Objects.equals(name, kWildcardName)) { in parseScreenHeightDp()
461 if (Objects.equals(name, kWildcardName)) { in parseScreenLayoutSize()
468 } else if (Objects.equals(name, "small")) { in parseScreenLayoutSize()
[all …]
/external/python/mobly/mobly/
Dcontroller_manager.py55 """Manages the controller objects for Mobly tests.
57 This manages the life cycles and info retrieval of all controller objects
69 ) # controller_name: objects
82 controller module raises exceptions. If False, the objects
85 objects to be created. Default is one, since you should not
90 A list of controller objects instantiated from controller_module, or
97 * The actual number of objects instantiated is less than the
110 # Create controller objects.
127 objects = module.create(controller_config)
130 'Failed to initialize objects for controller %s, abort!',
[all …]
/external/eigen/unsupported/Eigen/src/BVH/
DKdBVH.h34 void operator()(const ObjectList &objects, BoxIter boxBegin, BoxIter boxEnd, VolumeList &outBoxes) in operator()
37 eigen_assert(outBoxes.size() == objects.size()); in operator()
38 EIGEN_ONLY_USED_FOR_DEBUG(objects); in operator()
44 void operator()(const ObjectList &objects, int, int, VolumeList &outBoxes)
46 outBoxes.reserve(objects.size());
47 for(int i = 0; i < (int)objects.size(); ++i)
48 outBoxes.push_back(bounding_box(objects[i]));
64 …* Given a sequence of objects, it computes their bounding boxes, constructs a Kd-tree of their ce…
97 objects.clear();
101 objects.insert(objects.end(), begin, end);
[all …]
/external/python/google-api-python-client/docs/dyn/
Ddfareporting_v3_5.accountUserProfiles.html124 …&quot;objectIds&quot;: [ # Applicable when status is ASSIGNED. The user has access to objects with…
127 …s access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the …
131 …&quot;objectIds&quot;: [ # Applicable when status is ASSIGNED. The user has access to objects with…
134 …s access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the …
144 …&quot;objectIds&quot;: [ # Applicable when status is ASSIGNED. The user has access to objects with…
147 …s access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the …
154 …&quot;objectIds&quot;: [ # Applicable when status is ASSIGNED. The user has access to objects with…
157 …s access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the …
177 …&quot;objectIds&quot;: [ # Applicable when status is ASSIGNED. The user has access to objects with…
180 …s access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the …
[all …]

12345678910>>...552