Searched refs:terminator (Results 1 - 25 of 37) sorted by relevance

12

/external/jsilver/src/com/google/streamhtmlparser/util/
H A DEntityResolver.java227 * @param terminator the last character read, unused on successful
231 private String convertEntity(char terminator) { argument
239 return uncovertedInput(terminator);
250 return uncovertedInput(terminator);
261 return uncovertedInput(terminator);
264 private String uncovertedInput(char terminator) { argument
265 return String.format("%s%c", sb.toString(), terminator);
/external/icu/icu4c/source/tools/toolutil/
H A Duparse.c298 const char **terminator,
323 *terminator=end;
342 *terminator=end;
350 const char *terminator; local
352 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode);
354 terminator=u_skipWhitespace(terminator);
355 if(*terminator!=';' && *terminator!=0) {
296 u_parseCodePointRangeAnyTerminator(const char *s, uint32_t *pStart, uint32_t *pEnd, const char **terminator, UErrorCode *pErrorCode) argument
H A Duparse.h138 * the *terminator output parameter.
143 const char **terminator,
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h288 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
296 // never executed. The unreachable code macro protects the terminator
301 # define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
310 terminator; \
/external/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h288 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
296 // never executed. The unreachable code macro protects the terminator
301 # define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
310 terminator; \
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h275 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
283 // never executed. The unreachable code macro protects the terminator
288 # define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
297 terminator; \
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h277 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
285 // never executed. The unreachable code macro protects the terminator
290 # define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
299 terminator; \
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h244 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
252 // never executed. The unreachable code macro protects the terminator
257 #define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
266 terminator; \
/external/llvm/test/Bindings/OCaml/
H A Danalysis.ml41 A basic block can contain only one terminator instruction. *)
/external/drm_hwcomposer/
H A Dglworker.cpp126 const char *start, *where, *terminator; local
132 terminator = where + strlen(extension);
134 if (*terminator == ' ' || *terminator == '\0')
136 start = terminator;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.h158 unsigned int terminator : 1; member in struct:nv50_ir::Target::OpInfo
H A Dnv50_ir.cpp564 terminator = 0;
963 terminator = 1;
966 terminator = targ ? 1 : 0;
H A Dnv50_ir.h691 unsigned terminator : 1; // end of basic block
864 inline bool isTerminated() const { return exit && exit->terminator; }
/external/pcre/dist/
H A Dpcre_compile.c499 "syntax error in subpattern name (missing terminator)\0"
3867 pcre_uchar terminator; /* Don't combine these lines; the Solaris cc */ local
3868 terminator = *(++ptr); /* compiler warns about "non-constant" initializer. */
3876 if (*ptr == terminator && ptr[1] == CHAR_RIGHT_SQUARE_BRACKET)
4493 int terminator; local
6641 terminator = -1;
6652 terminator = CHAR_GREATER_THAN_SIGN;
6657 terminator = CHAR_APOSTROPHE;
6662 terminator = CHAR_NULL;
6705 /* Check the terminator */
[all...]
/external/boringssl/src/crypto/sha/asm/
H A Dsha512-armv8.pl295 .quad 0 // terminator
314 .long 0 //terminator
H A Dsha256-armv4.pl210 .word 0 @ terminator
529 teq $t1,#0 @ check for K256 terminator
/external/elfutils/src/tests/
H A Drun-readelf-zdebug.sh493 [ 88] Zero terminator
/external/icu/icu4c/source/i18n/
H A Ducol_sit.cpp179 char terminator = *string; local
181 const char *end = uprv_strchr(string+1, terminator);
H A Drulebasedcollator.cpp1350 static const char terminator = 0; // TERMINATOR_BYTE local
1351 sink.Append(&terminator, 1);
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/
H A Dpolymer.js6756 // The terminator of the instance is the clone of the last child of the
6885 var terminator = '}}';
6891 terminator = ']]';
6894 endIndex = startIndex < 0 ? -1 : s.indexOf(terminator, startIndex + 2);
7309 var terminator = instance.terminator_;
7310 if (!terminator)
7313 if (terminator.nodeType !== Node.ELEMENT_NODE ||
7314 this.templateElement_ === terminator) {
7315 return terminator;
7318 var subtemplateIterator = terminator
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderStateQueryTests.cpp561 // INFO_LOG_LENGTH is 0 by default and it includes null-terminator
587 GLint written = 0; // written does not include null terminator
601 // check null-terminator, either at end of buffer or at buffer[written]
602 const char* terminator = &buffer[DE_LENGTH_OF_ARRAY(buffer) - 1]; local
604 terminator = &buffer[written];
606 if (*terminator != '\0')
608 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected null terminator, got " << (int)*terminator << TestLog::EndMessage;
610 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid log terminator");
629 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected null terminator, go
[all...]
/external/llvm/lib/Support/Windows/
H A DPath.inc137 // the buffer not including the NULL terminator.
184 // including the null-terminator.
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h819 const SExpr *T = E->terminator();
H A DThreadSafetyTIL.h1367 /// Return the list of basic blocks that this terminator can branch to.
1396 /// Return the list of basic blocks that this terminator can branch to.
1446 /// Return the list of basic blocks that this terminator can branch to.
1585 const Terminator *terminator() const { return TermInstr; } function in class:clang::threadSafety::BasicBlock
1586 Terminator *terminator() { return TermInstr; } function in class:clang::threadSafety::BasicBlock
/external/deqp/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp725 // INFO_LOG_LENGTH is 0 by default and it includes null-terminator
751 GLint written = 0; // written does not include null terminator
765 // check null-terminator, either at end of buffer or at buffer[written]
766 const char* terminator = &buffer[DE_LENGTH_OF_ARRAY(buffer) - 1]; local
768 terminator = &buffer[written];
770 if (*terminator != '\0')
772 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected null terminator, got " << (int)*terminator << TestLog::EndMessage;
774 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid log terminator");
793 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected null terminator, go
[all...]

Completed in 811 milliseconds

12