Home
last modified time | relevance | path

Searched refs:Chars (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Support/
DStringRef.cpp166 StringRef::size_type StringRef::find_first_of(StringRef Chars, in find_first_of() argument
169 for (size_type i = 0; i != Chars.size(); ++i) in find_first_of()
170 CharBits.set((unsigned char)Chars[i]); in find_first_of()
191 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, in find_first_not_of() argument
194 for (size_type i = 0; i != Chars.size(); ++i) in find_first_not_of()
195 CharBits.set((unsigned char)Chars[i]); in find_first_not_of()
207 StringRef::size_type StringRef::find_last_of(StringRef Chars, in find_last_of() argument
210 for (size_type i = 0; i != Chars.size(); ++i) in find_last_of()
211 CharBits.set((unsigned char)Chars[i]); in find_last_of()
/external/llvm/lib/Analysis/
DProfileInfoLoader.cpp117 std::vector<char> Chars(ArgLength+4); in ProfileInfoLoader() local
120 if (fread(&Chars[0], (ArgLength+3) & ~3, 1, F) != 1) { in ProfileInfoLoader()
125 CommandLines.push_back(std::string(&Chars[0], &Chars[ArgLength])); in ProfileInfoLoader()
/external/guava/src/com/google/common/primitives/
DChars.java44 public final class Chars { class
45 private Chars() {} in Chars() method in Chars
386 int result = Chars.compare(left[i], right[i]); in compare()
477 && Chars.indexOf(array, (Character) target, start, end) != -1; in contains()
483 int i = Chars.indexOf(array, (Character) target, start, end); in indexOf()
494 int i = Chars.lastIndexOf(array, (Character) target, start, end); in lastIndexOf()
542 result = 31 * result + Chars.hashCode(array[i]); in hashCode()
/external/chromium/testing/gmock/test/
Dgmock-internal-utils_test.cc588 typedef std::vector<char> Chars; in TEST() typedef
589 Chars v1; in TEST()
590 const Chars& v2(StlContainerView<Chars>::ConstReference(v1)); in TEST()
594 Chars v3 = StlContainerView<Chars>::Copy(v1); in TEST()
/external/llvm/include/llvm/ADT/
DStringRef.h260 size_type find_first_of(StringRef Chars, size_t From = 0) const;
270 size_type find_first_not_of(StringRef Chars, size_t From = 0) const;
282 size_type find_last_of(StringRef Chars, size_t From = npos) const;
/external/bluetooth/glib/glib/
Dgutf8.c90 #define UTF8_GET(Result, Chars, Count, Mask, Len) \ argument
91 (Result) = (Chars)[0] & (Mask); \
94 if (((Chars)[(Count)] & 0xc0) != 0x80) \
100 (Result) |= ((Chars)[(Count)] & 0x3f); \
/external/dbus/dbus/
Ddbus-string.c1793 #define UTF8_GET(Result, Chars, Count, Mask, Len) \ argument
1794 (Result) = (Chars)[0] & (Mask); \
1797 if (((Chars)[(Count)] & 0xc0) != 0x80) \
1803 (Result) |= ((Chars)[(Count)] & 0x3f); \