Home
last modified time | relevance | path

Searched refs:cleaned (Results 1 – 25 of 165) sorted by relevance

1234567

/external/tensorflow/tensorflow/core/kernels/
Dtensor_cord_test.cc79 int cleaned = 0; in TEST() local
80 auto cleaner = [&cleaned]() { ++cleaned; }; in TEST()
92 EXPECT_EQ(cleaned, 0); in TEST()
94 EXPECT_EQ(cleaned, 1); in TEST()
146 int cleaned = 0; in TEST() local
147 auto cleaner = [&cleaned]() { ++cleaned; }; in TEST()
160 EXPECT_EQ(cleaned, 0); in TEST()
163 EXPECT_EQ(cleaned, 1); in TEST()
167 int cleaned = 0; in TEST() local
168 auto cleaner = [&cleaned]() { ++cleaned; }; in TEST()
[all …]
/external/cldr/tools/scripts/
DsidewaysCharts.sh16 backup_tree cleaned
17 mkdir cleaned
18 mkdir cleaned/by_type
21 GenerateSidewaysView -z "x-cockney" -s ../common/main/ -d cleaned/ -t ../../../J/icu4j/src/com/ibm/…
24 cp cleaned/by_type/*.html by_type/
/external/autotest/client/common_lib/cros/network/
Dinterface.py452 cleaned = line.strip().lower()
453 match = re.search(signal_pattern, cleaned)
508 cleaned = line.strip().replace(' ', '').lower()
509 match = re.search(signal_pattern, cleaned)
511 signal_levels = cleaned[cleaned.find('[') + 1 :
512 cleaned.find(']')].split(',')
587 cleaned = line.strip().lower()
588 if my_frequency_pattern.match(cleaned):
591 match = noise_pattern.match(cleaned)
594 if any_frequency_pattern.match(cleaned):
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util.cc431 StringPiece cleaned = text; in ParseAttrValue() local
432 str_util::RemoveLeadingWhitespace(&cleaned); in ParseAttrValue()
433 str_util::RemoveTrailingWhitespace(&cleaned); in ParseAttrValue()
434 if (cleaned.size() < 2 || cleaned[0] != '[' || in ParseAttrValue()
435 cleaned[cleaned.size() - 1] != ']') { in ParseAttrValue()
438 cleaned.remove_prefix(1); in ParseAttrValue()
439 str_util::RemoveLeadingWhitespace(&cleaned); in ParseAttrValue()
440 if (cleaned.size() == 1) { in ParseAttrValue()
/external/autotest/tko/
Dstatus_lib_unittest.py13 cleaned = status_lib.clean_raw_line(raw_line)
14 self.assertEquals(cleaned, raw_line_temp % '')
21 cleaned = status_lib.clean_raw_line(raw_line, blocklist)
23 cleaned, raw_line_temp % (('',) * len(blocklist)))
/external/toybox/
DMakefile63 @echo root cleaned
68 @echo cleaned
/external/autotest/client/cros/enterprise/
Dpolicy_group.py155 cleaned = {}
159 cleaned[policy] = self._jsonify(policy, value)
160 return cleaned
/external/kernel-headers/
DREADME.md4 Bionic's "cleaned-up" user-land headers.
7 distributed as part of the platform itself. The cleaned up headers do not
/external/tensorflow/tensorflow/java/maven/
D.gitignore2 # (normally cleaned up by the script as well)
/external/igt-gpu-tools/assembler/
DREADME9 be cleaned up and made more reasonable to program with.
/external/libevent/cmake/
DCodeCoverage.cmake117 …COV_PATH} --remove ${_outputname}.info 'tests/*' '/usr/*' --output-file ${_outputname}.info.cleaned
118 COMMAND ${GENHTML_PATH} -o ${_outputname} ${_outputname}.info.cleaned
119 COMMAND ${CMAKE_COMMAND} -E remove ${_outputname}.info ${_outputname}.info.cleaned
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestPaths.java463 String cleaned = parts.toString(); in TestNonLdml() local
464 … Pair<String, String> pair = Pair.of(type == DtdType.ldml ? file : type.toString(), cleaned); in TestNonLdml()
468 … errln("Duplicate: " + file + ", " + path + ", " + cleaned + ", " + value); in TestNonLdml()
482 logln("@" + "\t" + cleaned + "\t" + removed); in TestNonLdml()
/external/webrtc/tools_webrtc/ubsan/
Dsuppressions.txt18 # Remove those once upstream code has been cleaned.
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DISO8601Utils.java225 String cleaned = act.replace(":", ""); in parse() local
226 if (!cleaned.equals(timezoneId)) { in parse()
/external/grpc-grpc/doc/core/
Dpending_api_cleanups.md11 be cleaned up the next time we are going to bump the major version
/external/curl/tests/data/
Dtest60830 # it was so the verify section works and the file can be cleaned up.
/external/llvm/test/Transforms/SimplifyCFG/
Dempty-cleanuppad.ll8 ; This case arises when two objects with empty destructors are cleaned up.
43 ; This case arises when an object with an empty destructor must be cleaned up
45 ; cleaned up within the try-block.
106 ; This case arises when an object with a non-empty destructor must be cleaned up
107 ; outside of a try-block and an object with an empty destructor must be cleaned
/external/grpc-grpc/doc/cpp/
Dpending_api_cleanups.md11 be cleaned up the next time we are going to bump the major version
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/compute/signed_int_compare/
Duint_sgreaterthan.amber4 # Derived from the following OpenCL C, but cleaned up to be more generic.
Duint_sgreaterthanequal.amber4 # Derived from the following OpenCL C, but cleaned up to be more generic.
Duint_slessthanequal.amber4 # Derived from the following OpenCL C, but cleaned up to be more generic.
Duint_slessthan.amber4 # Derived from the following OpenCL C, but cleaned up to be more generic.
/external/ltp/
DTODO38 cleaned up and fixed to use the test.sh test library. These include most of
/external/llvm-project/llvm/test/Transforms/SimplifyCFG/X86/
Dempty-cleanuppad.ll8 ; This case arises when two objects with empty destructors are cleaned up.
43 ; This case arises when an object with an empty destructor must be cleaned up
45 ; cleaned up within the try-block.
106 ; This case arises when an object with a non-empty destructor must be cleaned up
107 ; outside of a try-block and an object with an empty destructor must be cleaned
/external/autotest/server/control_segments/
Dcleanup52 '%s cleaned successfully' % hostname)

1234567