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"
|
2017-10-03 01:05:19 +03:00
|
|
|
#include "nsAtom.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
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtomListUtils::IsMember(nsAtom *aAtom,
|
2017-10-20 06:04:47 +03:00
|
|
|
const nsStaticAtomSetup* aSetup,
|
|
|
|
uint32_t aCount)
|
2003-02-22 18:58:07 +03:00
|
|
|
{
|
2017-10-20 06:04:47 +03:00
|
|
|
for (const nsStaticAtomSetup *setup = aSetup, *setup_end = aSetup + aCount;
|
|
|
|
setup != setup_end; ++setup) {
|
|
|
|
if (aAtom == *(setup->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
|
|
|
}
|