/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/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)
|
/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/chrome/browser/history/ |
top_sites.cc | 274 static int IndexOf(const MostVisitedURLList& urls, const GURL& url) { 647 IndexOf(*urls, prepopulate_urls[i].url) == -1) { 702 int cur_index = IndexOf(urls_copy, url); [all...] |
/external/chromium_org/chrome/common/extensions/permissions/ |
permission_set_unittest.cc | 33 size_t IndexOf(const std::vector<string16>& warnings, 45 return IndexOf(warnings, warning) != warnings.size(); 803 size_t combined_index = IndexOf(warnings, "Use your microphone and camera"); 810 EXPECT_EQ(combined_index, IndexOf(warnings, "Use your microphone")); [all...] |
/external/chromium_org/v8/src/ |
serialize.h | 125 int IndexOf(Address key) const;
|
serialize.cc | 611 int index = IndexOf(key); 619 int index = IndexOf(key); 625 int ExternalReferenceEncoder::IndexOf(Address key) const { [all...] |
/external/v8/src/ |
serialize.h | 123 int IndexOf(Address key) const;
|
serialize.cc | 528 int index = IndexOf(key); 536 int index = IndexOf(key); 542 int ExternalReferenceEncoder::IndexOf(Address key) const { [all...] |
/external/chromium_org/chrome/browser/history/ |
top_sites_impl.cc | 335 static int IndexOf(const MostVisitedURLList& urls, const GURL& url) { 684 IndexOf(*urls, prepopulate_urls[i].url) == -1) {
|
top_sites_likely_impl.cc | 335 static int IndexOf(const MostVisitedURLList& urls, const GURL& url) { 688 IndexOf(*urls, prepopulate_urls[i].url) == -1) {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
TokenRewriteStream.cs | 126 int index = opName.IndexOf('$');
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 544 int firstQuoteIndex = @event.IndexOf('"');
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
TokenRewriteStream.cs | 142 int dindex = opName.IndexOf( '$' );
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
RemoteDebugEventSocketListener.cs | 699 int firstQuoteIndex = @event.IndexOf( '"' );
|
/external/chromium_org/win8/metro_driver/ |
file_picker.cc | 56 STDMETHOD(IndexOf)(HSTRING value, unsigned *index, boolean *found) {
|
file_picker_ash.cc | 54 STDMETHOD(IndexOf)(HSTRING value, unsigned *index, boolean *found) {
|
/art/runtime/ |
debugger.cc | [all...] |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Tools.pas | 163 function IndexOf(const Value: T): Integer;
|