Searched refs:cyclic (Results 1 – 25 of 54) sorted by relevance
123
/external/python/cpython2/Modules/ |
D | gc_weakref.txt | 5 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/ |
D | IdleHistory.py | 26 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool") 61 if self.cyclic: 71 if not self.cyclic and pointer < 0: # abort history_prev
|
D | config-main.def | 76 cyclic=1
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_idlehistory.py | 30 self.assertEqual(self.history.cyclic, 131 self.history.cyclic = False 139 self.history.cyclic = False
|
/external/testng/src/test/java/test/cyclic/ |
D | AbstractGenericTests.java | 1 package test.cyclic;
|
D | HibernateConcreteTests.java | 1 package test.cyclic;
|
D | SomeConcreteTests.java | 1 package test.cyclic;
|
D | BaseIntegrationTest.java | 1 package test.cyclic;
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectsource_test.cc | 497 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/ |
D | DFA.java | 121 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/ |
D | README.txt | 8 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/ |
D | CharStreamState.as | 30 /** When walking ahead with cyclic DFA or for syntactic predicates,
|
D | IntStream.as | 68 * Used currently only after a cyclic DFA and just
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/ |
D | CPP.stg | 82 * 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/ |
D | xml.dom.minidom.rst | 127 versions of Python without cyclic GC. Even when cyclic GC is available, using
|
/external/python/cpython2/Doc/c-api/ |
D | allocation.rst | 26 object participates in the cyclic garbage detector, it is added to the
|
D | gcsupport.rst | 117 Python core uses several visitor functions to implement cyclic garbage
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/ |
D | usage.apt.vm | 69 on cyclic DFAs, which rules may use backtracking, and so on.
|
/external/llvm/test/CodeGen/X86/ |
D | break-false-dep.ll | 110 ; to avoid cyclic dependence on a write to the same register in a
|
/external/clang/include/clang/Basic/ |
D | DiagnosticCommonKinds.td | 95 def err_module_cycle : Error<"cyclic dependency in module '%0': %1">,
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 679 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/ |
D | ActionScript.stg | 39 * 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/ |
D | JavaScript.stg | 4 * 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/ |
D | Perl5.stg | 33 * 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/ |
D | pylintrc | 258 # * cyclic imports
|
123