Searched refs:terminator (Results 1 - 25 of 27) 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/icu4c/tools/toolutil/
H A Duparse.c296 const char **terminator,
321 *terminator=end;
340 *terminator=end;
348 const char *terminator; local
350 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode);
352 terminator=u_skipWhitespace(terminator);
353 if(*terminator!=';' && *terminator!=0) {
294 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/chromium/testing/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/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/llvm/test/Bindings/Ocaml/
H A Danalysis.ml38 A basic block can contain only one terminator instruction. *)
/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/protobuf/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h243 // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
251 // never executed. The unreachable code macro protects the terminator
256 #define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
265 terminator; \
/external/webkit/Source/WebCore/bindings/js/
H A DWorkerScriptController.cpp132 if (completionType == Terminated || m_workerContextWrapper->globalData().terminator.shouldTerminate()) {
159 m_globalData->terminator.terminateSoon();
H A DJSEventListener.cpp137 if (terminatorCausedException || globalData.terminator.shouldTerminate())
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gl.c68 const char *where, *terminator; local
92 terminator = where + strlen(extension);
94 if (*terminator == ' ' || *terminator == '\0') return 1;
96 start = terminator;
/external/llvm/lib/Analysis/
H A DPathNumbering.cpp388 TerminatorInst* terminator = currentNode->getBlock()->getTerminator(); local
389 if(isa<ReturnInst>(terminator) || isa<UnreachableInst>(terminator) ||
390 isa<ResumeInst>(terminator))
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Ddecoder.py80 content, terminator = chunk.groups()
85 if terminator == '"':
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_wingl.c83 const char *where, *terminator; local
104 terminator = where + SDL_strlen(extension);
106 if (*terminator == ' ' || *terminator == '\0') return 1;
108 start = terminator;
/external/llvm/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp492 TerminatorInst* terminator = source->getTerminator();
495 for(i=0; i < terminator->getNumSuccessors(); i++) {
496 if(terminator->getSuccessor(i) == target)
1417 TerminatorInst* terminator = sourceBlock->getTerminator(); local
1419 if( SplitCriticalEdge(terminator, succNum, this, false)) {
1420 BasicBlock* newBlock = terminator->getSuccessor(succNum);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py717 terminator = '\r\n\r\n'
719 while pos < len(terminator):
721 if received == terminator[pos]:
723 elif received == terminator[0]:
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dclient_for_testing.py708 terminator = '\r\n\r\n'
710 while pos < len(terminator):
712 if received == terminator[pos]:
714 elif received == terminator[0]:
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalData.h220 Terminator terminator; member in class:JSC::JSGlobalData
/external/icu4c/i18n/
H A Ducol_sit.cpp174 char terminator = *string; local
176 const char *end = uprv_strchr(string+1, terminator);
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp4080 // and are terminated by the given terminator character
4081 static int checkForValidDouble(const UChar* string, const UChar* end, const char terminator) argument
4091 if (string[i] == terminator) {
4110 // terminated by the given terminator character
4111 static int parseDouble(const UChar* string, const UChar* end, const char terminator, double& value) argument
4113 int length = checkForValidDouble(string, end, terminator);
4145 static bool parseColorIntOrPercentage(const UChar*& string, const UChar* end, const char terminator, CSSPrimitiveValue::UnitTypes& expect, int& value) argument
4204 if (current == end || *current++ != terminator)
4225 static inline bool parseAlphaValue(const UChar*& string, const UChar* end, const char terminator, int& value) argument
4243 if (string[length - 1] != terminator)
[all...]
/external/dbus/test/
H A Ddecode-gcov.c143 long terminator,
157 if (n == terminator)
141 string_get_string(const DBusString *str, int start, long terminator, DBusString *val, int *end) argument
/external/mksh/src/
H A Dlex.c1023 /* unget terminator */
1065 * ungetsc'd terminator from above
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp1349 if (globalData->terminator.shouldTerminate()) {
/external/dropbear/libtommath/
H A Dbn.tex1720 This stores in ``size'' the number of characters (including space for the NUL terminator) required. Upon error this

Completed in 557 milliseconds

12