Home
last modified time | relevance | path

Searched refs:cyclic (Results 1 – 25 of 98) sorted by relevance

1234

/external/python/cpython2/Modules/
Dgc_weakref.txt5 for that matter) during cyclic gc:
40 The primary thing it missed is that when a weakref to a piece of cyclic
43 possibly resurrect an insane object (one for which cyclic gc has called-- or
59 Clearing cyclic trash can call Python code. If there are weakrefs to
60 any of the cyclic trash, then those weakrefs can be used to resurrect
61 the objects. Therefore, *before* clearing cyclic trash, we need to
77 Before 2.3.3, Python's cyclic gc didn't pay any attention to weakrefs.
87 becomes part of a clump of cyclic trash. When enough cycles are broken by
88 cyclic gc that the object is reclaimed, the callback is invoked. If it's
105 the current collection, and nothing reachable from it would be in cyclic
[all …]
/external/python/cpython3/Modules/
Dgc_weakref.txt5 for that matter) during cyclic gc:
40 The primary thing it missed is that when a weakref to a piece of cyclic
43 possibly resurrect an insane object (one for which cyclic gc has called-- or
59 Clearing cyclic trash can call Python code. If there are weakrefs to
60 any of the cyclic trash, then those weakrefs can be used to resurrect
61 the objects. Therefore, *before* clearing cyclic trash, we need to
77 Before 2.3.3, Python's cyclic gc didn't pay any attention to weakrefs.
87 becomes part of a clump of cyclic trash. When enough cycles are broken by
88 cyclic gc that the object is reclaimed, the callback is invoked. If it's
105 the current collection, and nothing reachable from it would be in cyclic
[all …]
/external/python/cpython2/Lib/idlelib/
DIdleHistory.py26 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
61 if self.cyclic:
71 if not self.cyclic and pointer < 0: # abort history_prev
/external/python/cpython3/Lib/idlelib/
Dhistory.py27 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
62 if self.cyclic:
72 if not self.cyclic and pointer < 0: # abort history_prev
/external/nanopb-c/tests/cyclic_messages/
DSConscript3 # Encode cyclic messages with callback fields
6 env.Command("cyclic_callback.proto", "cyclic.proto", c)
Dcyclic.proto1 // Test structures with cyclic references.
/external/grpc-grpc/third_party/nanopb/tests/cyclic_messages/
DSConscript3 # Encode cyclic messages with callback fields
6 env.Command("cyclic_callback.proto", "cyclic.proto", c)
Dcyclic.proto1 // Test structures with cyclic references.
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_idlehistory.py30 self.assertEqual(self.history.cyclic,
131 self.history.cyclic = False
139 self.history.cyclic = False
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_history.py33 self.assertEqual(self.history.cyclic,
135 self.history.cyclic = False
143 self.history.cyclic = False
/external/grpc-grpc/
D.pylintrc25 # Enable cyclic-import after a 1.7-or-later pylint release that
26 # recognizes our disable=cyclic-import suppressions.
27 cyclic-import,
D.pylintrc-tests58 # Enable cyclic-import after a 1.7-or-later pylint release that
59 # recognizes our disable=cyclic-import suppressions.
60 cyclic-import,
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource_test.cc497 Cyclic cyclic; in TEST_P() local
498 cyclic.set_m_int(123); in TEST_P()
500 Book* book = cyclic.mutable_m_book(); in TEST_P()
502 Cyclic* current = cyclic.mutable_m_cyclic(); in TEST_P()
503 Author* current_author = cyclic.add_m_author(); in TEST_P()
519 Status status = ExecuteTest(cyclic, Cyclic::descriptor()); in TEST_P()
/external/testng/src/test/java/test/cyclic/
DAbstractGenericTests.java1 package test.cyclic;
DSomeConcreteTests.java1 package test.cyclic;
DHibernateConcreteTests.java1 package test.cyclic;
DBaseIntegrationTest.java1 package test.cyclic;
/external/antlr/tool/src/main/java/org/antlr/analysis/
DDFA.java121 protected boolean cyclic = false; field in DFA
729 return cyclic && getUserMaxLookahead()==0;
870 boolean cyclic = _hasCycle(startState, new HashMap<DFAState, Integer>());
871 return cyclic;
948 cyclic = true;
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/writeback/wbc_writepage/
Dformat20 print fmt: "bdi %s: towrt=%ld skip=%ld mode=%d kupd=%d bgrd=%d reclm=%d cyclic=%d start=0x%lx end=0…
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/writeback/wbc_writepage/
Dformat20 print fmt: "bdi %s: towrt=%ld skip=%ld mode=%d kupd=%d bgrd=%d reclm=%d cyclic=%d start=0x%lx end=0…
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/writeback/wbc_writepage/
Dformat21 print fmt: "bdi %s: towrt=%ld skip=%ld mode=%d kupd=%d bgrd=%d reclm=%d cyclic=%d start=0x%lx end=0…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/writeback/wbc_writepage/
Dformat21 print fmt: "bdi %s: towrt=%ld skip=%ld mode=%d kupd=%d bgrd=%d reclm=%d cyclic=%d start=0x%lx end=0…
/external/python/cpython3/Lib/test/leakers/
DREADME.txt8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
/external/python/cpython2/Lib/test/leakers/
DREADME.txt8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
/external/tensorflow/tensorflow/core/platform/default/
Dbuild_config_root.bzl3 # be separate to avoid cyclic references.

1234