> 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/callables/callables.with_one_of_the_names.md).

# Callables.with\_one\_of\_the\_names()

`with_one_of_the_names(`*`names: List[str]`*`,`` `*`sensitivity: bool = True`*`) →` [`Callables`](/glider-ide/api/callables.md)

Adds a filter to get callables having specified names. Returns a filtered [Callables](/glider-ide/api/callables.md) child object. This method can be called on all [Callables](/glider-ide/api/callables.md) child classes: [Functions](/glider-ide/api/functions.md) and [Modifiers](/glider-ide/api/modifiers.md).

To filter given a single name, refer to [Callables.with\_name()](/glider-ide/api/callables/callables.with_name.md).

To get all but some specified names, refer to [Callables.without\_names()](/glider-ide/api/callables/callables.without_names.md).

### Functions Example

```python
from glider import *

def query():
  # Retrieve all functions that are named `sendMessage` and `totalSupply`
  functions = Functions().with_one_of_the_names(["sendMessage", "totalSupply"]).exec(100)

  # Return the first five functions
  return functions[:5]
```

Output:

<figure><img src="/files/BSzALXI1fv90ageFQsGg" alt=""><figcaption></figcaption></figure>

### Modifiers Example

```python
from glider import *

def query():
  # Retrieve the modifiers that are named `onlyCaller` and `onlyClient`
  modifiers = Modifiers().with_one_of_the_names(["onlyCaller", "onlyClient"]).exec(100)

  # Return the first five modifiers
  return modifiers[:5]
```

Output:

<figure><img src="/files/RX3uGD30V58XztQ5HOXa" alt=""><figcaption></figcaption></figure>
