This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
warning: The interpretation of store paths arguments ending in `.drv` recently changed. If this command is now failing try again with '/nix/store/baxzayqrsl7yymx2yp0k34j7yy218cv0-python3.10-cryptography-41.0.3-armv7l-unknown-linux-gnueabihf.drv^*' | |
Sourcing python-remove-tests-dir-hook | |
Sourcing python-remove-bin-bytecode-hook.sh | |
Sourcing pypa-build-hook | |
Using pypaBuildPhase | |
Sourcing pypa-install-hook | |
Using pypaInstallPhase | |
Sourcing python-namespaces-hook | |
Sourcing python-catch-conflicts-hook.sh | |
Sourcing setuptools-rust-hook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// LSP entry point | |
pub fn handle_folding_range( | |
world: ServerWorld, | |
params: FoldingRangeParams, | |
_token: JobToken, | |
) -> Result<Option<Vec<FoldingRange>>> { | |
let file_id = params.text_document.try_conv_with(&world)?; | |
let file = world.analysis().file_syntax(file_id); | |
let line_index = world.analysis().file_line_index(file_id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class SearchFilterAdapterBase : MvxAdapter, IFilterable | |
{ | |
protected SearchFilterAdapterBase(Context context) | |
: base(context) {} | |
protected SearchFilterAdapterBase(Context context, IMvxAndroidBindingContext bindingContext) | |
: base(context, bindingContext) {} | |
protected abstract Filter CreateFilter(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExpandableListViewGroupDragHelper : IDisposable | |
{ | |
private class DragState | |
{ | |
public int PreviousY { get; set; } | |
public int SelectedGroupPosition { get; set; } | |
} | |
public class DragListEventArgs : EventArgs | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Tint-aware version of MvxSpinner so that it's styled properly | |
/// with AppCompat V21 | |
/// </summary> | |
public class MvxTintSpinner : MvxSpinner | |
{ | |
private static readonly int[] TintAttrs = | |
{ | |
Android.Resource.Attribute.Background, | |
Android.Resource.Attribute.PopupBackground |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Tint-aware version of MvxSpinner so that it's styled properly | |
/// with AppCompat V21 | |
/// </summary> | |
public class MvxAppCompatSpinner : MvxSpinner, ITintableBackgroundView | |
{ | |
private static readonly int[] TintAttrs = | |
{ | |
Android.Resource.Attribute.Background, | |
Android.Resource.Attribute.PopupBackground |