Home
last modified time | relevance | path

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

12345678910>>...692

/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 …]
D_parser.py43 Objects/**/*.c
79 Objects/unicodetype_db.h
93 Objects/mimalloc/*.c
128 Objects/stringlib/*.h Objects
152 Objects/stringlib/join.h stringlib/stringdefs.h
153 Objects/stringlib/ctype.h stringlib/stringdefs.h
154 Objects/stringlib/transmogrify.h stringlib/stringdefs.h
155 #Objects/stringlib/fastsearch.h stringlib/stringdefs.h
156 #Objects/stringlib/count.h stringlib/stringdefs.h
157 #Objects/stringlib/find.h stringlib/stringdefs.h
[all …]
/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/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/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/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/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/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/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/android/
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/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 collected objects and uncollectable objects 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/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/rust/android-crates-io/crates/jni/
D.cargo-checksum.json1objects/auto_elements.rs":"ef5954e4ea0efc6b18da5e51ed2f95620bc8906fd3fe7c8e0f57328fb3dba3b5","src/…
D.android-checksum.json1objects/auto_elements.rs":"a91a6dd41d78916851d033118b6a06576e707faa12d61d835b88987167581673","src/…
/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/harfbuzz_ng/test/fuzzing/
Dhb-repacker-fuzzer.cc22 * number of objects: 2 bytes
23 * objects[number of objects]:
45 void cleanup (hb_subset_serialize_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_subset_serialize_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()
68objects[i].real_links = (hb_subset_serialize_link_t*) calloc (link_count[i], sizeof (hb_subset_ser… 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/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/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/rust/android-crates-io/extra_versions/crates/jni/
D.cargo-checksum.json1objects/auto_array.rs":"3d80e925c6c7af8ff28d8b608ed525298f77ea3bdfc802f8f3cd502c155b7b0b","src/wra…
/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/robolectric/resources/src/main/java/org/robolectric/res/android/
DConfigDescription.java9 import java.util.Objects;
165 && !Objects.equals(part, "car")) { in initFromParts()
388 if (Objects.equals(name, kWildcardName)) { in parseLayoutDirection()
394 } else if (Objects.equals(name, "ldltr")) { in parseLayoutDirection()
400 } else if (Objects.equals(name, "ldrtl")) { in parseLayoutDirection()
412 if (Objects.equals(name, kWildcardName)) { in parseSmallestScreenWidthDp()
428 if (Objects.equals(name, kWildcardName)) { in parseScreenWidthDp()
444 if (Objects.equals(name, kWildcardName)) { in parseScreenHeightDp()
460 if (Objects.equals(name, kWildcardName)) { in parseScreenLayoutSize()
466 } else if (Objects.equals(name, "small")) { in parseScreenLayoutSize()
[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/arm-trusted-firmware/include/lib/
Dobject_pool.h16 * Pool of statically allocated objects.
18 * Objects can be reserved but not freed. This is by design and it is not a
23 * address of the objects back store.
29 /* Number of objects in the pool. */
32 /* Objects back store. */
33 void *const objects; member
35 /* How many objects are currently allocated. */
39 /* Create a static pool of objects. */
42 .objects = (_obj_backstore), \
48 /* Create a static pool of objects out of an array of pre-allocated objects. */
[all …]

12345678910>>...692