Home
last modified time | relevance | path

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

123

/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/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
Dconfig-main.def76 cyclic=1
/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/testng/src/test/java/test/cyclic/
DAbstractGenericTests.java1 package test.cyclic;
DHibernateConcreteTests.java1 package test.cyclic;
DSomeConcreteTests.java1 package test.cyclic;
DBaseIntegrationTest.java1 package test.cyclic;
/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/antlr/antlr-3.4/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/python/cpython2/Lib/test/leakers/
DREADME.txt8 Note: be careful to check for cyclic garbage. Sometimes it may be helpful
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DCharStreamState.as30 /** When walking ahead with cyclic DFA or for syntactic predicates,
DIntStream.as68 * Used currently only after a cyclic DFA and just
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
DCPP.stg82 * and cyclic DFAs plus support code.
151 // cyclic dfa's
988 /** The code to initiate execution of a cyclic DFA; this is used
997 /** The overall cyclic DFA chunk; contains all the DFA states */
1001 // cyclic = <dfa.cyclic>
1090 /** A state in a cyclic DFA */
/external/python/cpython2/Doc/library/
Dxml.dom.minidom.rst127 versions of Python without cyclic GC. Even when cyclic GC is available, using
/external/python/cpython2/Doc/c-api/
Dallocation.rst26 object participates in the cyclic garbage detector, it is added to the
Dgcsupport.rst117 Python core uses several visitor functions to implement cyclic garbage
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/
Dusage.apt.vm69 on cyclic DFAs, which rules may use backtracking, and so on.
/external/llvm/test/CodeGen/X86/
Dbreak-false-dep.ll110 ; to avoid cyclic dependence on a write to the same register in a
/external/clang/include/clang/Basic/
DDiagnosticCommonKinds.td95 def err_module_cycle : Error<"cyclic dependency in module '%0': %1">,
/external/python/cpython2/Doc/extending/
Dnewtypes.rst679 Supporting cyclic garbage collection
682 Python has a cyclic-garbage collector that can identify unneeded objects even
692 Fortunately, Python's cyclic-garbage collector will eventually figure out that
705 cyclic-garbage collector to the :class:`Noddy` example. To support cyclic
812 :c:member:`~PyTypeObject.tp_free` slots, we'd need to modify them for cyclic-garbage collection.
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
DActionScript.stg39 * and cyclic DFAs plus support code.
921 /** The code to initiate execution of a cyclic DFA; this is used
991 /** A state in a cyclic DFA; it's a special state and part of a big switch on
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
DJavaScript.stg4 * and cyclic DFAs plus support code.
932 /** The code to initiate execution of a cyclic DFA; this is used
1035 /** A state in a cyclic DFA; it's a special state and part of a big switch on
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
DPerl5.stg33 * and cyclic DFAs plus support code.
963 /** The code to initiate execution of a cyclic DFA; this is used
1070 /** A state in a cyclic DFA; it's a special state and part of a big switch on
/external/antlr/antlr-3.4/runtime/Python/
Dpylintrc258 # * cyclic imports

123