HomeSort by relevance Sort by last modified time
    Searched refs:IndexOf (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/net/spdy/
hpack_entry_test.cc 37 size_t IndexOf(const HpackEntry& entry) const {
63 EXPECT_EQ(1u, IndexOf(entry));
73 EXPECT_EQ(1u, IndexOf(entry));
83 EXPECT_EQ(0u, IndexOf(entry));
99 EXPECT_EQ(1u, IndexOf(static1));
100 EXPECT_EQ(2u, IndexOf(static2));
105 EXPECT_EQ(1u, IndexOf(dynamic2));
106 EXPECT_EQ(2u, IndexOf(dynamic1));
107 EXPECT_EQ(3u, IndexOf(static1));
108 EXPECT_EQ(4u, IndexOf(static2))
    [all...]
hpack_encoder_test.cc 125 expected_.AppendUint32(IndexOf(key_entry));
156 size_t IndexOf(HpackEntry* entry) {
157 return peer_.table()->IndexOf(entry);
159 size_t IndexOf(const HpackEntry* entry) {
160 return peer_.table()->IndexOf(entry);
176 ExpectIndex(IndexOf(key_2_));
184 ExpectIndex(IndexOf(static_));
193 ExpectIndex(IndexOf(static_));
244 ExpectIndex(IndexOf(key_1_));
254 ExpectIndex(IndexOf(cookie_a_))
    [all...]
hpack_header_table.h 72 size_t IndexOf(const HpackEntry* entry) const;
125 // IndexOf() for determination of an HpackEntry's table index.
hpack_header_table_test.cc 130 EXPECT_EQ(index, table_.IndexOf(entry));
167 EXPECT_EQ(1u, table_.IndexOf(first_static_entry));
182 EXPECT_EQ(1u, table_.IndexOf(first_static_entry));
184 EXPECT_EQ(62u, table_.IndexOf(entry));
197 EXPECT_EQ(1u, table_.IndexOf(first_static_entry));
387 EXPECT_EQ(62u, table_.IndexOf(new_entry));
hpack_encoder.cc 110 output_stream_.AppendUint32(header_table_.IndexOf(entry));
130 output_stream_.AppendUint32(header_table_.IndexOf(name_entry));
hpack_header_table.cc 99 size_t HpackHeaderTable::IndexOf(const HpackEntry* entry) const {
hpack_decoder_test.cc 99 EXPECT_EQ(index, decoder_peer_.header_table()->IndexOf(entry));
  /external/chromium_org/tools/gn/
unique_vector_unittest.cc 25 // Verify those results with IndexOf as well.
26 EXPECT_EQ(0u, foo.IndexOf(1));
27 EXPECT_EQ(1u, foo.IndexOf(2));
28 EXPECT_EQ(2u, foo.IndexOf(0));
29 EXPECT_EQ(static_cast<size_t>(-1), foo.IndexOf(99));
42 EXPECT_EQ(0u, vect.IndexOf("a"));
unique_vector.h 173 size_t IndexOf(const T& t) const {
target_unittest.cc 175 EXPECT_TRUE(c_inherited.IndexOf(&d) != static_cast<size_t>(-1));
180 EXPECT_TRUE(b_inherited.IndexOf(&c) != static_cast<size_t>(-1));
181 EXPECT_TRUE(b_inherited.IndexOf(&d) != static_cast<size_t>(-1));
187 EXPECT_TRUE(a_inherited.IndexOf(&b) != static_cast<size_t>(-1));
219 EXPECT_TRUE(b_inherited.IndexOf(&c) != static_cast<size_t>(-1));
225 EXPECT_TRUE(a_inherited.IndexOf(&b) != static_cast<size_t>(-1));
value_extractors.cc 52 size_t previous_index = dest->IndexOf(new_one);
  /frameworks/native/services/sensorservice/
traits.h 43 template <typename TList, typename T> struct IndexOf;
46 struct IndexOf<NullType, T> {
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {
58 enum { temp = IndexOf<Tail, T>::value };
104 enum { isStdUnsignedInt = TL::IndexOf<UnsignedInts, T>::value >= 0 };
105 enum { isStdSignedInt = TL::IndexOf<SignedInts, T>::value >= 0 };
106 enum { isStdIntegral = TL::IndexOf<OtherInts, T>::value >= 0 || isStdUnsignedInt || isStdSignedInt };
107 enum { isStdFloat = TL::IndexOf<Floats, T>::value >= 0 };
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 54 public static int indexOf( string str, char value )
56 return str.IndexOf( value );
60 public static int indexOf( string str, char value, int startIndex )
62 return str.IndexOf( value, startIndex );
66 public static int indexOf( string str, string value )
68 return str.IndexOf( value );
72 public static int indexOf( string str, string value, int startIndex )
74 return str.IndexOf( value, startIndex );
98 int index = str.IndexOf( oldValue );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 55 public static int indexOf( this string str, char value )
57 return str.IndexOf( value );
61 public static int indexOf( this string str, char value, int startIndex )
63 return str.IndexOf( value, startIndex );
67 public static int indexOf( this string str, string value )
69 return str.IndexOf( value );
73 public static int indexOf( this string str, string value, int startIndex )
75 return str.IndexOf( value, startIndex );
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_util.h 171 int index = IndexOf(item);
180 int IndexOf(T item) const;
182 bool Has(T item) const { return IndexOf(item) >= 0; }
197 int Vector<T>::IndexOf(T item) const {
283 int idx = items_.IndexOf(item);
293 int idx = items_.IndexOf(item);
crazy_linker_util_unittest.cpp 124 TEST(Vector, IndexOf) {
131 TEST_TEXT << "Checking v.IndexOf(" << n * 100 << ")";
132 EXPECT_EQ(n, v.IndexOf(n * 100));
  /ndk/sources/android/crazy_linker/src/
crazy_linker_util.h 171 int index = IndexOf(item);
180 int IndexOf(T item) const;
182 bool Has(T item) const { return IndexOf(item) >= 0; }
197 int Vector<T>::IndexOf(T item) const {
283 int idx = items_.IndexOf(item);
293 int idx = items_.IndexOf(item);
crazy_linker_util_unittest.cpp 124 TEST(Vector, IndexOf) {
131 TEST_TEXT << "Checking v.IndexOf(" << n * 100 << ")";
132 EXPECT_EQ(n, v.IndexOf(n * 100));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
ErrorManager.cs 74 if (f.ToString().IndexOf("ErrorManager") < 0)
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 131 int index = charSet.IndexOf(srcString[pos]);
199 if (commandString.IndexOf(id) == 0)
229 int newIndex = commandString.IndexOf(c);
234 if (commandString.IndexOf(c, newIndex + 1) >= 0)
  /art/runtime/entrypoints/quick/
quick_entrypoints_list.h 90 V(IndexOf, int32_t, void*, uint32_t, uint32_t, uint32_t) \
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 421 ReturnValue := FIList.IndexOf(Value);
424 ReturnValue := FIList.IndexOf(Value);
  /external/chromium_org/chrome/browser/history/
top_sites_impl.cc 303 static int IndexOf(const MostVisitedURLList& urls, const GURL& url) {
646 IndexOf(*urls, prepopulate_urls[i].url) == -1) {
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_vector.i 329 int IndexOf(CTYPE const& value) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 126 int index = opName.IndexOf('$');

Completed in 232 milliseconds

1 2