Searched refs:REPLACE (Results 1 - 25 of 61) sorted by relevance

123

/external/dbus/cmake/modules/
H A DMacrosAutotools.cmake17 string (REGEX REPLACE ".*${prefix}_major_version], .([0-9]+).*" "\\1" ${prefix_upper}_MAJOR_VERSION ${_configure_ac})
18 string (REGEX REPLACE ".*${prefix}_minor_version], .([0-9]+).*" "\\1" ${prefix_upper}_MINOR_VERSION ${_configure_ac})
19 string (REGEX REPLACE ".*${prefix}_micro_version], .([0-9]+).*" "\\1" ${prefix_upper}_MICRO_VERSION ${_configure_ac})
33 STRING(REGEX REPLACE ";" "\\\\;" contents "${contents}")
34 STRING(REGEX REPLACE "\n" ";" contents "${contents}")
/external/vboot_reference/tests/futility/
H A Dtest_gbb_utility.sh13 REPLACE="${BUILD_RUN}/tests/futility/binary_editor"
112 cat ${TMP}.blob | ${REPLACE} 0x4 2 > ${TMP}.blob.bad
116 cat ${TMP}.blob | ${REPLACE} 0x8 0x81 > ${TMP}.blob.bad
120 cat ${TMP}.blob | ${REPLACE} 0x8 0x7f > ${TMP}.blob.bad
124 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
128 cat ${TMP}.blob | ${REPLACE} 0x14 0x00 > ${TMP}.blob.ok
131 cat ${TMP}.blob | ${REPLACE} 0x14 0x01 | ${REPLACE} 0x80 0x00 > ${TMP}.blob.ok
135 cat ${TMP}.blob | ${REPLACE} 0x8f 0x41 > ${TMP}.blob.bad
139 cat ${TMP}.blob | ${REPLACE}
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
H A DInputFile.java113 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
114 encoder.onMalformedInput(CodingErrorAction.REPLACE);
116 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
117 decoder.onMalformedInput(CodingErrorAction.REPLACE);
/external/icu/icu4c/source/data/translit/
H A Dtrnsfiles.mk19 # * To REPLACE the default list and only build with a few
/external/icu/icu4c/source/data/misc/
H A Dmiscfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/external/icu/icu4c/source/data/sprep/
H A Dsprepfiles.mk19 # * To REPLACE the default list and only build a subset of files:
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
H A DRelay.java85 newCd.onUnmappableCharacter(CodingErrorAction.REPLACE);
86 newCd.onMalformedInput(CodingErrorAction.REPLACE);
/external/libxml2/os400/
H A Dmake-src.sh290 CMD="${CMD} TOCCSID(${TGTCCSID}) DTAFMT(*TEXT) REPLACE(*YES)"
298 CMD="${CMD} TEXT('XML tool') REPLACE(*YES)"
345 CMD="${CMD} TOCCSID(${TGTCCSID}) DTAFMT(*TEXT) REPLACE(*YES)"
353 CMD="${CMD} THDSAFE(*YES) TEXT('XML/SGML catalog tool') REPLACE(*YES)"
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetDecoderICU.java122 if (newAction == CodingErrorAction.REPLACE) {
144 if (newAction == CodingErrorAction.REPLACE) {
178 if(action==CodingErrorAction.REPLACE){
H A DCharsetEncoderICU.java203 if (action == CodingErrorAction.REPLACE) {
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java317 .onMalformedInput(CodingErrorAction.REPLACE)
318 .onUnmappableCharacter(CodingErrorAction.REPLACE);
320 .onMalformedInput(CodingErrorAction.REPLACE)
321 .onUnmappableCharacter(CodingErrorAction.REPLACE);
/external/icu/icu4c/source/data/brkitr/
H A Dbrkfiles.mk20 # * To REPLACE the default list and only build with a few
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
H A DTestConversion.java217 cc.cbErrorAction = CodingErrorAction.REPLACE;
226 cc.cbErrorAction = CodingErrorAction.REPLACE;
258 encoder.onMalformedInput(CodingErrorAction.REPLACE);
259 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
299 if (cc.cbErrorAction.equals(CodingErrorAction.REPLACE)) {
531 cc.cbErrorAction = CodingErrorAction.REPLACE;
573 decoder.onMalformedInput(CodingErrorAction.REPLACE);
574 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
608 if (cc.cbErrorAction.equals(CodingErrorAction.REPLACE)) {
/external/protobuf/gtest/
H A DCMakeLists.txt42 string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}")
45 string(REPLACE "/W3" "-W4" ${flag_var} "${${flag_var}}")
/external/icu/icu4c/source/data/rbnf/
H A Drbnffiles.mk20 # * To REPLACE the default list and only build with a few
/external/icu/icu4c/source/data/coll/
H A Dcolfiles.mk20 # * To REPLACE the default list and only build with a few
/external/mesa3d/src/mesa/swrast/
H A Ds_triangle.c333 #define REPLACE COPY_CHAN4(dest, sample) macro
476 SPAN_LINEAR(LINEAR_RGB;REPLACE,3);
504 SPAN_LINEAR(LINEAR_RGBA;REPLACE,4);
746 SPAN_LINEAR(LINEAR_RGB;REPLACE,3);
774 SPAN_LINEAR(LINEAR_RGBA;REPLACE,4);
/external/icu/icu4c/source/data/mappings/
H A Ducmfiles.mk27 # * To REPLACE the default list and only build with a few
/external/libjpeg-turbo/
H A DCMakeLists.txt16 string(REGEX REPLACE "\n" "" BUILD ${BUILD})
20 string(REGEX REPLACE "[^0-9]" "" BUILD "${BUILD}")
23 string(REGEX REPLACE ".*[ ]([0-9]*)[/.]([0-9]*)[/.]([0-9]*).*" "\\3\\2\\1" BUILD "${BUILD}")
133 string(REGEX REPLACE "/MD" "/MT" ${var} "${${var}}")
713 string(REGEX REPLACE "_" "/" scalearg ${scale})
902 STRING(REGEX REPLACE "/" "\\\\" INST_DIR ${CMAKE_INSTALL_PREFIX})
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DStreamHandlerTest.java65 encoder.onMalformedInput(CodingErrorAction.REPLACE);
66 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
/external/icu/icu4c/source/data/lang/
H A Dresfiles.mk20 # * To REPLACE the default list and only build with a few
/external/icu/icu4c/source/data/region/
H A Dresfiles.mk20 # * To REPLACE the default list and only build with a few
/external/icu/icu4c/source/data/unit/
H A Dresfiles.mk20 # * To REPLACE the default list and only build with a few
/external/icu/icu4c/source/data/zone/
H A Dresfiles.mk20 # * To REPLACE the default list and only build with a few
/external/libnl/lib/
H A Dmsg.c791 PRINT_FLAG(REPLACE);

Completed in 6613 milliseconds

123