> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/functions/functions.with_all_modifier_names.md).

# Functions.with\_all\_modifier\_names()

`with_all_modifier_names(names: List[str], sensitivity: bool = True) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have modifiers with all the given names.

## Example

```python
from glider import *

def query():
  functions = Functions().with_all_modifier_names(['lock', 'onlyOwner']).exec(1)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FTov2GQ4msoiAx5iX7erk%2Fimage.png?alt=media&amp;token=37384e77-ffe8-4b5f-aad9-ec4cc65ac551" alt=""><figcaption></figcaption></figure>
