View url_parser.dart
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
static int findEnd(String string, int start) { | |
int index = string.indexOf(">", start); | |
if (index == -1) { | |
return string.length -1; | |
} else { | |
return index; | |
} | |
} | |
static List<TextSpan> parseHtml(String html) { |
View request.json
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
{ | |
"originalRequest": { | |
"data": { | |
"isInSandbox": true, | |
"surface": { | |
"capabilities": [ // Wear OS (former Android Wear) | |
{ | |
"name": "actions.capability.SCREEN_OUTPUT" | |
} | |
], |
View listItem.json
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
{ | |
"token": "cheese1", | |
"image": { | |
"contentDescription": "desc1", | |
"sources": [ | |
{ | |
"url": "http://www.example.com/gouda.jpg" | |
} | |
] | |
}, |
View ListTemplate2.json
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
{ | |
"version": "1.0", | |
"sessionAttributes": {}, | |
"response": { | |
"outputSpeech": { | |
"type": "PlainText", | |
"text": "Hallo", | |
"ssml": "<speak>Hallo</speak>" | |
}, | |
"reprompt": { |
View FirebaseAnalytics.java
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
package com.google.firebase.analytics; | |
import android.content.Context; | |
import android.os.Bundle; | |
import android.util.Log; | |
/** | |
* Created by René Kilczan on 12.02.17. | |
*/ | |
public class FirebaseAnalytics { |
View FirebaseCrash.java
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
package com.google.firebase.crash; | |
import android.util.Log; | |
/** | |
* Created by René Kilczan on 11.02.17. | |
*/ | |
public class FirebaseCrash { | |
public static void log(String log) { | |
Log.d("FirebaseDebug", log); |
View MeasureCallbackLayout.java
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 MeasureCallbackLayout extends FrameLayout { | |
private final List<MeasureCallback> listeners = new ArrayList<>(); | |
private int width = -1; | |
private int height = -1; | |
public MeasureCallbackLayout(Context context) { | |
super(context); | |
} | |
public MeasureCallbackLayout(Context context, AttributeSet attrs) { |
View Windows Deutsch.keylayout
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
<?xml version="1.1" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!--Last edited by Ukelele version 3.0.2.59 on 2016-06-30 at 22:02 (MESZ)--> | |
<keyboard group="6" id="19307" maxout="11" name="Windows Deutsch"> | |
<layouts> | |
<layout first="0" last="4" mapSet="fb0" modifiers="84"/> | |
<layout first="5" last="5" mapSet="18c" modifiers="84"/> | |
<layout first="8" last="9" mapSet="18c" modifiers="84"/> | |
<layout first="13" last="13" mapSet="18c" modifiers="84"/> | |
</layouts> |
View android23.tag
This file has been truncated, but you can view the full file.
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
<?xml version="1.0" encoding="UTF-8"?><tagfile> | |
<compound kind="class"> | |
<name>org::apache::harmony::tests::java::util::support::A</name> | |
<filename>http://developer.android.com/reference/org/apache/harmony/tests/java/util/support/A.html</filename> | |
<base>org::apache::harmony::tests::java::util::support::I</base> | |
</compound> | |
<compound kind="class"> | |
<name>com::android::settingslib::bluetooth::A2dpProfile</name> | |
<filename>http://developer.android.com/reference/com/android/settingslib/bluetooth/A2dpProfile.html</filename> | |
<base>com::android::settingslib::bluetooth::LocalBluetoothProfile</base> |
View IterableSparseArray.java
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
/** | |
* @copyright | |
* This code is licensed under the Rekisoft Public License. | |
* See http://www.rekisoft.eu/licenses/rkspl.html for more informations. | |
*/ | |
/** | |
* @package eu.rekisoft.android.util | |
* This package contains utils provided by [rekisoft.eu](http://rekisoft.eu/). | |
*/ | |
package eu.rekisoft.android.util; |
NewerOlder