Lines Matching full:len
41 bool set(const char name[], size_t len, const T& value)
45 int index = this->find_index(name, len);
55 char* copy = (char*)fStrings.alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType);
56 memcpy(copy, name, len);
57 copy[len] = '\0';
69 bool find(const char name[], size_t len) const
71 return this->find_index(name, len) >= 0;
79 bool find(const char name[], size_t len, T* value) const
81 int index = this->find_index(name, len);
154 int find_index(const char name[], size_t len) const
162 index = SkStrSearch(&fArray.begin()->fName, count, name, len, sizeof(Pair));