2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2003-02-22 18:58:07 +03:00
|
|
|
|
2006-03-30 12:03:04 +04:00
|
|
|
/*
|
|
|
|
* Static helper class for implementing atom lists.
|
|
|
|
*/
|
|
|
|
|
2003-02-22 18:58:07 +03:00
|
|
|
#include "nsAtomListUtils.h"
|
|
|
|
#include "nsIAtom.h"
|
2003-04-02 08:51:07 +04:00
|
|
|
#include "nsStaticAtom.h"
|
2003-02-22 18:58:07 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
/* static */ bool
|
2003-02-22 18:58:07 +03:00
|
|
|
nsAtomListUtils::IsMember(nsIAtom *aAtom,
|
2003-04-02 08:51:07 +04:00
|
|
|
const nsStaticAtom* aInfo,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aInfoCount)
|
2003-02-22 18:58:07 +03:00
|
|
|
{
|
2003-04-02 08:51:07 +04:00
|
|
|
for (const nsStaticAtom *info = aInfo, *info_end = aInfo + aInfoCount;
|
2003-02-22 18:58:07 +03:00
|
|
|
info != info_end; ++info) {
|
|
|
|
if (aAtom == *(info->mAtom))
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2003-02-22 18:58:07 +03:00
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2003-02-22 18:58:07 +03:00
|
|
|
}
|