> 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/instructions/instructions.without_callee_names.md).

# Instructions.without\_callee\_names()

Adds a filter to get instructions that don't call a function with the given name.

`without_callee_names(`*`name: str`*`,`` `*`sensitivity: bool = True`*`) →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *


def query():
  return (
    Instructions()
    .without_callee_names(["transfer", "transferFrom"])
    .exec(3, 101)
  )
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FPkf7TAy0YUCflVJbPw9x%2Fimage.png?alt=media&amp;token=c4e01a9d-5a2a-4f00-acb6-836a16b89e05" alt=""><figcaption></figcaption></figure>
