Home
last modified time | relevance | path

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

1234567

/external/llvm-project/lldb/unittests/Process/Linux/
DProcessorTraceTest.cpp70 char cyclic[] = "cyclic"; in TEST() local
71 for (size_t i = 0; i < sizeof(cyclic); i++) { in TEST()
78 ASSERT_EQ((sizeof(cyclic) - i - 1), bytes_read); in TEST()
79 ASSERT_STREQ(equal_size_buffer, (cyclic + i)); in TEST()
136 char cyclic[] = "cyclic"; in TEST() local
137 for (size_t i = 0; i < sizeof(cyclic); i++) { in TEST()
144 ASSERT_EQ((sizeof(cyclic) - i - 1), bytes_read); in TEST()
145 ASSERT_STREQ(bigger_buffer, (cyclic + i)); in TEST()
/external/rust/cxx/tests/ui/
Dstruct_cycle.stderr1 error: unsupported cyclic data structure
7 error: unsupported cyclic data structure
13 error: unsupported cyclic data structure
19 error: unsupported cyclic data structure
/external/starlark-go/starlark/testdata/
Dmisc.star56 # cyclic data structures
59 cyclic = [1, 2, 3] # list cycle
60 cyclic[1] = cyclic
61 assert.eq(str(cyclic), "[1, [...], 3]")
62 assert.fails(lambda: cyclic < cyclic, "maximum recursion")
63 assert.fails(lambda: cyclic == cyclic, "maximum recursion")
66 assert.fails(lambda: cyclic2 == cyclic, "maximum recursion")
/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/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/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/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/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/libiio/src/iiod/
Dops.c109 bool cyclic; member
573 samples_count, entry->cyclic); in rw_thd()
873 size_t samples_count, const char *mask, bool cyclic) in open_dev_helper() argument
913 if (cyclic || entry->cyclic) { in open_dev_helper()
1000 entry->cyclic = cyclic; in open_dev_helper()
1070 size_t samples_count, const char *mask, bool cyclic) in open_dev() argument
1072 int ret = open_dev_helper(pdata, dev, samples_count, mask, cyclic); in open_dev()
/external/rust/crates/grpcio-sys/grpc/
D.pylintrc36 # Enable cyclic-import after a 1.7-or-later pylint release that
37 # recognizes our disable=cyclic-import suppressions.
38 cyclic-import,
D.pylintrc-examples39 # Enable cyclic-import after a 1.7-or-later pylint release that
40 # recognizes our disable=cyclic-import suppressions.
41 cyclic-import,
D.pylintrc-tests65 # Enable cyclic-import after a 1.7-or-later pylint release that
66 # recognizes our disable=cyclic-import suppressions.
67 cyclic-import,
/external/testng/src/test/java/test/cyclic/
DSomeConcreteTests.java1 package test.cyclic;
DAbstractGenericTests.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/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource_test.cc576 Cyclic cyclic; in TEST_P() local
577 cyclic.set_m_int(123); in TEST_P()
579 Book* book = cyclic.mutable_m_book(); in TEST_P()
581 Cyclic* current = cyclic.mutable_m_cyclic(); in TEST_P()
582 Author* current_author = cyclic.add_m_author(); in TEST_P()
598 Status status = ExecuteTest(cyclic, Cyclic::descriptor()); in TEST_P()

1234567