/external/icu/icu4c/source/i18n/ |
D | fpositer.cpp | 61 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { in setData() argument 64 if (adopt) { in setData() 65 if (adopt->size() == 0) { in setData() 66 delete adopt; in setData() 67 adopt = NULL; in setData() 68 } else if ((adopt->size() % 4) != 0) { in setData() 71 for (int i = 2; i < adopt->size(); i += 4) { in setData() 72 if (adopt->elementAti(i) >= adopt->elementAti(i+1)) { in setData() 84 delete adopt; in setData() 89 data = adopt; in setData() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | caltztst.cpp | 73 void CalendarTimeZoneTest::releaseDateFormat(DateFormat *adopt) in releaseDateFormat() argument 81 fgDateFormat = adopt; in releaseDateFormat() 82 adopt = 0; in releaseDateFormat() 86 delete adopt; in releaseDateFormat() 119 void CalendarTimeZoneTest::releaseCalendar(Calendar* adopt) in releaseCalendar() argument 127 fgCalendar = adopt; in releaseCalendar() 128 adopt = 0; in releaseCalendar() 133 delete adopt; in releaseCalendar()
|
D | sfwdchit.cpp | 44 SimpleFwdCharIterator::SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt) { in SimpleFwdCharIterator() argument 50 if(adopt == FALSE) { in SimpleFwdCharIterator()
|
D | sfwdchit.h | 18 SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
|
/external/libwebsockets/minimal-examples/raw/minimal-raw-adopt-tcp/ |
D | README.md | 1 # lws minimal ws server raw adopt tcp 5 want lws to "adopt" the socket. 12 This example demonstrates how to adopt a foreign, connected socket into lws 16 has lws adopt it as a raw wsi. The lws protocol writes "GET / HTTP/1.1" 31 $ ./lws-minimal-raw-adopt-tcp 32 [2018/03/23 09:03:57:1960] USER: LWS minimal raw adopt tcp
|
D | CMakeLists.txt | 1 project(lws-minimal-raw-adopt-tcp) 5 set(SAMP lws-minimal-raw-adopt-tcp) 6 set(SRCS minimal-raw-adopt-tcp.c)
|
/external/libwebsockets/minimal-examples/raw/ |
D | README.md | 3 minimal-raw-adopt-tcp|Shows how to have lws adopt an existing tcp socket something else had connect… 4 minimal-raw-adopt-udp|Shows how to create a udp socket and read and write on it 6 minimal-raw-file|Shows how to adopt a file descriptor (device node, fifo, file, etc) into the lws e…
|
/external/testng/ |
D | README.md | 2 …https://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG.svg?label="Java9 EA")… 3 …://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG-Jigsaw.svg?label="Java9 Ji…
|
/external/libwebsockets/minimal-examples/raw/minimal-raw-adopt-udp/ |
D | README.md | 1 # lws minimal ws server raw adopt udp 34 $ ./lws-minimal-raw-adopt-udp 35 $ ./lws-minimal-raw-adopt-udp 36 [2018/03/24 08:12:37:8869] USER: LWS minimal raw adopt udp | nc -u 127.0.0.1 7681
|
D | CMakeLists.txt | 1 project(lws-minimal-raw-adopt-udp) 5 set(SAMP lws-minimal-raw-adopt-udp) 6 set(SRCS minimal-raw-adopt-udp.c)
|
/external/icu/icu4c/source/common/ |
D | filteredbrk.cpp | 85 inline UBool adopt(UnicodeString *str, UErrorCode &status) { in adopt() function in UStringSet 108 return adopt(t, status); in add() 158 …SimpleFilteredSentenceBreakIterator(BreakIterator *adopt, UCharsTrie *forwards, UCharsTrie *backwa… 242 SimpleFilteredSentenceBreakIterator::SimpleFilteredSentenceBreakIterator(BreakIterator *adopt, UCha… in SimpleFilteredSentenceBreakIterator() argument 243 …BreakIterator(adopt->getLocale(ULOC_VALID_LOCALE,status),adopt->getLocale(ULOC_ACTUAL_LOCALE,statu… in SimpleFilteredSentenceBreakIterator() 245 fDelegate(adopt) in SimpleFilteredSentenceBreakIterator() 562 LocalPointer<BreakIterator> adopt(adoptBreakIterator); in build() local 677 …return new SimpleFilteredSentenceBreakIterator(adopt.orphan(), forwardsPartialTrie.orphan(), backw… in build()
|
/external/icu/icu4c/source/io/ |
D | ustdio.cpp | 68 UTransliterator *adopt, UErrorCode *status) in u_fsettransliterator() argument 74 return adopt; in u_fsettransliterator() 80 return adopt; in u_fsettransliterator() 87 return adopt; in u_fsettransliterator() 90 if(adopt == NULL) /* they are clearing it */ in u_fsettransliterator() 110 return adopt; in u_fsettransliterator() 123 file->fTranslit->translit = adopt; in u_fsettransliterator()
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | Code.java | 222 adopt(this.currentLabel); in Code() 319 private void adopt(Label target) { in adopt() method in Code 334 adopt(label); in mark() 350 adopt(target); in jump() 367 adopt(catchClause); in addCatchClause() 464 adopt(newLabel); in splitCurrentLabel() 536 adopt(trueLabel); in compare() 548 adopt(trueLabel); in compareZ()
|
/external/icu/libicu/cts_headers/unicode/ |
D | fpositer.h | 110 void setData(UVector32 *adopt, UErrorCode& status);
|
/external/icu/icu4c/source/i18n/unicode/ |
D | fpositer.h | 110 void setData(UVector32 *adopt, UErrorCode& status);
|
/external/javaparser/ |
D | LICENSE | 1 …e Apache License. You as the user are entitled to choose the terms under which to adopt JavaParser.
|
D | readme.md | 17 We strongly advise users to adopt Maven, Gradle or another build system for their projects. 109 … the Apache License. You as the user are entitled to choose the terms under which adopt JavaParser.
|
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-thread-safety-negative.cpp | 27 MutexLock(Mutex *mu, bool adopt) EXCLUSIVE_LOCKS_REQUIRED(mu);
|
/external/libwebsockets/minimal-examples/raw/minimal-raw-file/ |
D | README.md | 4 loop. The filepath to open and adopt is given as an argument to the example app, eg
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Add.pbtxt | 35 non-tensor, the non-tensor input will adopt (or get casted to) the data type of
|
D | api_def_Sub.pbtxt | 38 non-tensor, the non-tensor input will adopt (or get casted to) the data type
|
/external/kotlinc/bin/ |
D | kotlinc.bat | 12 rem We adopt the following conventions:
|
/external/iproute2/ |
D | README.lnstat | 18 Please note that lnstat will adopt to any additional statistics that might be
|
/external/icu/icu4c/source/io/unicode/ |
D | ustdio.h | 775 UTransliterator *adopt, UErrorCode *status);
|
/external/antlr/runtime/C/doxygen/ |
D | generate.dox | 21 /// In order to use the rulefile, you must adopt the following suffixes for your grammar files, tho…
|