/external/icu/icu4c/source/i18n/ |
fpositer.cpp | 59 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) { 60 // Verify that adopt has valid data, and update status if it doesn't. 62 if (adopt) { 63 if ((adopt->size() % 3) != 0) { 66 for (int i = 1; i < adopt->size(); i += 3) { 67 if (adopt->elementAti(i) >= adopt->elementAti(i+1)) { 79 delete adopt; 84 data = adopt; 85 pos = (adopt == NULL || adopt->size() == 0) ? -1 : 0; // android-changed: http://bugs.icu-project.org/trac/tick (…) [all...] |
unesctrn.h | 58 * Constructor. Takes the encoded spec array (does not adopt it).
|
tznames_impl.h | 52 /* Adopt a string into the pool, without copying it. 55 const UChar *adopt(const UChar *s, UErrorCode &status);
|
/external/testng/ |
README.md | 2 [![Java9 EA Build Status](https://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG.svg?label="Java9 EA")](https://adopt-openjdk.ci.cloudbees.com/job/TestNG) 3 [![Java9 Jigsaw EA Build Status](https://img.shields.io/jenkins/s/https/adopt-openjdk.ci.cloudbees.com/TestNG-Jigsaw.svg?label="Java9 Jigsaw")](https://adopt-openjdk.ci.cloudbees.com/job/TestNG-Jigsaw)
|
/external/skia/cmake/ |
example.cpp | 44 template <typename T> std::shared_ptr<T> adopt(T* ptr) { function 50 return adopt(SkSurface::NewRasterN32Premul(w, h)); 55 std::shared_ptr<GrContext> grContext = adopt(GrContext::Create(kOpenGL_GrBackend, 0)); 56 return adopt(SkSurface::NewRenderTarget(grContext.get(), 70 std::shared_ptr<SkShader> shader = adopt( 86 std::shared_ptr<SkImage> image = adopt(surface->newImageSnapshot()); 88 std::shared_ptr<SkData> png = adopt(image->encode(SkImageEncoder::kPNG_Type, 100));
|
/external/icu/icu4c/source/test/intltest/ |
caltztst.cpp | 71 void CalendarTimeZoneTest::releaseDateFormat(DateFormat *adopt) 79 fgDateFormat = adopt; 80 adopt = 0; 84 delete adopt; 117 void CalendarTimeZoneTest::releaseCalendar(Calendar* adopt) 125 fgCalendar = adopt; 126 adopt = 0; 131 delete adopt;
|
sfwdchit.cpp | 42 SimpleFwdCharIterator::SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt) { 48 if(adopt == FALSE) { 58 } else { // adopt = TRUE
|
sfwdchit.h | 16 SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
|
/external/chromium-trace/catapult/third_party/polymer/components/polymer/ |
README.md | 11 Polymer is based on a set of future technologies, including [Shadow DOM](http://w3c.github.io/webcomponents/spec/shadow/), [Custom Elements](http://w3c.github.io/webcomponents/spec/custom/) and Model Driven Views. Currently these technologies are implemented as polyfills or shims, but as browsers adopt these features natively, the platform code that drives Polymer evacipates, leaving only the value-adds.
|
/external/chromium-trace/catapult/tracing/third_party/components/polymer/ |
README.md | 11 Polymer is based on a set of future technologies, including [Shadow DOM](http://w3c.github.io/webcomponents/spec/shadow/), [Custom Elements](http://w3c.github.io/webcomponents/spec/custom/) and Model Driven Views. Currently these technologies are implemented as polyfills or shims, but as browsers adopt these features natively, the platform code that drives Polymer evacipates, leaving only the value-adds.
|
/external/svox/pico/tests/data/ |
xsampa_pico_man_README.txt | 17 The test files adopt the following syntax:
|
/external/libxml2/test/namespaces/reconcile/ |
tests.xml | 25 <adopt dest-doc="doc3" node="a"/> 29 <adopt dest-doc="doc3" node="b"/> 49 <adopt dest-doc="doc2" node="a"/> 68 <adopt dest-doc="doc2" node="attr" /> 88 <adopt dest-doc="doc2" dest-parent="p2" node="attr" /> 108 <adopt dest-doc="doc2" node="attr" /> 128 <adopt dest-doc="doc2" node="attr" /> 148 <adopt dest-doc="doc2" node="attr" dest-parent="p3"/> 172 <adopt dest-doc="doc2" node="attr"/>
|
/external/icu/icu4c/source/common/unicode/ |
filteredbrk.h | 93 * Wrap (adopt) an existing break iterator in a new filtered instance. 99 * @param adoptBreakIterator the break iterator to adopt
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/ |
CHANGES | 38 + adopt to the new bytes type
|
/docs/source.android.com/src/devices/storage/ |
adoptable.jd | 29 <a href="https://developer.android.com/preview/behavior-changes.html#behavior-adoptable-storage">adopt</a> 39 adopt the media, which formats and encrypts it, or they can continue using it 40 as-is for simple file storage. If they choose to adopt, the platform offers to
|
/external/icu/icu4c/source/common/ |
dictbe.h | 163 * @param adoptDictionary A DictionaryMatcher to adopt. Deleted when the 219 * @param adoptDictionary A DictionaryMatcher to adopt. Deleted when the 275 * @param adoptDictionary A DictionaryMatcher to adopt. Deleted when the 331 * @param adoptDictionary A DictionaryMatcher to adopt. Deleted when the 394 * @param adoptDictionary A DictionaryMatcher to adopt. Deleted when the
|
filteredbrk.cpp | 79 * Adopt the UnicodeString if not already contained. 83 inline UBool adopt(UnicodeString *str, UErrorCode &status) { function in class:UStringSet 106 return adopt(t, status); 156 SimpleFilteredSentenceBreakIterator(BreakIterator *adopt, UCharsTrie *forwards, UCharsTrie *backwards, UErrorCode &status); 240 SimpleFilteredSentenceBreakIterator::SimpleFilteredSentenceBreakIterator(BreakIterator *adopt, UCharsTrie *forwards, UCharsTrie *backwards, UErrorCode &status) : 241 BreakIterator(adopt->getLocale(ULOC_VALID_LOCALE,status),adopt->getLocale(ULOC_ACTUAL_LOCALE,status)), 243 fDelegate(adopt) 528 LocalPointer<BreakIterator> adopt(adoptBreakIterator); 643 return new SimpleFilteredSentenceBreakIterator(adopt.orphan(), forwardsPartialTrie.orphan(), backwardsTrie.orphan(), status) [all...] |
/external/icu/icu4c/source/io/ |
ustdio.c | 66 UTransliterator *adopt, UErrorCode *status) 72 return adopt; 78 return adopt; 85 return adopt; 88 if(adopt == NULL) /* they are clearing it */ 108 return adopt; 121 file->fTranslit->translit = adopt;
|
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ |
AdoptableHostTest.java | 88 // Adopt that disk! 112 // Un-adopt volume and app should still be fine 148 // Adopt that disk! 193 // Adopt that disk!
|
/external/antlr/antlr-3.4/runtime/C/doxygen/ |
generate.dox | 21 /// In order to use the rulefile, you must adopt the following suffixes for your grammar files, though they are otherwise optional:
|
/external/icu/icu4c/source/i18n/unicode/ |
fpositer.h | 107 void setData(UVector32 *adopt, UErrorCode& status);
|
/external/iproute2/ |
README.lnstat | 18 Please note that lnstat will adopt to any additional statistics that might be
|
/toolchain/binutils/binutils-2.25/include/elf/ |
h8.h | 88 but it is hoped that other vendors will adopt it. If some standard
|
mn10300.h | 68 but it is hoped that other vendors will adopt it. If some standard
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
FilteredBreakIteratorBuilder.java | 102 * Wrap (adopt) an existing break iterator in a new filtered instance. 108 * @param adoptBreakIterator the break iterator to adopt
|