repo_id
stringclasses
927 values
file_path
stringlengths
99
214
content
stringlengths
2
4.15M
portable
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/exp/sprite/portable/affine_test.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package portable import ( "image" "image/color" "image/draw" "image/png" "io/ioutil" "math" "os" "runtime" "testing" "golang.org/x/mobile/event/size...
portable
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/exp/sprite/portable/portable.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package portable implements a sprite Engine using the image package. // // It is intended to serve as a reference implementation for testing // other sprite ...
glsprite
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/exp/sprite/glsprite/glsprite.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || linux || windows // Package glsprite implements a sprite Engine using OpenGL ES 2. // // Each sprite.Texture is loaded as a GL texture obj...
geom
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/geom/geom.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package geom defines a two-dimensional coordinate system. The coordinate system is based on an left-handed Cartesian plane. That is, X increases to the righ...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/android.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build android /* Android Apps are built with -buildmode=c-shared. They are loaded by a running Java process. Before any entry point is reached, a global ...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/darwin_ios.m
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && ios // +build darwin // +build ios #include "_cgo_export.h" #include <pthread.h> #include <stdio.h> #include <sys/utsname.h> #import <UIK...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/app.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux || darwin || windows package app import ( "golang.org/x/mobile/event/lifecycle" "golang.org/x/mobile/event/size" "golang.org/x/mobile/gl" ...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/android.c
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build android // +build android #include <android/log.h> #include <dlfcn.h> #include <errno.h> #include <fcntl.h> #include <stdint.h> #include <string.h> ...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/x11.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux && !android package app /* Simple on-screen app debugging for X11. Not an officially supported development target for apps, as screens with m...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/GoNativeActivity.java
package org.golang.app; import android.app.Activity; import android.app.NativeActivity; import android.content.Context; import android.content.pm.ActivityInfo; import android.content.pm.PackageManager; import android.os.Bundle; import android.util.Log; import android.view.KeyCharacterMap; public class GoNativeActivit...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/doc.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package app lets you write portable all-Go apps for Android and iOS. There are typically two ways to use Go on Android and iOS. The first is to write a Go l...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/darwin_desktop.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && !ios package app // Simple on-screen app debugging for OS X. Not an officially supported // development target for apps, as screens with ...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/darwin_desktop.m
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && !ios // +build darwin // +build !ios #include "_cgo_export.h" #include <pthread.h> #include <stdio.h> #import <Cocoa/Cocoa.h> #import <Fo...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/x11.c
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux && !android // +build linux,!android #include "_cgo_export.h" #include <EGL/egl.h> #include <GLES2/gl2.h> #include <X11/Xlib.h> #include <X11/...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/shiny.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build windows package app import ( "log" "golang.org/x/exp/shiny/driver/gldriver" "golang.org/x/exp/shiny/screen" "golang.org/x/mobile/event/lifecyc...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/app_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package app_test import ( "fmt" "image" "image/color" _ "image/png" "io/ioutil" "net" "os" "os/exec" "strings" "testing" "time" "golang.org/x/mobi...
app
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/darwin_ios.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && ios package app /* #cgo CFLAGS: -x objective-c -DGL_SILENCE_DEPRECATION -DGLES_SILENCE_DEPRECATION #cgo LDFLAGS: -framework Foundation -f...
callfn
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/callfn/callfn_arm.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" #include "funcdata.h" TEXT ·CallFn(SB),$0-4 MOVW fn+0(FP), R0 BL (R0) RET
callfn
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/callfn/callfn_386.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" #include "funcdata.h" TEXT ·CallFn(SB),$0-4 MOVL fn+0(FP), AX CALL AX RET
callfn
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/callfn/callfn_arm64.s
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" #include "funcdata.h" TEXT ·CallFn(SB),$0-8 MOVD fn+0(FP), R0 BL (R0) RET
callfn
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/callfn/callfn_amd64.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" #include "funcdata.h" TEXT ·CallFn(SB),$0-8 MOVQ fn+0(FP), AX CALL AX RET
callfn
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/callfn/callfn.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build android && (arm || 386 || amd64 || arm64) // Package callfn provides an android entry point. // // It is a separate package from app because it cont...
apptest
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/apptest/apptest.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package apptest provides utilities for testing an app. // // It is extremely incomplete, hence it being internal. // For starters, it should support iOS. pac...
testapp
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/testapp/AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.golang.testapp" android:versionCode="...
testapp
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/app/internal/testapp/testapp.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || linux // Small test app used by app/app_test.go. package main import ( "log" "net" "golang.org/x/mobile/app" "golang.org/x/mobile/ap...
sdkpath
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/sdkpath/sdkpath.go
// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package sdkpath provides functions for locating the Android SDK. // These functions respect the ANDROID_HOME environment variable, and // otherwise use the ...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/sdk.go
package binres import ( "archive/zip" "bytes" "compress/gzip" "fmt" "io" "os" "path/filepath" "golang.org/x/mobile/internal/sdkpath" ) // MinSDK is the targeted sdk version for support by package binres. const MinSDK = 16 func apiResources() ([]byte, error) { apiResPath, err := apiResourcesPath() if err !...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/binres_string.go
// Code generated by "stringer -output binres_string.go -type ResType,DataType"; DO NOT EDIT. package binres import "strconv" const ( _ResType_name_0 = "ResNullResStringPoolResTableResXML" _ResType_name_1 = "ResXMLStartNamespaceResXMLEndNamespaceResXMLStartElementResXMLEndElementResXMLCharData" _ResType_name_2 = ...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/node.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package binres // NodeHeader is header all xml node types have, providing additional // information regarding an xml node over binChunkHeader. type NodeHeader...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/binres_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package binres import ( "bytes" "encoding" "encoding/xml" "fmt" "io/ioutil" "log" "math" "os" "sort" "strings" "testing" "golang.org/x/mobile/int...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/pool.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package binres import ( "fmt" "unicode/utf16" ) const ( SortedFlag uint32 = 1 << 0 UTF8Flag = 1 << 8 ) // PoolRef is the i'th string in a pool....
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/binres.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:generate go run genarsc.go //go:generate stringer -output binres_string.go -type ResType,DataType // Package binres implements encoding and decoding of a...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/table.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package binres import ( "bytes" "compress/gzip" "errors" "fmt" "io" "strings" "unicode/utf16" ) const NoEntry = 0xFFFFFFFF // TableRef uniquely ident...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/arsc.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Code generated by genarsc.go. DO NOT EDIT. package binres var arsc = []byte("\x1f\x8b\b\x00\x00\x00\x00\x00\x00\xff\xe4\xfb\xff\xbf\x0fZ\x9d>\xfe\xdf/I:\x...
binres
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/genarsc.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ignore // Genarsc generates stripped down version of android.jar resources used // for validation of manifest entries. // // Requires the selected ...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/testdata/gen.sh
#! /usr/bin/env bash # version of build-tools tests run against AAPT=${ANDROID_HOME:-${HOME}/Android/Sdk}/build-tools/32.0.0/aapt # minimum version of android api for resource identifiers supported APIJAR=${ANDROID_HOME:-${HOME}/Android/Sdk}/platforms/android-16/android.jar for f in *.xml; do RES="" if [ -d "${f:0...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/binres/testdata/bootstrap.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2014 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.zentus.balloon" android:versionCode="...
mobileinit
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/mobileinit/mobileinit_ios.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package mobileinit import ( "io" "log" "os" "unsafe" ) /* #include <stdlib.h> #include <os/log.h> os_log_t create_os_log() { return os_log_create("org.g...
mobileinit
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/mobileinit/mobileinit.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package mobileinit contains common initialization logic for mobile platforms // that is relevant to both all-Go apps and gobind-based apps. // // Long-term, ...
mobileinit
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/mobileinit/ctx_android.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package mobileinit /* #include <jni.h> #include <stdlib.h> static char* lockJNI(JavaVM *vm, uintptr_t* envp, int* attachedp) { JNIEnv* env; if (vm == NULL)...
mobileinit
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/mobileinit/mobileinit_android.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package mobileinit /* To view the log output run: adb logcat GoLog:I *:S */ // Android redirects stdout and stderr to /dev/null. // As these are common debugg...
importers
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/ast_test.go
package importers import ( "go/parser" "go/token" "reflect" "testing" ) func TestAnalyzer(t *testing.T) { file := `package ast_test import "Prefix/some/pkg/Name" import "Prefix/some/pkg/Name2" const c = Name.Constant type T struct { Name.Type unexported Name.Type2 } func f() { Name2.Func().Func().Func() }...
importers
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/ast.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // The importers package uses go/ast to analyze Go packages or Go files // and collect references to types whose package has a package prefix. // It is used by...
objc
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/objc/objc_test.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package objc import ( "reflect" "runtime" "testing" "golang.org/x/mobile/internal/importers" ) func TestImport(t *testing.T) { if runtime.GOOS != "darwi...
objc
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/objc/objc.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // The objc package takes the result of an AST traversal by the // importers package and uses the clang command to dump the type // information for the referenc...
java
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/java/java_test.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package java import ( "reflect" "testing" "golang.org/x/mobile/internal/importers" ) func TestImport(t *testing.T) { if !IsAvailable() { t.Skipf("javap...
java
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/internal/importers/java/java.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // The java package takes the result of an AST traversal by the // importers package and queries the java command for the type // information for the referenced...
gobind
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gobind/implicit.go
// This file imports implicit dependencies required by generated code. //go:build mobile_implicit package main import ( _ "golang.org/x/mobile/bind" _ "golang.org/x/mobile/bind/java" _ "golang.org/x/mobile/bind/objc" )
gobind
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gobind/doc.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Gobind generates language bindings that make it possible to call Go functions from Java and Objective-C. Typically gobind is not used directly. Instead, a ...
gobind
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gobind/gobind_test.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "fmt" "os" "os/exec" "runtime" "strings" "testing" "golang.org/x/tools/go/packages/packagestest" ) func TestMain(m *te...
gobind
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gobind/main.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "flag" "fmt" "go/ast" "go/types" "io/ioutil" "log" "os" "os/exec" "path/filepath" "strings" "golang.org/x/mobile/in...
gobind
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gobind/gen.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "fmt" "go/ast" "go/token" "go/types" "io" "io/ioutil" "os" "path/filepath" "strings" "unicode" "unicode/utf8" "gol...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/init.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "errors" "fmt" "io" "io/ioutil" "os" "os/exec" "path/filepath" "runtime" "strings" "time" "golang.org/x/mobile/inte...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/install.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "fmt" "os" "os/exec" "path" "strings" ) var cmdInstall = &command{ run: runInstall, Name: "install", Usage: "[-target androi...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/bind.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "encoding/json" "errors" "fmt" "io" "io/ioutil" "os" "os/exec" "path/filepath" "strings" "sync" "golang.org/x/mobil...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/writer.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main // APK is the archival format used for Android apps. It is a ZIP archive with // three extra files: // // META-INF/MANIFEST.MF // META-INF/CERT.S...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/init_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "io/ioutil" "os" "os/exec" "path/filepath" "runtime" "strings" "testing" "text/template" ) var gopath string func Tes...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/version.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "fmt" "os" "os/exec" "path/filepath" "strings" "golang.org/x/mobile/internal/sdkpath" ) var cmdVersion = &command{ run...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/manifest.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "encoding/xml" "errors" "fmt" "html/template" ) type manifestXML struct { Activity activityXML `xml:"application>activity"` } typ...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/bind_androidapp.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "archive/zip" "fmt" "io" "io/ioutil" "os" "os/exec" "path/filepath" "strings" "golang.org/x/mobile/internal/sdkpath" "golang....
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/tools.go
// This file includes the tools the gomobile depends on. //go:build tools package main import ( _ "golang.org/x/mobile/cmd/gobind" )
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/strings_flag.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import "fmt" type stringsFlag []string func (v *stringsFlag) Set(s string) error { var err error *v, err = splitQuotedFields(s) if *v == nil...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/bind_iosapp.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "encoding/xml" "errors" "fmt" "io" "os/exec" "path/filepath" "strconv" "strings" "text/template" "time" "golang.org...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/clean.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "fmt" "path/filepath" ) var cmdClean = &command{ run: runClean, Name: "clean", Usage: "", Short: "remove object files and cach...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/doc.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Code generated by 'gomobile help documentation doc.go'. DO NOT EDIT. /* Gomobile is a tool for building and running mobile apps written in Go. To install:...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/build.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:generate go run gendex.go -o dex.go package main import ( "bufio" "errors" "fmt" "io" "os" "os/exec" "regexp" "strconv" "strings" "golang.org...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/build_darwin_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "os" "path/filepath" "testing" "text/template" ) func TestAppleBuild(t *testing.T) { if !xcodeAvailable() { t.Skip("Xco...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/writer_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "crypto/x509" "encoding/pem" "io" "io/ioutil" "os" "os/exec" "testing" ) func TestWriter(t *testing.T) { if os.Getenv("GO_BUILD...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/env.go
package main import ( "bufio" "encoding/json" "errors" "fmt" "io/fs" "io/ioutil" "os" "os/exec" "path/filepath" "runtime" "strings" "golang.org/x/mobile/internal/sdkpath" ) // General mobile build environment. Initialized by envInit. var ( gomobilepath string // $GOPATH/pkg/gomobile androi...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/gendex.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ignore // Gendex generates a dex file used by Go apps created with gomobile. // // The dex is a thin extension of NativeActivity, providing access ...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/build_apple.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "crypto/x509" "encoding/pem" "fmt" "io/ioutil" "os" "os/exec" "path" "path/filepath" "strings" "text/template" "gol...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/build_androidapp.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "crypto/x509" "encoding/base64" "encoding/pem" "encoding/xml" "errors" "fmt" "io" "io/ioutil" "log" "os" "path" "pa...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/build_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "io/ioutil" "os" "os/exec" "path/filepath" "runtime" "strings" "testing" "text/template" "golang.org/x/mobile/interna...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/env_test.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "fmt" "io/ioutil" "os" "path/filepath" "testing" ) func TestNdkRoot(t *testing.T) { home, err := ioutil.TempDir("", "gomobile-tes...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/dex.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Code generated by gendex.go. DO NOT EDIT. package main var dexStr = `ZGV4CjAzNQAoeJK42wHKtxuGg5UGeZAqfLMlHcB49+eQCAAAcAAAAHhWNBIAAAAAAAAAAP` + `AHAAAxAAA...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/cert.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "crypto" "crypto/rsa" "crypto/sha1" "crypto/x509" "crypto/x509/pkix" "encoding/asn1" "io" "math/big" "time" ) // signPKCS7 doe...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/main.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main //go:generate gomobile help documentation doc.go import ( "bufio" "bytes" "flag" "fmt" "html/template" "io" "io/ioutil" "log" "os" "os...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/cert_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "crypto/rand" "crypto/x509" "encoding/pem" "io/ioutil" "os" "os/exec" "testing" ) func TestSignPKCS7(t *testing.T) { // Setup R...
gomobile
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/cmd/gomobile/bind_test.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "bytes" "os" "os/exec" "path/filepath" "runtime" "strings" "testing" "text/template" "golang.org/x/mobile/internal/sdkpath" ) ...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work_windows_386.s
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" // fixFloat is unnecessary for windows/386 TEXT ·fixFloat(SB),NOSPLIT,$0-16 RET
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work.h
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #ifdef os_android // TODO(crawshaw): We could include <android/api-level.h> and // condition on __ANDROID_API__ to get GLES3 headers. However // we also need to...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/interface.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gl // Context is an OpenGL ES context. // // A Context has a method for every GL function supported by ES 2 or later. // In a program compiled with ES...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work_windows.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gl import ( "runtime" "syscall" "unsafe" ) // context is described in work.go. type context struct { debug int32 workAvailable chan struc...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/consts.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gl /* Partially generated from the Khronos OpenGL API specification in XML format, which is covered by the license: Copyright (c) 2013-2014 The Khro...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/types_debug.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (darwin || linux || openbsd || windows) && gldebug package gl // Alternate versions of the types defined in types.go with extra // debugging infor...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/gldebug.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Code generated from gl.go using go generate. DO NOT EDIT. // See doc.go for details. //go:build (darwin || linux || openbsd || windows) && gldebug package...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/types_prod.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (darwin || linux || openbsd || windows) && !gldebug package gl import "fmt" // Enum is equivalent to GLenum, and is normally used with one of the...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work_windows_amd64.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "textflag.h" TEXT ·fixFloat(SB),NOSPLIT,$0-32 MOVQ x0+0(FP), X0 MOVQ x1+8(FP), X1 MOVQ x2+16(FP), X2 MOVQ x3+24(FP), X3 RET
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/doc.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package gl implements Go bindings for OpenGL ES 2.0 and ES 3.0. The GL functions are defined on a Context object that is responsible for tracking a GL cont...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work.c
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || linux || openbsd // +build darwin linux openbsd #include <stdlib.h> #include "_cgo_export.h" #include "work.h" #if defined(GL_ES_VERSION_...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/fn.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gl import "unsafe" type call struct { args fnargs parg unsafe.Pointer blocking bool } type fnargs struct { fn glfn a0 uintptr a1 uint...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work_other.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (!cgo || (!darwin && !linux && !openbsd)) && !windows package gl // This file contains stub implementations of what the other work*.go files // pro...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/work.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || linux || openbsd package gl /* #cgo ios LDFLAGS: -framework OpenGLES #cgo darwin,!ios LDFLAGS: -framework OpenGL #cgo linux ...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/gl.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (darwin || linux || openbsd || windows) && !gldebug package gl // TODO(crawshaw): should functions on specific types become methods? E.g. // ...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/gendebug.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ignore // The gendebug program takes gl.go and generates a version of it // where each function includes tracing code that writes its arguments // ...
gl
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/gl/dll_windows.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package gl import ( "archive/tar" "compress/gzip" "debug/pe" "fmt" "io" "io/ioutil" "log" "net/http" "os" "path/filepath" "runtime" ) var debug = l...
network
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/example/network/AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2015 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.golang.todo.network" android:versionC...
network
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/example/network/main.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || linux || windows // An app that paints green if golang.org is reachable when the app first // starts, or red otherwise. // // In order to ...
network
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/example/network/main_x.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build !darwin && !linux && !windows package main func main() { }
ivy
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/mobile/example/ivy/tools.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ignore package dummy // This is a dummy go file to add required module dependencies to go.mod. import ( _ "golang.org/x/mobile/bind" _ "robpike...