HomeSort by relevance Sort by last modified time
    Searched refs:atPtr (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/layout/
LETableReference.h 142 size_t ptrToOffset(const void *atPtr, LEErrorCode &success) const {
143 if(atPtr==NULL) return 0;
145 if((atPtr < fStart) ||
146 (hasBounds() && (atPtr > fStart+fLength))) {
147 LE_DEBUG_TR3("ptrToOffset args out of range: %p", atPtr, 0);
151 return ((const le_uint8*)atPtr)-fStart;
358 * @param atPtr location of reference - if NULL, will be at offset zero (i.e. downcast of parent). Otherwise must be a pointer within parent's bounds.
360 inline LEReferenceTo(const LETableReference &parent, LEErrorCode &success, const void* atPtr)
361 : LETableReference(parent, parent.ptrToOffset(atPtr, success), LE_UINTPTR_MAX, success) {
368 inline LEReferenceTo(const LETableReference &parent, LEErrorCode &success, const void* atPtr, size_t offset
    [all...]
  /external/icu/icu4c/source/common/
locid.cpp 618 const char *atPtr = uprv_strchr(fullName, '@');
620 if (atPtr && eqPtr && atPtr < eqPtr) {
622 int32_t baseNameLength = (int32_t)(atPtr - fullName);

Completed in 153 milliseconds