answer stringlengths 15 1.25M |
|---|
package ie.dit;
public class Match implements Comparable
{
String word;
float ed;
public Match(String word, float ed)
{
this.word = word;
this.ed = ed;
}
public int compareTo(Object m)
{
return (int) (ed - ((Match) m).ed);
}
} |
namespace JetBrains.Annotations
{
using System;
[AttributeUsage(
AttributeTargets.Method | AttributeTargets.Parameter |
AttributeTargets.Property | AttributeTargets.Delegate |
AttributeTargets.Field)]
internal sealed class NotNullAttribute : Attribute
{
}
[AttributeUsage(
AttributeTargets.Method | AttributeTargets.Parameter |
AttributeTargets.Property | AttributeTargets.Delegate |
AttributeTargets.Field)]
internal sealed class CanBeNullAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class <API key> : Attribute
{
}
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class <API key> : Attribute
{
}
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
internal sealed class <API key> : Attribute
{
public string Contract { get; private set; }
public bool ForceFullStates { get; private set; }
public <API key>([NotNull] string contract)
: this(contract, false)
{
}
public <API key>([NotNull] string contract, bool forceFullStates)
{
Contract = contract;
ForceFullStates = forceFullStates;
}
}
[AttributeUsage(AttributeTargets.All)]
internal sealed class <API key> : Attribute
{
public <API key>()
: this(<API key>.Default, <API key>.Default)
{
}
public <API key>(<API key> useKindFlags)
: this(useKindFlags, <API key>.Default)
{
}
public <API key>(<API key> targetFlags)
: this(<API key>.Default, targetFlags)
{
}
public <API key>(
<API key> useKindFlags, <API key> targetFlags)
{
UseKindFlags = useKindFlags;
TargetFlags = targetFlags;
}
public <API key> UseKindFlags { get; private set; }
public <API key> TargetFlags { get; private set; }
}
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate)]
internal sealed class <API key> : Attribute
{
public <API key>([NotNull] string formatParameterName)
{
FormatParameterName = formatParameterName;
}
[NotNull]
public string FormatParameterName { get; private set; }
}
[Flags]
internal enum <API key>
{
Default = Access | Assign | <API key>,
Access = 1,
Assign = 2,
<API key> = 4,
<API key> = 8
}
[Flags]
internal enum <API key>
{
Default = Itself,
Itself = 1,
Members = 2,
WithMembers = Itself | Members
}
} |
#include <QMetaOrm/<API key>.h>
#include <QSqlDatabase>
const QString& <API key>::getDatabaseName() const
{
return databaseName;
}
void <API key>::setDatabaseName(const QString& databaseName)
{
this->databaseName = databaseName;
}
const QString& <API key>::getHostName() const
{
return hostName;
}
void <API key>::setHostName(const QString& hostName)
{
this->hostName = hostName;
}
int <API key>::getPort() const
{
return port;
}
void <API key>::setPort(int port)
{
this->port = port;
}
const QString& <API key>::getUserName() const
{
return userName;
}
void <API key>::setUserName(const QString& userName)
{
this->userName = userName;
}
const QString& <API key>::getPassword() const
{
return password;
}
void <API key>::setPassword(const QString& password)
{
this->password = password;
}
void <API key>::applyTo(QSqlDatabase* database) const
{
if (!hostName.isEmpty())
database->setHostName(hostName);
if (port>0)
database->setPort(port);
if (!databaseName.isEmpty())
database->setDatabaseName(databaseName);
if (!userName.isEmpty())
database->setUserName(userName);
if (!password.isEmpty())
database->setPassword(password);
}
<API key>::<API key>()
:port(0)
{
} |
define(['lodash','authentication'], function(_) {
return ['$scope', '$http', '$timeout', '$location', '$q', function ($scope, $http, $timeout, $location, $q) {
$scope.requests = [];
$scope.refresh = refresh;
$scope.sum = sum;
$scope.distinct = distinct;
$scope.getFromLast = getFromLast;
$scope.isPending = function(r) { return is(r, 'pending' ); };
$scope.isPendingHeld = function(r) { return is(r, 'pending-held' ); };
$scope.isProcessing = function(r) { return is(r, 'processing' ); };
$scope.isProcessingStop = function(r) { return is(r, 'processing-stopped' ); };
$scope.isCompleted = function(r) { return is(r, 'completed' ); };
$scope.isCanceled = function(r) { return is(r, 'canceled' ); };
$scope.isAborted = function(r) { return is(r, 'aborted' ); };
$scope.isCleared = function(r) { return is(r, 'cleared' ); };
$scope.isDay = function(d, upto) { return function(r) { return r.createdOn.indexOf(d)===0 || (upto && r.createdOn.substr(0,10)<d) } };
var qAutoRefresh = null;
$scope.$on('$routeChangeStart', function() {
if(!qAutoRefresh)
return;
console.log('Canceling autoRefresh');
$timeout.cancel(qAutoRefresh);
qAutoRefresh = null;
});
$scope.$watch(function() { return $location.path(); }, function(path) {
if(path != "/") {
$scope.badge = "";
$scope.$root.contact = null;
}
});
autoRefresh();
function autoRefresh() {
qAutoRefresh = null;
refresh();
qAutoRefresh = $timeout(autoRefresh, 30*1000);
}
function refresh() {
$scope.loading = {
downloads : true,
prints : true
}
var r1, r2;
r1 = $http.get("/api/v2014/printsmart-requests", { params : { badge : $location.search().badge } }).then(function(res){
$scope.requests = res.data;
}).catch(function(err) {
if(err.status==403){
$location.url('/403');
return;
}
console.error(err.data||err);
}).finally(function(){
delete $scope.loading.prints;
});
r2 = $http.get("/api/v2014/<API key>", { params : { badge : $location.search().badge } }).then(function(res){
var downloads = res.data;
var totalDownloads = 0;
_.each(downloads, function(d){
totalDownloads += d.items.length * (d.downloads||0);
});
$scope.totalDownloads = totalDownloads;
}).catch(function(err) {
if(err.status==403){
$location.url('/403');
return;
}
console.error(err.data||err);
}).finally(function(){
delete $scope.loading.downloads;
});
$q.all([r1, r2]).finally(function(){
delete $scope.loading;
}).then(function(){
$scope.days = _($scope.requests).map(function(r){
return r.createdOn.substr(0,10);
}).uniq().sortBy().value();
});
}
$scope.averageJobTime = function(slot, last) {
var requests = $scope.requests;
requests = _.filter(requests, function(r) { return r && r.status && r.status[slot]; });
requests = requests.splice (requests.length-11, last);
return sum(_.map(requests, function(r) {
return r.status[slot] - r.status['time-at-creation'];
})) / requests.length;
};
function is(request, status) {
if(status=="cleared") {
return request &&
request.completed;
}
return request &&
request.status &&
request.status['job-state'] === status;
}
function getFromLast(minutes) {
var time = new Date();
time.setMinutes(time.getMinutes()-minutes);
var sTime = formatDate(time);
return _.filter($scope.requests, function(r) {
return r && r.createdOn && r.createdOn > sTime;
});
}
function distinct(value, member1, member2, member3, member4, member5) {
if(value===undefined) return [];
if(value===null) return [];
var values = [];
if(_.isArray(value)) {
_.each(value, function(entry) {
if(member1)
values = _.union(values, distinct(entry[member1], member2, member3, member4, member5));
else if(value!==undefined && value!==null)
values = _.union(values, value);
});
}
else if(member1)
values = _.union(values, distinct(value[member1], member2, member3, member4, member5));
else
values = _.union(values, [value]);
return _.uniq(values);
}
function sum(value, member1, member2, member3, member4, member5) {
if(value===undefined) return 0;
if(value===null) return 0;
var total = 0;
if(_.isArray(value)) {
_.each(value, function(entry) {
if(member1)
total += sum(entry[member1], member2, member3, member4, member5);
else if(_.isNumber(entry))
total += entry;
});
}
else if(member1) {
total += sum(value[member1], member2, member3, member4, member5);
}
else if(_.isNumber(value)) {
total += value;
}
return total;
}
function formatDate(date) {
var pad = function(s) { s = ''+s; return s.length<2 ? '0'+s : s; };
return pad(date.getUTCFullYear())+'-'+
pad(date.getUTCMonth()+1) +'-'+
pad(date.getUTCDate()) +'T'+
pad(date.getUTCHours()) +':'+
pad(date.getUTCMinutes()) +':'+
pad(date.getUTCSeconds()) +'.000Z';
}
}];
}); |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W28641_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page31.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 137px; margin-top: 192px;">
<p class="styleSans697.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">HORIZONTAL SECTION PLAT CONTINENTAL RESOURCES INC. <br/>SECTION 25, T155N, R98W WILLIAMS COUNTY, NORTH DAKOTA <br/> <br/>I <br/>SCALE , 1" = 1000 <br/>RE BAR d? CAP <br/>ALL CORNERS SHOWN ON THIS PLAT WERE FOUND IN THE FIELD DISTANCES TO ALL OTHERS ARE CALCULATED. BEARINGS SHOWN ARE ASSUMED. <br/>‘ BROS! J’IVC'I/VEJ'ji’l/VC l/VC. C ARE, ND LEARN/E A ~I BOX .357 <br/>x K ggwwog '- F BOWMAN MD. 58623 I , .3355 I PHONE: 7'01—523—3340 m ' T <br/>0,, ' FAX: 7074234243 @ N ts" ,_ PROJECT NO. 33—10 <br/> </p>
</div>
<div style="position: absolute; margin-left: 27px; margin-top: 880px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2475px; margin-top: 1732px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
</body>
</html> |
.styleSans176.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 176.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans157.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 157.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 1.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 10.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 11.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans132.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 132.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 12pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans119.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 119.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans2.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 2.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans475.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 475.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans258.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 258.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans268.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 268.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans198.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 198.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans6.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 6.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans199.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 199.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans9.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 9.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 18.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans146.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 146.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans76.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 76.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans27.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 27.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans4.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 4.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans24.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 24.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans3.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 3.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans35.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 35.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans129.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 129.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans12.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 12.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans22.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 22.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans25.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 25.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans155.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 155.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 7.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans14.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 14.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans23.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 23.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 8.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans41.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 41.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans21.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 21.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 13.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans250.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 250.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans82.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 82.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans228.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 228.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans792.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 792.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans71.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 71.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans70.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 70.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans594.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 594.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans19.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 19.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans329.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 329.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans190.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 190.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans696.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 696.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans97.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 97.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans367.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 367.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans691.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 691.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans81.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 81.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans695.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 695.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans162.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 162.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans351.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 351.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans661.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 661.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans662.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 662.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans212.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 212.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans20.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 20.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans1154.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 1154.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans527.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 527.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans15.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 15.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans758.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 758.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans68.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 68.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans196.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 196.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans568.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 568.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
}
.styleSans93.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle> {
font-family: Sans;
font-size: 93.0pt;
font-weight: normal;
font-style: normal;
text-align: 0;
letter-spacing: 0pt;
line-height: 0pt;
} |
<?php
declare(strict_types=1);
namespace Sylius\Component\Core\Promotion\Updater\Rule;
use Sylius\Component\Core\Model\TaxonInterface;
use Sylius\Component\Core\Promotion\Checker\Rule\<API key>;
use Sylius\Component\Promotion\Model\<API key>;
use Sylius\Component\Resource\Repository\RepositoryInterface;
final class <API key> implements <API key>
{
private RepositoryInterface $<API key>;
public function __construct(RepositoryInterface $<API key>)
{
$this-><API key> = $<API key>;
}
public function <API key>(TaxonInterface $taxon): array
{
$<API key> = [];
$promotionRules = $this-><API key>->findBy(['type' => <API key>::TYPE]);
/** @var <API key> $promotionRule */
foreach ($promotionRules as $promotionRule) {
$promotionCode = $this-><API key>($promotionRule, $taxon->getCode());
if (null !== $promotionCode) {
$<API key>[] = $promotionRule->getPromotion()->getCode();
}
}
return $<API key>;
}
private function <API key>(<API key> $promotionRule, string $taxonCode): ?string
{
foreach ($promotionRule->getConfiguration() as $configuration) {
if ($taxonCode === $configuration['taxon']) {
$this-><API key>->remove($promotionRule);
return $promotionRule->getPromotion()->getCode();
}
}
return null;
}
} |
'use strict';
var should = require('should'),
request = require('supertest'),
app = require('../../server'),
mongoose = require('mongoose'),
User = mongoose.model('User'),
Attendee = mongoose.model('Attendee'),
agent = request.agent(app);
/**
* Globals
*/
var credentials, user, attendee;
/**
* Attendee routes tests
*/
describe('Attendee CRUD tests', function() {
beforeEach(function(done) {
// Create user credentials
credentials = {
username: 'username',
password: 'password'
};
// Create a new user
user = new User({
firstName: 'Full',
lastName: 'Name',
displayName: 'Full Name',
email: 'test@test.com',
username: credentials.username,
password: credentials.password,
provider: 'local'
});
// Save a user to the test db and create new Attendee
user.save(function() {
attendee = {
name: 'Attendee Name'
};
done();
});
});
it('should be able to save Attendee instance if logged in', function(done) {
agent.post('/auth/signin')
.send(credentials)
.expect(200)
.end(function(signinErr, signinRes) {
// Handle signin error
if (signinErr) done(signinErr);
// Get the userId
var userId = user.id;
// Save a new Attendee
agent.post('/attendees')
.send(attendee)
.expect(200)
.end(function(attendeeSaveErr, attendeeSaveRes) {
// Handle Attendee save error
if (attendeeSaveErr) done(attendeeSaveErr);
// Get a list of Attendees
agent.get('/attendees')
.end(function(attendeesGetErr, attendeesGetRes) {
// Handle Attendee save error
if (attendeesGetErr) done(attendeesGetErr);
// Get Attendees list
var attendees = attendeesGetRes.body;
// Set assertions
(attendees[0].user._id).should.equal(userId);
(attendees[0].name).should.match('Attendee Name');
// Call the assertion callback
done();
});
});
});
});
it('should not be able to save Attendee instance if not logged in', function(done) {
agent.post('/attendees')
.send(attendee)
.expect(401)
.end(function(attendeeSaveErr, attendeeSaveRes) {
// Call the assertion callback
done(attendeeSaveErr);
});
});
it('should not be able to save Attendee instance if no name is provided', function(done) {
// Invalidate name field
attendee.name = '';
agent.post('/auth/signin')
.send(credentials)
.expect(200)
.end(function(signinErr, signinRes) {
// Handle signin error
if (signinErr) done(signinErr);
// Get the userId
var userId = user.id;
// Save a new Attendee
agent.post('/attendees')
.send(attendee)
.expect(400)
.end(function(attendeeSaveErr, attendeeSaveRes) {
// Set message assertion
(attendeeSaveRes.body.message).should.match('Please fill Attendee name');
// Handle Attendee save error
done(attendeeSaveErr);
});
});
});
it('should be able to update Attendee instance if signed in', function(done) {
agent.post('/auth/signin')
.send(credentials)
.expect(200)
.end(function(signinErr, signinRes) {
// Handle signin error
if (signinErr) done(signinErr);
// Get the userId
var userId = user.id;
// Save a new Attendee
agent.post('/attendees')
.send(attendee)
.expect(200)
.end(function(attendeeSaveErr, attendeeSaveRes) {
// Handle Attendee save error
if (attendeeSaveErr) done(attendeeSaveErr);
// Update Attendee name
attendee.name = 'WHY YOU GOTTA BE SO MEAN?';
// Update existing Attendee
agent.put('/attendees/' + attendeeSaveRes.body._id)
.send(attendee)
.expect(200)
.end(function(attendeeUpdateErr, attendeeUpdateRes) {
// Handle Attendee update error
if (attendeeUpdateErr) done(attendeeUpdateErr);
// Set assertions
(attendeeUpdateRes.body._id).should.equal(attendeeSaveRes.body._id);
(attendeeUpdateRes.body.name).should.match('WHY YOU GOTTA BE SO MEAN?');
// Call the assertion callback
done();
});
});
});
});
it('should be able to get a list of Attendees if not signed in', function(done) {
// Create new Attendee model instance
var attendeeObj = new Attendee(attendee);
// Save the Attendee
attendeeObj.save(function() {
// Request Attendees
request(app).get('/attendees')
.end(function(req, res) {
// Set assertion
res.body.should.be.an.Array.with.lengthOf(1);
// Call the assertion callback
done();
});
});
});
it('should be able to get a single Attendee if not signed in', function(done) {
// Create new Attendee model instance
var attendeeObj = new Attendee(attendee);
// Save the Attendee
attendeeObj.save(function() {
request(app).get('/attendees/' + attendeeObj._id)
.end(function(req, res) {
// Set assertion
res.body.should.be.an.Object.with.property('name', attendee.name);
// Call the assertion callback
done();
});
});
});
it('should be able to delete Attendee instance if signed in', function(done) {
agent.post('/auth/signin')
.send(credentials)
.expect(200)
.end(function(signinErr, signinRes) {
// Handle signin error
if (signinErr) done(signinErr);
// Get the userId
var userId = user.id;
// Save a new Attendee
agent.post('/attendees')
.send(attendee)
.expect(200)
.end(function(attendeeSaveErr, attendeeSaveRes) {
// Handle Attendee save error
if (attendeeSaveErr) done(attendeeSaveErr);
// Delete existing Attendee
agent.delete('/attendees/' + attendeeSaveRes.body._id)
.send(attendee)
.expect(200)
.end(function(attendeeDeleteErr, attendeeDeleteRes) {
// Handle Attendee error error
if (attendeeDeleteErr) done(attendeeDeleteErr);
// Set assertions
(attendeeDeleteRes.body._id).should.equal(attendeeSaveRes.body._id);
// Call the assertion callback
done();
});
});
});
});
it('should not be able to delete Attendee instance if not signed in', function(done) {
// Set Attendee user
attendee.user = user;
// Create new Attendee model instance
var attendeeObj = new Attendee(attendee);
// Save the Attendee
attendeeObj.save(function() {
// Try deleting Attendee
request(app).delete('/attendees/' + attendeeObj._id)
.expect(401)
.end(function(attendeeDeleteErr, attendeeDeleteRes) {
// Set message assertion
(attendeeDeleteRes.body.message).should.match('User is not logged in');
// Handle Attendee error error
done(attendeeDeleteErr);
});
});
});
afterEach(function(done) {
User.remove().exec();
Attendee.remove().exec();
done();
});
}); |
export function isUndefined(obj){
return typeof obj === 'undefined'
}
export function isNull(obj){
return obj === null
}
export function isFunction(obj){
return typeof obj === 'function'
}
export function isString(obj){
return typeof obj === 'string'
}
export function isArray(obj){
return Array.isArray(obj) || obj instanceof Array
}
const toString = Object.prototype.toString
export function isObject(obj){
return toString.call(obj) === '[object Object]'
}
const Empty_Array = []
export function arrayify(obj, start, end){
return Empty_Array.slice.call(obj, start, end)
}
export function extend(dest, src){
for(let key in src){
dest[key] = src[key]
}
return dest
}
export function clone(src){
return extend({}, src)
}
export function noop(){}
export function debounce(fn, delay, scope) {
let timer
return function(...args) {
let context = scope || this
clearTimeout(timer)
timer = setTimeout(function() {
fn.apply(context, args)
}, delay)
}
} |
from unittest import TestCase
from dax.processor_graph import ProcessorGraph
from dax import yaml_doc
from dax.tests import <API key> as yamls
from dax.tests import <API key> as common
from dax.processors import AutoProcessor
class TestLog:
def __init__(self):
self.warnings = list()
def warning(self, message):
self.warnings.append(message)
def clear(self):
self.warnings = list()
class <API key>(TestCase):
@staticmethod
def __getabcdscenario():
proc_a = yamls.generate_yaml(
procname="Proc_A",
scans=[{
'name': 'scan1', 'types': 'T1',
'resources': [
{'type': 'NIFTI', 'name': 't1'}
]}
])
proc_b = yamls.generate_yaml(
procname="Proc_B",
scans=[{
'name': 'scan1', 'types': 'T1',
'resources': [
{'type': 'NIFTI', 'name': 't1'}
]
}
])
proc_c = yamls.generate_yaml(
procname="Proc_C",
assessors=[
{
'name': 'proc1', 'types': 'Proc_A_v1',
'resources': [
{'type': 'SEG', 'name': 'proc_a'}
]
},
{
'name': 'proc2', 'types': 'Proc_B_v1',
'resources': [
{'type': 'SEG2', 'name': 'proc_b'}
]
}
])
proc_d = yamls.generate_yaml(
procname="Proc_D",
assessors=[
{
'name': 'proc1', 'types': 'Proc_C_v1',
'resources': [
{'type': 'THING', 'name': 'proc_c'}
]
},
{
'name': 'proc2', 'types': 'Proc_B_v1',
'resources': [
{'type': 'SEG2', 'name': 'proc_b'}
]
}
])
return [
('Proc_A_v1', yaml_doc.YamlDoc().from_string(proc_a)),
('Proc_B_v1', yaml_doc.YamlDoc().from_string(proc_b)),
('Proc_C_v1', yaml_doc.YamlDoc().from_string(proc_c)),
('Proc_D_v1', yaml_doc.YamlDoc().from_string(proc_d))
]
#def _getTestGraph1(self):
def <API key>(self):
log = TestLog()
graph_description = {
'a': [],
'b': ['a'],
'c': ['a'],
'd': ['b'],
'e': ['b', 'c'],
'f': ['d', 'e']
}
actual = ProcessorGraph.order_from_inputs(graph_description, log)
print(actual)
def <API key>(self):
log = TestLog()
graph_description = {
'a': [],
'b': ['a', 'e'],
'c': ['a'],
'd': ['b'],
'e': ['c', 'd'],
'f': ['d', 'e']
}
actual = ProcessorGraph.order_from_inputs(graph_description, log)
print(actual)
def <API key>(self):
print((ProcessorGraph.<API key>(
<API key>.__getabcdscenario()
)))
def <API key>(self):
log = TestLog()
print((ProcessorGraph.order_from_inputs(
ProcessorGraph.<API key>(
<API key>.__getabcdscenario()
),
log
)))
def <API key>(self):
yamldocs = [p[1] for p in <API key>.__getabcdscenario()]
processors = [AutoProcessor(common.FakeXnat, p) for p in yamldocs]
log = TestLog()
print((ProcessorGraph.order_processors(processors, log)))
def <API key>(self):
class TestProcessor:
def __init__(self, name, inputs):
self.name = name
self.inputs = inputs
def get_proctype(self):
return self.name
def <API key>(self):
return self.inputs
log = TestLog()
p = [
TestProcessor('a', []),
TestProcessor('b', []),
TestProcessor('c', ['a', 'b']),
TestProcessor(None, ['b']),
TestProcessor('e', ['c', 'd']),
]
actual = ProcessorGraph.order_processors(p, log)
self.assertListEqual(
actual, [p[0], p[1], p[2], p[4], p[3]]
)
self.assertListEqual(
log.warnings,
[
'Unable to order all processors:',
' Unordered: e'
]
)
log = TestLog()
p = [
TestProcessor('a', []),
TestProcessor('b', ['a', 'd']),
TestProcessor('c', ['b']),
TestProcessor('d', ['c']),
TestProcessor('e', ['b'])
]
actual = ProcessorGraph.order_processors(p, log)
self.assertListEqual(
actual, [p[0], p[1], p[2], p[3], p[4]]
)
self.assertListEqual(
log.warnings,
[
'Unable to order all processors:',
' Unordered: b, c, d, e',
'Cyclic processor dependencies detected:',
' Cycle: d, c, b'
]
)
log = TestLog()
p = [
TestProcessor('a', []),
TestProcessor('b', ['a', 'd']),
TestProcessor('c', ['b']),
TestProcessor('d', ['c']),
TestProcessor('e', ['b', 'g']),
TestProcessor('f', ['e']),
TestProcessor('g', ['f']),
TestProcessor('h', ['e'])
]
actual = ProcessorGraph.order_processors(p, log)
self.assertListEqual(
actual, [p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]]
)
self.assertListEqual(
log.warnings,
[
'Unable to order all processors:',
' Unordered: b, c, d, e, f, g, h',
'Cyclic processor dependencies detected:',
' Cycle: d, c, b',
' Cycle: g, f, e'
]
)
def test_tarjan(self):
def impl(g, expected):
actual = ProcessorGraph.tarjan(g)
print(actual)
self.assertListEqual(actual, expected)
g = {
'a': ['b', 'c'],
'b': ['d'],
'c': ['e'],
'd': ['f'],
'e': ['f'],
'f': []
}
impl(g, [['f'], ['d'], ['b'], ['e'], ['c'], ['a']])
g = {
'a': ['b'],
'b': ['c', 'e'],
'c': ['d'],
'd': ['b'],
'e': []
}
impl(g, [['e'], ['d', 'c', 'b'], ['a']])
g = {
'a': ['b'],
'b': ['c'],
'c': ['a']
}
impl(g, [['c', 'b', 'a']])
g = {
'a': ['b'],
'b': ['c', 'e'],
'c': ['d'],
'd': ['b'],
'e': ['f', 'h'],
'f': ['g'],
'g': ['e'],
'h': []
}
impl(g, [['h'], ['g', 'f', 'e'], ['d', 'c', 'b'], ['a']]) |
import ColorUtil from "../utils/ColorUtil";
import ArraySpan from "../math/ArraySpan";
import Behaviour from "./Behaviour";
export default class Color extends Behaviour {
/**
* @memberof! Proton#
* @augments Proton.Behaviour
* @constructor
* @alias Proton.Color
*
* @param {Proton.ArraySpan | String} a the string should be a hex e.g. #000000 for black
* @param {Proton.ArraySpan | String} b the string should be a hex e.g. #000000 for black
* @param {Number} [life=Infinity] this behaviour's life
* @param {String} [easing=easeLinear] this behaviour's easing
*
* @property {String} name The Behaviour name
*/
constructor(a, b, life, easing) {
super(life, easing);
this.reset(a, b);
this.name = "Color";
}
/**
* Reset this behaviour's parameters
*
* @method reset
* @memberof Proton#Proton.Color
* @instance
*
* @param {Proton.ArraySpan | String} a the string should be a hex e.g. #000000 for black
* @param {Proton.ArraySpan | String} b the string should be a hex e.g. #000000 for black
* @param {Number} [life=Infinity] this behaviour's life
* @param {String} [easing=easeLinear] this behaviour's easing
*/
reset(a, b, life, easing) {
this.a = ArraySpan.createArraySpan(a);
this.b = ArraySpan.createArraySpan(b);
life && super.reset(life, easing);
}
/**
* Initialize the behaviour's parameters for all particles
*
* @method initialize
* @memberof Proton#Proton.Color
* @instance
*
* @param {Proton.Particle} particle
*/
initialize(particle) {
particle.color = this.a.getValue();
particle.data.colorA = ColorUtil.hexToRgb(particle.color);
if (this.b) particle.data.colorB = ColorUtil.hexToRgb(this.b.getValue());
}
/**
* Apply this behaviour for all particles every time
*
* @method applyBehaviour
* @memberof Proton#Proton.Color
* @instance
*
* @param {Proton.Particle} particle
* @param {Number} the integrate time 1/ms
* @param {Int} the particle index
*/
applyBehaviour(particle, time, index) {
if (this.b) {
this.calculate(particle, time, index);
particle.rgb.r =
particle.data.colorB.r +
(particle.data.colorA.r - particle.data.colorB.r) * this.energy;
particle.rgb.g =
particle.data.colorB.g +
(particle.data.colorA.g - particle.data.colorB.g) * this.energy;
particle.rgb.b =
particle.data.colorB.b +
(particle.data.colorA.b - particle.data.colorB.b) * this.energy;
particle.rgb.r = Math.floor(particle.rgb.r);
particle.rgb.g = Math.floor(particle.rgb.g);
particle.rgb.b = Math.floor(particle.rgb.b);
} else {
particle.rgb.r = particle.data.colorA.r;
particle.rgb.g = particle.data.colorA.g;
particle.rgb.b = particle.data.colorA.b;
}
}
} |
<?php namespace Montage;
use Montage\Exceptions\MontageException;
/**
* The documents class implements IteratorAggregate, making it simple to
* use as the basis of a loop.
*
* Class Documents
* @package Montage
*/
class Documents implements \IteratorAggregate {
/**
* @var array
*/
public $documents = [];
/**
* @var Schema
*/
private $schema;
/**
* @param Schema $schema
*/
public function __construct(Schema $schema)
{
$this->schema = $schema;
$this->montage = $schema->montage;
$this->query = new Query($schema);
}
/**
* Lets us call methods on the query class directly on the document
* class instance. Like some David Copperfield shit...
*
* @param $name
* @param $arguments
* @return $this
* @throws MontageException
*/
public function __call($name, $arguments)
{
if (method_exists($this->query, $name))
{
<API key>([$this->query, $name], $arguments);
return $this;
}
throw new MontageException(sprintf('Could not find method "%s" as part of the document query.'));
}
/**
* Required function for any class that implements IteratorAggregate. Will
* yield documents as they become available. If cursors are returned
* then subsequent requests will be made, yielding more documents.
*
* @return \Generator
* @throws MontageException
*/
public function getIterator()
{
//Run the query
$resp = $this->query->execute();
//Return the documents as an ArrayIterator to satisfy the requirements
//of the getIterator function.
foreach ($resp->data as $document)
{
yield $document;
}
while ($resp->cursors->next) {
//send a new request, resetting $resp
$resp = $this->query->execute($resp->cursors->next);
foreach ($resp->data as $document)
{
yield $document;
}
}
}
/**
* Persist one or more document objects to montage.
*
* @param $doc
* @return mixed
*/
public function save($doc)
{
return $this->montage->request(
'post',
$this->montage->url('document-save', $this->schema->name),
['body' => json_encode($doc)]
);
}
/**
* Get a single document by it's ID from montage.
*
* @param $docId
* @return mixed
*/
public function get($docId)
{
return $this->montage->request(
'get',
$this->montage->url('document-detail', $this->schema->name, $docId)
);
}
/**
* Update a document with a given $docId with new details.
*
* @param $docId
* @param $doc
* @return mixed
*/
public function update($docId, $doc)
{
return $this->montage->request(
'post',
$this->montage->url('document-detail', $this->schema->name, $docId),
['body' => json_encode($doc)]
);
}
/**
* Delete a record with montage.
*
* @param $docId
* @return mixed
*/
public function delete($docId)
{
return $this->montage->request(
'delete',
$this->montage->url('document-detail', $this->schema->name, $docId)
);
}
} |
body {
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
overflow-x: hidden;
}
p li{
font-size: 18px;
margin-top: 15px;
}
#about p::first-letter {
font-weight: bold;
color: #000000;
font-size: larger;
}
p.small {
font-size: 16px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
color: #18BC9C;
outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
margin-top: 30px;
margin-bottom: 30px;
}
hr.star-light,
hr.star-primary {
padding: 0;
border: none;
border-top: solid 5px;
text-align: center;
max-width: 250px;
margin: 25px auto 30px;
}
hr.star-light:after,
hr.star-primary:after {
/*content: "\f007";*/
font-family: FontAwesome;
display: inline-block;
position: relative;
top: -0.8em;
font-size: 2em;
padding: 0 0.25em;
}
#about hr.star-light:after,
#about hr.star-primary:after {
content: "\f007";
}
#portfolio hr.star-light:after,
#portfolio hr.star-primary:after {
content: "\f187";
}
#contact hr.star-light:after,
#contact hr.star-primary:after {
content: "\f0e0";
}
hr.star-light {
border-color: #000000;
}
hr.star-light:after {
background-color: #ffffff;
color: #000000;
}
hr.star-primary {
border-color: #000000;
}
hr.star-primary:after {
background-color: white;
color: #000000;
}
.img-centered {
margin: 0 auto;
}
header {
text-align: center;
background: #ffffff;
color: #000000;
}
header .container {
padding-top: 100px;
padding-bottom: 50px;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text .name {
display: block;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
text-transform: uppercase;
font-weight: 700;
font-size: 2em;
}
header .intro-text .skills {
font-size: 1.25em;
font-weight: 300;
}
@media (min-width: 768px) {
header .container {
padding-top: 200px;
padding-bottom: 100px;
}
header .intro-text .name {
font-size: 4em;
}
header .intro-text .skills {
font-size: 1.75em;
}
}
.navbar-brand {
float: left;
height: 60px;
padding: 1px 1px;
line-height: 10px;
}
.navbar-custom {
background: #ffffff;
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
text-transform: uppercase;
font-weight: 700;
border-bottom: solid 2px #000000;
}
.navbar-custom a:focus {
outline: none;
}
.navbar-custom .navbar-brand {
}
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus,
.navbar-custom .navbar-brand:active,
.navbar-custom .navbar-brand.active {
-webkit-filter: hue-rotate(50deg);
filter: hue-rotate(50deg);
}
.navbar-custom .navbar-nav {
letter-spacing: 1px;
}
.navbar-custom .navbar-nav li a {
color: #000000;
background: #ffffff;
}
.navbar-custom .navbar-nav li a:hover {
color: white;
background: #000000;
}
.navbar-custom .navbar-nav li a:focus,
.navbar-custom .navbar-nav li a:active {
color: white;
background: #000000;
}
.navbar-custom .navbar-nav li.active a {
color: white;
background: #000000;
}
.navbar-custom .navbar-nav li.active a:hover,
.navbar-custom .navbar-nav li.active a:focus,
.navbar-custom .navbar-nav li.active a:active {
color: white;
background: #000000;
}
.navbar-custom .navbar-toggle {
color: #000000;
text-transform: uppercase;
font-size: 10px;
border-color: #000000;
}
.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
background-color: #000000;
color: white;
border-color: #000000;
}
@media (min-width: 768px) {
.navbar-custom {
padding: 25px 0;
-webkit-transition: padding 0.3s;
-moz-transition: padding 0.3s;
transition: padding 0.3s;
}
.navbar-custom .navbar-brand {
font-size: 2em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.navbar-custom.affix {
padding: 10px 0;
}
.navbar-custom.affix .navbar-brand {
font-size: 1.5em;
}
}
section {
padding: 100px 0;
/*border-top:dashed 2px #dddddd;*/
}
section h2 {
margin: 0;
font-size: 3em;
}
section.success {
background: #ffffff;
color: #000000;
}
@media (max-width: 767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
p li{
font-size: 8px;
}
}
#portfolio .portfolio-item {
margin: 0 0 15px;
right: 0;
background: lightgray;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
max-width: 400px;
margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .caption {
/*background: rgba(24, 188, 156, 0.9);*/
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: all ease 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
width: 100%;
height: 20px;
font-size: 20px;
text-align: center;
top: 50%;
margin-top: -12px;
color: white;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
.portfolio-title{
text-align: center;
margin-bottom: 30px;
}
.portfolio-title p{
font-size: small;
}
#portfolio * {
z-index: 2;
}
@media (min-width: 767px) {
#portfolio .portfolio-item {
margin: 0 0 10px;
}
}
.<API key> {
position: relative;
margin-bottom: 0;
padding-bottom: 0.5em;
border-bottom: 1px solid #eeeeee;
}
.<API key> input,
.<API key> textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: none;
border-radius: 0;
font-size: 1.5em;
background: none;
box-shadow: none !important;
resize: none;
}
.<API key> label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: 0.85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top 0.3s ease,opacity 0.3s ease;
-moz-transition: top 0.3s ease,opacity 0.3s ease;
-ms-transition: top 0.3s ease,opacity 0.3s ease;
transition: top 0.3s ease,opacity 0.3s ease;
}
.<API key>:not(:first-child) {
padding-left: 14px;
border-left: 1px solid #eeeeee;
}
.<API key> label {
top: 0;
opacity: 1;
}
.<API key> label {
color: #18BC9C;
}
form .row:first-child .<API key> {
border-top: 1px solid #eeeeee;
}
footer {
color: #000000;
}
footer h3 {
margin-bottom: 30px;
}
footer .footer-above {
padding-top: 50px;
background-color: #ffffff;
/*border-top:dashed 2px #dddddd;;*/
}
footer .footer-col {
margin-bottom: 50px;
}
footer .footer-below {
padding: 25px 0;
background-color: #ffffff;
border-top:solid 2px #000000;
}
.btn-outline {
color: #000000;
font-size: 20px;
border: solid 2px #000000;
background: transparent;
transition: all 0.3s ease-in-out;
margin-top: 15px;
}
.btn-outline:hover{
color: #ffffff;
background: #000000;
border: solid 2px #000000;
}
.btn-outline:focus,
.btn-outline:active,
.btn-primary {
color: white;
background-color: #2C3E50;
border-color: #2C3E50;
font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: white;
background-color: #1a242f;
border-color: #161f29;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #2C3E50;
border-color: #2C3E50;
}
.btn-primary .badge {
color: #2C3E50;
background-color: white;
}
.btn-success {
color: #000000;
background-color: #ffffff;
border-color: #000000;
font-weight: 700;
}
.btn-success:hover{
color: #ffffff;
background-color: #000000;
border-color: #000000;
}
.btn-success:focus,
.btn-success:active,
.open .dropdown-toggle.btn-success {
color: #000000;
background-color: #ffffff;
border-color: #000000;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #18BC9C;
border-color: #18BC9C;
}
.btn-success .badge {
color: #18BC9C;
background-color: white;
}
.btn-social {
display: inline-block;
height: 50px;
width: 50px;
border: 2px solid white;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.btn:focus,
.btn:active,
.btn.active {
outline: none;
}
.scroll-top {
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
z-index: 1049;
}
.scroll-top .btn {
font-size: 20px;
width: 50px;
height: 50px;
border-radius: 100%;
line-height: 28px;
}
.scroll-top .btn:focus {
outline: none;
}
.portfolio-modal .modal-content {
border-radius: 0;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
min-height: 100%;
padding: 100px 0;
/*text-align: center;*/
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
width: 75px;
height: 75px;
background-color: transparent;
top: 50px;
right: 25px;
cursor: pointer;
z-index: 999;
}
.close-modal:hover {
transform: scale(2);
transition: 0.2s linear;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
height: 75px;
width: 1px;
margin-left: 35px;
background-color: #2C3E50;
transform: rotate(45deg);
-ms-transform: rotate(45deg);
/* IE 9 */
-webkit-transform: rotate(45deg);
/* Safari and Chrome */
z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
height: 75px;
width: 1px;
background-color: #2C3E50;
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* IE 9 */
-webkit-transform: rotate(90deg);
/* Safari and Chrome */
z-index: 1052;
}
.portfolio-modal .modal-backdrop {
opacity: 0;
display: none;
}
img.desaturate {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.portfolio-link:hover img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
-moz-transform:scale(1.1,1.1);
-webkit-transform:scale(1.1,1.1);
-o-transform:scale(1.1,1.1);
}
.pageload-overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
visibility: hidden;
}
.pageload-overlay.show {
visibility: visible;
}
.pageload-overlay svg {
position: absolute;
top: 0;
left: 0;
}
.pageload-overlay svg path {
fill: #fff;
}
.box{
width: 85%;
border: 1px solid #e6e6e6;
height: auto;
overflow: auto;
margin: 50px auto;
padding: 1em;
}
.box p{
font-size: small;
}
.emphasize{
color: darkred;
font-weight: bold;
}
.bold{
font-weight: bold;
}
.italic{
font-style: italic;
}
.img-container{
max-width: 100%;
max-height: 100%;
}
.top-margin{
margin-top: 30px;
}
.bottom-margin{
margin-bottom: 30px;
}
.heading-block{
width: 75%;
padding: 5%;
margin: 30px auto;
}
.heading-block:after {
content: '';
display: block;
margin-top: 30px;
width: 40px;
border-top: 2px solid #444;
display: block;
margin-left: auto;
margin-right: auto;
}
.primary{
background-color: darkred;
padding: 10px 20px;
color: white;
}
.primary p{
color: white;
}
figcaption{
text-align: center;
}
.persona-bg{
background: lightgrey;
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AcademyEcosystem.Models
{
public abstract class MeatEater : Animal, ICarnivore
{
public MeatEater(string name, Point location, int size)
: base(name, location, size)
{
}
public virtual int TryEatAnimal(Animal animal)
{
if (animal == null)
{
return 0;
}
return 0;
}
}
} |
# coding=utf-8
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
from msrest.serialization import Model
class Incident(Model):
"""An alert incident indicates the activation status of an alert rule.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar name: Incident name.
:vartype name: str
:ivar rule_name: Rule name that is associated with the incident.
:vartype rule_name: str
:ivar is_active: A boolean to indicate whether the incident is active or
resolved.
:vartype is_active: bool
:ivar activated_time: The time at which the incident was activated in
ISO8601 format.
:vartype activated_time: datetime
:ivar resolved_time: The time at which the incident was resolved in
ISO8601 format. If null, it means the incident is still active.
:vartype resolved_time: datetime
"""
_validation = {
'name': {'readonly': True},
'rule_name': {'readonly': True},
'is_active': {'readonly': True},
'activated_time': {'readonly': True},
'resolved_time': {'readonly': True},
}
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'rule_name': {'key': 'ruleName', 'type': 'str'},
'is_active': {'key': 'isActive', 'type': 'bool'},
'activated_time': {'key': 'activatedTime', 'type': 'iso-8601'},
'resolved_time': {'key': 'resolvedTime', 'type': 'iso-8601'},
}
def __init__(self, **kwargs) -> None:
super(Incident, self).__init__(**kwargs)
self.name = None
self.rule_name = None
self.is_active = None
self.activated_time = None
self.resolved_time = None |
import React, { Component } from 'react'
import Immutable from 'immutable'
import classNames from 'classnames'
import SxCheckBox from './check-box'
class SxCheckBoxGroup extends Component{
constructor(props, context) {
super(props, context)
this.state = {
options: Immutable.fromJS(props.options),
value: Immutable.fromJS(props.value),
info: props.info,
isDisabled: props.isDisabled,
isChange: false,
isSuccess: true,
isActive: false
}
}
<API key>(nextProps){
this.setState({options: Immutable.fromJS(nextProps.options)})
this.setState({value: Immutable.fromJS(nextProps.value)})
this.setState({info: nextProps.info})
this.setState({isDisabled: nextProps.isDisabled})
this.checkOption(nextProps.options, nextProps.value)
}
<API key>(nextProps, nextState) {
let isChanged = !Immutable.is(nextState.options, this.state.options)
|| !Immutable.is(nextState.value, this.state.value)
|| nextState.info != this.state.info
|| nextState.isDisabled != this.state.isDisabled
|| nextState.isChange != this.state.isChange
|| nextState.isSuccess !== this.state.isSuccess
|| nextState.isActive != this.state.isActive
return isChanged
}
componentWillUpdate(nextProps, nextState) {
}
componentDidUpdate(prevProps, prevState){
}
componentWillMount(){
}
componentDidMount(){
this.checkOption(this.state.options, this.state.value)
}
checkOption(options, value){
options = Immutable.fromJS(options)
let values = Immutable.fromJS(value)
let selectedValues = Immutable.fromJS([])
if(values.count() == 0){
selectedValues = this.getOptionsValue(options)
}else{
values.forEach(function(v1, k1){
options = options.map((v2, k2) => {
if(v2.get("value") == v1){
v2 = v2.set("isChecked", true)
}
return v2
})
})
options.forEach((v,k)=>{
if(v.get("isChecked")){
selectedValues = selectedValues.push(v.get("value"))
}
})
}
this.setState({options: options})
this.setState({value: selectedValues})
let isChecked = selectedValues.count() > 0
this.onValidate(isChecked)
}
getOptions(value){
let options = this.state.options
let optionValues = this.state.value
if(value.isChecked){
if(!optionValues.contains(value.value)){
optionValues = optionValues.push(value.value)
}
}else{
optionValues = optionValues.filter((v,k) => v != value.value)
}
options = options.map((v, k) => {
if(v.get("value") == value.value){
v = v.set("isChecked", value.isChecked)
}
return v
})
optionValues.forEach(function(v1, k2){
options = options.map((v2, k2) => {
if(v2.get("value") == v1){
v2 = v2.set("isChecked", true)
}
return v2
})
})
return options
}
getOptionsValue(options){
let optionValues = Immutable.fromJS([])
options.forEach(function(v, k){
if(v.get("isChecked")){
optionValues = optionValues.push(v.get("value"))
}
})
return optionValues
}
getValue(){
return this.state.value
}
isChecked(){
let options = this.state.options.filter( (v,k) =>
v.get("isChecked") == true
)
return options.count() > 0 ? true : false
}
isValidate(){
return this.state.isSuccess
}
onValidate = (isSuccess)=>{
if(this.props.isRequire){
this.setState({isSuccess: isSuccess})
if(this.props.onValidate){
this.props.onValidate(isSuccess)
}
}
return isSuccess
}
onMouseOver = (e)=>{
this.setState({isActive: true})
}
onMouseOut = (e)=>{
this.setState({isActive: false})
let isChecked = this.isChecked()
this.onValidate(isChecked)
}
onCheck = (value)=>{
let options = this.getOptions(value)
let optionValues = this.getOptionsValue(options)
if(this.props.onBinding){
if( this.props.onBinding({
value: optionValues.toJS(),
options: options.toJS(),
isChecked: value.isChecked })
){
this.setState({value: optionValues, options: options, isChange: true})
this.onValidate(optionValues.count()>0)
return true
}else{
return false
}
}else{
this.setState({value: optionValues, options: options, isChange: true})
this.onValidate( optionValues.count()>0 )
return true
}
}
renderHeader = ()=>{
if(this.props.title){
return <div className = "sx-input-header">
<span
className = "sx-input-title"
onClick = { (e)=>this.onMouseOver(e) }>
{ this.props.title }
</span>
{
this.props.isRequire && <i className = "sx-input-require">*</i>
}
</div>
}
return null
}
renderOptions = ()=>{
let options = this.state.options.sort((v1,v2) => v1.get("sortorder", 0) < v2.get("sortorder", 0))
options = options.map((v,k) =>
<SxCheckBox key = { k }
title = { v.get("text") }
value = { v.get("value") }
isChecked = { v.get("isChecked") }
isDisabled = { this.state.isDisabled }
onCheck = { this.onCheck } />
)
return options
}
renderInfo = ()=>{
let content = ""
if(this.state.info != ""){
content = <span className="sx-info">
{ this.state.info }
</span>
}
return content
}
render = ()=>{
let groupClass = classNames({
"sx-radio-box": true,
"sx-radio-box-error": this.state.isChange && !this.state.isSuccess,
"sx-radio-box-active": this.state.isActive
})
return <div className = "sx-radio">
{ this.renderHeader() }
<div className = { groupClass }
onMouseOver = { (e)=>this.onMouseOver(e) }
onMouseOut = { (e)=>this.onMouseOut(e) }>
<span className = "sx-radio-content">
{ this.renderOptions() }
</span>
{ this.props.children }
</div>
{ this.renderInfo() }
</div>
}
}
SxCheckBoxGroup.propTypes = {
title: React.PropTypes.string,
options: React.PropTypes.array,
value: React.PropTypes.array,
info: React.PropTypes.string,
isDisabled: React.PropTypes.bool,
isRequire: React.PropTypes.bool,
onBinding: React.PropTypes.func,
onValidate: React.PropTypes.func
};
SxCheckBoxGroup.defaultProps = {
title: "",
options: [],
value: [],
info: "",
isDisabled: false,
isRequire: false,
onBinding: null,
onValidate: null
};
export default SxCheckBoxGroup |
from kivy.logger import Logger
''' Mock for checking the connection. Set success to test '''
class Netcheck():
def __init__(self, prompt=None):
if prompt is None:
prompt = self._no_prompt
self._prompt = prompt
self.MOCK_RESULT=False
self.<API key>=True
def set_prompt(self, fn):
self._prompt = fn
def <API key>(self):
Logger.info('Mock connection check {}'.format(self.MOCK_RESULT))
return self.MOCK_RESULT
def ask_connect(self, callback=None):
callback = callback if callback else lambda *args, **kwargs: None
if self.<API key>():
callback(True)
else:
self._callback = callback
self._prompt(self._open_settings)
def _open_settings(self, try_connect):
Logger.info('in ask connect callback ' + str(try_connect))
if try_connect:
self._settings_callback()
else:
self._callback(False)
def _settings_callback(self):
#self.MOCK_RESULT=self.<API key>
self._callback(self.<API key>)
def _no_prompt(self, callback):
Logger.warning('No network prompt was set. Cannot ask to connect')
def _set_debug(self, **kwargs):
for k in kwargs:
setattr(self, k, kwargs[k]) |
import { useTranslation } from 'react-i18next'
import type { <API key> } from '../types/<API key>'
import { formatDate } from './format_date'
export const <API key> = (
timeframe: <API key>
): string => {
const { t } = useTranslation('<API key>')
return typeof timeframe === 'string'
? t(timeframe)
: `${formatDate(timeframe.from)} - ${formatDate(timeframe.to)}`
} |
#pragma warning disable 1591
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
[assembly: global::Android.Runtime.<API key>("Prevoz.Droid.Resource", IsApplication=true)]
namespace Prevoz.Droid
{
[System.CodeDom.Compiler.<API key>("Xamarin.Android.Build.Tasks", "1.0.0.0")]
public partial class Resource
{
static Resource()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
public static void UpdateIdValues()
{
global::SimpleAuth.Resource.Id.loginButton = global::Prevoz.Droid.Resource.Id.loginButton;
global::SimpleAuth.Resource.Id.password = global::Prevoz.Droid.Resource.Id.password;
global::SimpleAuth.Resource.Id.username = global::Prevoz.Droid.Resource.Id.username;
global::SimpleAuth.Resource.Layout.login = global::Prevoz.Droid.Resource.Layout.login;
global::SimpleAuth.Resource.String.ApplicationName = global::Prevoz.Droid.Resource.String.ApplicationName;
global::SimpleAuth.Resource.String.Hello = global::Prevoz.Droid.Resource.String.Hello;
global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSize = global::Prevoz.Droid.Resource.Attribute.actionBarSize;
}
public partial class Animation
{
// aapt resource value: 0x7f040000
public const int abc_fade_in = 2130968576;
// aapt resource value: 0x7f040001
public const int abc_fade_out = 2130968577;
// aapt resource value: 0x7f040002
public const int <API key> = 2130968578;
// aapt resource value: 0x7f040003
public const int abc_popup_enter = 2130968579;
// aapt resource value: 0x7f040004
public const int abc_popup_exit = 2130968580;
// aapt resource value: 0x7f040005
public const int <API key> = 2130968581;
// aapt resource value: 0x7f040006
public const int abc_slide_in_bottom = 2130968582;
// aapt resource value: 0x7f040007
public const int abc_slide_in_top = 2130968583;
// aapt resource value: 0x7f040008
public const int <API key> = 2130968584;
// aapt resource value: 0x7f040009
public const int abc_slide_out_top = 2130968585;
// aapt resource value: 0x7f04000a
public const int <API key> = 2130968586;
// aapt resource value: 0x7f04000b
public const int <API key> = 2130968587;
// aapt resource value: 0x7f04000c
public const int design_fab_in = 2130968588;
// aapt resource value: 0x7f04000d
public const int design_fab_out = 2130968589;
// aapt resource value: 0x7f04000e
public const int design_snackbar_in = 2130968590;
// aapt resource value: 0x7f04000f
public const int design_snackbar_out = 2130968591;
static Animation()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animation()
{
}
}
public partial class Animator
{
// aapt resource value: 0x7f050000
public const int <API key> = 2131034112;
static Animator()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animator()
{
}
}
public partial class Attribute
{
// aapt resource value: 0x7f01005d
public const int actionBarDivider = 2130772061;
// aapt resource value: 0x7f01005e
public const int <API key> = 2130772062;
// aapt resource value: 0x7f010057
public const int actionBarPopupTheme = 2130772055;
// aapt resource value: 0x7f01005c
public const int actionBarSize = 2130772060;
// aapt resource value: 0x7f010059
public const int actionBarSplitStyle = 2130772057;
// aapt resource value: 0x7f010058
public const int actionBarStyle = 2130772056;
// aapt resource value: 0x7f010053
public const int <API key> = 2130772051;
// aapt resource value: 0x7f010052
public const int actionBarTabStyle = 2130772050;
// aapt resource value: 0x7f010054
public const int <API key> = 2130772052;
// aapt resource value: 0x7f01005a
public const int actionBarTheme = 2130772058;
// aapt resource value: 0x7f01005b
public const int <API key> = 2130772059;
// aapt resource value: 0x7f010078
public const int actionButtonStyle = 2130772088;
// aapt resource value: 0x7f010074
public const int actionDropDownStyle = 2130772084;
// aapt resource value: 0x7f0100c9
public const int actionLayout = 2130772169;
// aapt resource value: 0x7f01005f
public const int <API key> = 2130772063;
// aapt resource value: 0x7f010060
public const int actionMenuTextColor = 2130772064;
// aapt resource value: 0x7f010063
public const int <API key> = 2130772067;
// aapt resource value: 0x7f010062
public const int <API key> = 2130772066;
// aapt resource value: 0x7f010065
public const int <API key> = 2130772069;
// aapt resource value: 0x7f010067
public const int <API key> = 2130772071;
// aapt resource value: 0x7f010066
public const int <API key> = 2130772070;
// aapt resource value: 0x7f01006b
public const int <API key> = 2130772075;
// aapt resource value: 0x7f010068
public const int <API key> = 2130772072;
// aapt resource value: 0x7f01006d
public const int <API key> = 2130772077;
// aapt resource value: 0x7f010069
public const int <API key> = 2130772073;
// aapt resource value: 0x7f01006a
public const int <API key> = 2130772074;
// aapt resource value: 0x7f010064
public const int <API key> = 2130772068;
// aapt resource value: 0x7f010061
public const int actionModeStyle = 2130772065;
// aapt resource value: 0x7f01006c
public const int <API key> = 2130772076;
// aapt resource value: 0x7f010055
public const int <API key> = 2130772053;
// aapt resource value: 0x7f010056
public const int <API key> = 2130772054;
// aapt resource value: 0x7f0100cb
public const int actionProviderClass = 2130772171;
// aapt resource value: 0x7f0100ca
public const int actionViewClass = 2130772170;
// aapt resource value: 0x7f010080
public const int <API key> = 2130772096;
// aapt resource value: 0x7f0100a4
public const int <API key> = 2130772132;
// aapt resource value: 0x7f0100a5
public const int <API key> = 2130772133;
// aapt resource value: 0x7f0100a3
public const int alertDialogStyle = 2130772131;
// aapt resource value: 0x7f0100a6
public const int alertDialogTheme = 2130772134;
// aapt resource value: 0x7f0100b9
public const int allowStacking = 2130772153;
// aapt resource value: 0x7f0100ba
public const int alpha = 2130772154;
// aapt resource value: 0x7f0100c1
public const int arrowHeadLength = 2130772161;
// aapt resource value: 0x7f0100c2
public const int arrowShaftLength = 2130772162;
// aapt resource value: 0x7f0100ab
public const int <API key> = 2130772139;
// aapt resource value: 0x7f010028
public const int background = 2130772008;
// aapt resource value: 0x7f01002a
public const int backgroundSplit = 2130772010;
// aapt resource value: 0x7f010029
public const int backgroundStacked = 2130772009;
// aapt resource value: 0x7f0100fe
public const int backgroundTint = 2130772222;
// aapt resource value: 0x7f0100ff
public const int backgroundTintMode = 2130772223;
// aapt resource value: 0x7f0100c3
public const int barLength = 2130772163;
// aapt resource value: 0x7f010129
public const int behavior_autoHide = 2130772265;
// aapt resource value: 0x7f010106
public const int behavior_hideable = 2130772230;
// aapt resource value: 0x7f010132
public const int behavior_overlapTop = 2130772274;
// aapt resource value: 0x7f010105
public const int behavior_peekHeight = 2130772229;
// aapt resource value: 0x7f010107
public const int <API key> = 2130772231;
// aapt resource value: 0x7f010127
public const int borderWidth = 2130772263;
// aapt resource value: 0x7f01007d
public const int <API key> = 2130772093;
// aapt resource value: 0x7f010121
public const int <API key> = 2130772257;
// aapt resource value: 0x7f010122
public const int bottomSheetStyle = 2130772258;
// aapt resource value: 0x7f01007a
public const int <API key> = 2130772090;
// aapt resource value: 0x7f0100a9
public const int <API key> = 2130772137;
// aapt resource value: 0x7f0100aa
public const int <API key> = 2130772138;
// aapt resource value: 0x7f0100a8
public const int <API key> = 2130772136;
// aapt resource value: 0x7f010079
public const int buttonBarStyle = 2130772089;
// aapt resource value: 0x7f0100f3
public const int buttonGravity = 2130772211;
// aapt resource value: 0x7f01003d
public const int <API key> = 2130772029;
// aapt resource value: 0x7f0100ac
public const int buttonStyle = 2130772140;
// aapt resource value: 0x7f0100ad
public const int buttonStyleSmall = 2130772141;
// aapt resource value: 0x7f0100bb
public const int buttonTint = 2130772155;
// aapt resource value: 0x7f0100bc
public const int buttonTintMode = 2130772156;
// aapt resource value: 0x7f010011
public const int cardBackgroundColor = 2130771985;
// aapt resource value: 0x7f010012
public const int cardCornerRadius = 2130771986;
// aapt resource value: 0x7f010013
public const int cardElevation = 2130771987;
// aapt resource value: 0x7f010014
public const int cardMaxElevation = 2130771988;
// aapt resource value: 0x7f010016
public const int <API key> = 2130771990;
// aapt resource value: 0x7f010015
public const int <API key> = 2130771989;
// aapt resource value: 0x7f0100ae
public const int checkboxStyle = 2130772142;
// aapt resource value: 0x7f0100af
public const int <API key> = 2130772143;
// aapt resource value: 0x7f0100d6
public const int closeIcon = 2130772182;
// aapt resource value: 0x7f01003a
public const int closeItemLayout = 2130772026;
// aapt resource value: 0x7f0100f5
public const int <API key> = 2130772213;
// aapt resource value: 0x7f0100f4
public const int collapseIcon = 2130772212;
// aapt resource value: 0x7f010114
public const int <API key> = 2130772244;
// aapt resource value: 0x7f01010e
public const int <API key> = 2130772238;
// aapt resource value: 0x7f0100bd
public const int color = 2130772157;
// aapt resource value: 0x7f01009b
public const int colorAccent = 2130772123;
// aapt resource value: 0x7f0100a2
public const int <API key> = 2130772130;
// aapt resource value: 0x7f01009f
public const int colorButtonNormal = 2130772127;
// aapt resource value: 0x7f01009d
public const int <API key> = 2130772125;
// aapt resource value: 0x7f01009e
public const int <API key> = 2130772126;
// aapt resource value: 0x7f01009c
public const int colorControlNormal = 2130772124;
// aapt resource value: 0x7f010099
public const int colorPrimary = 2130772121;
// aapt resource value: 0x7f01009a
public const int colorPrimaryDark = 2130772122;
// aapt resource value: 0x7f0100a0
public const int <API key> = 2130772128;
// aapt resource value: 0x7f0100db
public const int commitIcon = 2130772187;
// aapt resource value: 0x7f010033
public const int contentInsetEnd = 2130772019;
// aapt resource value: 0x7f010037
public const int <API key> = 2130772023;
// aapt resource value: 0x7f010034
public const int contentInsetLeft = 2130772020;
// aapt resource value: 0x7f010035
public const int contentInsetRight = 2130772021;
// aapt resource value: 0x7f010032
public const int contentInsetStart = 2130772018;
// aapt resource value: 0x7f010036
public const int <API key> = 2130772022;
// aapt resource value: 0x7f010017
public const int contentPadding = 2130771991;
// aapt resource value: 0x7f01001b
public const int <API key> = 2130771995;
// aapt resource value: 0x7f010018
public const int contentPaddingLeft = 2130771992;
// aapt resource value: 0x7f010019
public const int contentPaddingRight = 2130771993;
// aapt resource value: 0x7f01001a
public const int contentPaddingTop = 2130771994;
// aapt resource value: 0x7f01010f
public const int contentScrim = 2130772239;
// aapt resource value: 0x7f0100a1
public const int controlBackground = 2130772129;
// aapt resource value: 0x7f010148
public const int counterEnabled = 2130772296;
// aapt resource value: 0x7f010149
public const int counterMaxLength = 2130772297;
// aapt resource value: 0x7f01014b
public const int <API key> = 2130772299;
// aapt resource value: 0x7f01014a
public const int <API key> = 2130772298;
// aapt resource value: 0x7f01002b
public const int <API key> = 2130772011;
// aapt resource value: 0x7f0100d5
public const int defaultQueryHint = 2130772181;
// aapt resource value: 0x7f010072
public const int <API key> = 2130772082;
// aapt resource value: 0x7f010071
public const int dialogTheme = 2130772081;
// aapt resource value: 0x7f010021
public const int displayOptions = 2130772001;
// aapt resource value: 0x7f010027
public const int divider = 2130772007;
// aapt resource value: 0x7f01007f
public const int dividerHorizontal = 2130772095;
// aapt resource value: 0x7f0100c7
public const int dividerPadding = 2130772167;
// aapt resource value: 0x7f01007e
public const int dividerVertical = 2130772094;
// aapt resource value: 0x7f0100bf
public const int drawableSize = 2130772159;
// aapt resource value: 0x7f01001c
public const int drawerArrowStyle = 2130771996;
// aapt resource value: 0x7f010091
public const int <API key> = 2130772113;
// aapt resource value: 0x7f010075
public const int <API key> = 2130772085;
// aapt resource value: 0x7f010086
public const int editTextBackground = 2130772102;
// aapt resource value: 0x7f010085
public const int editTextColor = 2130772101;
// aapt resource value: 0x7f0100b0
public const int editTextStyle = 2130772144;
// aapt resource value: 0x7f010038
public const int elevation = 2130772024;
// aapt resource value: 0x7f010146
public const int errorEnabled = 2130772294;
// aapt resource value: 0x7f010147
public const int errorTextAppearance = 2130772295;
// aapt resource value: 0x7f01003c
public const int <API key> = 2130772028;
// aapt resource value: 0x7f010100
public const int expanded = 2130772224;
// aapt resource value: 0x7f010115
public const int <API key> = 2130772245;
// aapt resource value: 0x7f010108
public const int expandedTitleMargin = 2130772232;
// aapt resource value: 0x7f01010c
public const int <API key> = 2130772236;
// aapt resource value: 0x7f01010b
public const int <API key> = 2130772235;
// aapt resource value: 0x7f010109
public const int <API key> = 2130772233;
// aapt resource value: 0x7f01010a
public const int <API key> = 2130772234;
// aapt resource value: 0x7f01010d
public const int <API key> = 2130772237;
// aapt resource value: 0x7f010010
public const int <API key> = 2130771984;
// aapt resource value: 0x7f010125
public const int fabSize = 2130772261;
// aapt resource value: 0x7f01012a
public const int <API key> = 2130772266;
// aapt resource value: 0x7f0100c0
public const int gapBetweenBars = 2130772160;
// aapt resource value: 0x7f0100d7
public const int goIcon = 2130772183;
// aapt resource value: 0x7f010130
public const int headerLayout = 2130772272;
// aapt resource value: 0x7f01001d
public const int height = 2130771997;
// aapt resource value: 0x7f010031
public const int hideOnContentScroll = 2130772017;
// aapt resource value: 0x7f01014c
public const int <API key> = 2130772300;
// aapt resource value: 0x7f010145
public const int hintEnabled = 2130772293;
// aapt resource value: 0x7f010144
public const int hintTextAppearance = 2130772292;
// aapt resource value: 0x7f010077
public const int homeAsUpIndicator = 2130772087;
// aapt resource value: 0x7f01002c
public const int homeLayout = 2130772012;
// aapt resource value: 0x7f010025
public const int icon = 2130772005;
// aapt resource value: 0x7f0100d3
public const int iconifiedByDefault = 2130772179;
// aapt resource value: 0x7f010087
public const int imageButtonStyle = 2130772103;
// aapt resource value: 0x7f01002e
public const int <API key> = 2130772014;
// aapt resource value: 0x7f01003b
public const int <API key> = 2130772027;
// aapt resource value: 0x7f010131
public const int insetForeground = 2130772273;
// aapt resource value: 0x7f01001e
public const int isLightTheme = 2130771998;
// aapt resource value: 0x7f01012e
public const int itemBackground = 2130772270;
// aapt resource value: 0x7f01012c
public const int itemIconTint = 2130772268;
// aapt resource value: 0x7f010030
public const int itemPadding = 2130772016;
// aapt resource value: 0x7f01012f
public const int itemTextAppearance = 2130772271;
// aapt resource value: 0x7f01012d
public const int itemTextColor = 2130772269;
// aapt resource value: 0x7f010119
public const int keylines = 2130772249;
// aapt resource value: 0x7f0100d2
public const int layout = 2130772178;
// aapt resource value: 0x7f010000
public const int layoutManager = 2130771968;
// aapt resource value: 0x7f01011c
public const int layout_anchor = 2130772252;
// aapt resource value: 0x7f01011e
public const int <API key> = 2130772254;
// aapt resource value: 0x7f01011b
public const int layout_behavior = 2130772251;
// aapt resource value: 0x7f010117
public const int layout_collapseMode = 2130772247;
// aapt resource value: 0x7f010118
public const int <API key> = 2130772248;
// aapt resource value: 0x7f010120
public const int <API key> = 2130772256;
// aapt resource value: 0x7f01011f
public const int layout_insetEdge = 2130772255;
// aapt resource value: 0x7f01011d
public const int layout_keyline = 2130772253;
// aapt resource value: 0x7f010103
public const int layout_scrollFlags = 2130772227;
// aapt resource value: 0x7f010104
public const int <API key> = 2130772228;
// aapt resource value: 0x7f010098
public const int <API key> = 2130772120;
// aapt resource value: 0x7f010073
public const int <API key> = 2130772083;
// aapt resource value: 0x7f010041
public const int listItemLayout = 2130772033;
// aapt resource value: 0x7f01003e
public const int listLayout = 2130772030;
// aapt resource value: 0x7f0100b8
public const int listMenuViewStyle = 2130772152;
// aapt resource value: 0x7f010092
public const int <API key> = 2130772114;
// aapt resource value: 0x7f01008c
public const int <API key> = 2130772108;
// aapt resource value: 0x7f01008e
public const int <API key> = 2130772110;
// aapt resource value: 0x7f01008d
public const int <API key> = 2130772109;
// aapt resource value: 0x7f01008f
public const int <API key> = 2130772111;
// aapt resource value: 0x7f010090
public const int <API key> = 2130772112;
// aapt resource value: 0x7f010026
public const int logo = 2130772006;
// aapt resource value: 0x7f0100f8
public const int logoDescription = 2130772216;
// aapt resource value: 0x7f010133
public const int <API key> = 2130772275;
// aapt resource value: 0x7f0100f2
public const int maxButtonHeight = 2130772210;
// aapt resource value: 0x7f0100c5
public const int <API key> = 2130772165;
// aapt resource value: 0x7f010004
public const int <API key> = 2130771972;
// aapt resource value: 0x7f010005
public const int <API key> = 2130771973;
// aapt resource value: 0x7f010006
public const int <API key> = 2130771974;
// aapt resource value: 0x7f010007
public const int <API key> = 2130771975;
// aapt resource value: 0x7f010008
public const int <API key> = 2130771976;
// aapt resource value: 0x7f010009
public const int <API key> = 2130771977;
// aapt resource value: 0x7f01000a
public const int <API key> = 2130771978;
// aapt resource value: 0x7f01000b
public const int <API key> = 2130771979;
// aapt resource value: 0x7f01000c
public const int <API key> = 2130771980;
// aapt resource value: 0x7f01000d
public const int <API key> = 2130771981;
// aapt resource value: 0x7f01000e
public const int mediaRouteTheme = 2130771982;
// aapt resource value: 0x7f01000f
public const int <API key> = 2130771983;
// aapt resource value: 0x7f01012b
public const int menu = 2130772267;
// aapt resource value: 0x7f01003f
public const int <API key> = 2130772031;
// aapt resource value: 0x7f0100f7
public const int <API key> = 2130772215;
// aapt resource value: 0x7f0100f6
public const int navigationIcon = 2130772214;
// aapt resource value: 0x7f010020
public const int navigationMode = 2130772000;
// aapt resource value: 0x7f0100ce
public const int overlapAnchor = 2130772174;
// aapt resource value: 0x7f0100d0
public const int <API key> = 2130772176;
// aapt resource value: 0x7f0100fc
public const int paddingEnd = 2130772220;
// aapt resource value: 0x7f0100fb
public const int paddingStart = 2130772219;
// aapt resource value: 0x7f0100d1
public const int paddingTopNoTitle = 2130772177;
// aapt resource value: 0x7f010095
public const int panelBackground = 2130772117;
// aapt resource value: 0x7f010097
public const int panelMenuListTheme = 2130772119;
// aapt resource value: 0x7f010096
public const int panelMenuListWidth = 2130772118;
// aapt resource value: 0x7f01014f
public const int <API key> = 2130772303;
// aapt resource value: 0x7f01014e
public const int <API key> = 2130772302;
// aapt resource value: 0x7f01014d
public const int <API key> = 2130772301;
// aapt resource value: 0x7f010150
public const int passwordToggleTint = 2130772304;
// aapt resource value: 0x7f010151
public const int <API key> = 2130772305;
// aapt resource value: 0x7f010083
public const int popupMenuStyle = 2130772099;
// aapt resource value: 0x7f010039
public const int popupTheme = 2130772025;
// aapt resource value: 0x7f010084
public const int popupWindowStyle = 2130772100;
// aapt resource value: 0x7f0100cc
public const int preserveIconSpacing = 2130772172;
// aapt resource value: 0x7f010126
public const int pressedTranslationZ = 2130772262;
// aapt resource value: 0x7f01002f
public const int progressBarPadding = 2130772015;
// aapt resource value: 0x7f01002d
public const int progressBarStyle = 2130772013;
// aapt resource value: 0x7f0100dd
public const int queryBackground = 2130772189;
// aapt resource value: 0x7f0100d4
public const int queryHint = 2130772180;
// aapt resource value: 0x7f0100b1
public const int radioButtonStyle = 2130772145;
// aapt resource value: 0x7f0100b2
public const int ratingBarStyle = 2130772146;
// aapt resource value: 0x7f0100b3
public const int <API key> = 2130772147;
// aapt resource value: 0x7f0100b4
public const int ratingBarStyleSmall = 2130772148;
// aapt resource value: 0x7f010002
public const int reverseLayout = 2130771970;
// aapt resource value: 0x7f010124
public const int rippleColor = 2130772260;
// aapt resource value: 0x7f010113
public const int <API key> = 2130772243;
// aapt resource value: 0x7f010112
public const int <API key> = 2130772242;
// aapt resource value: 0x7f0100d9
public const int searchHintIcon = 2130772185;
// aapt resource value: 0x7f0100d8
public const int searchIcon = 2130772184;
// aapt resource value: 0x7f01008b
public const int searchViewStyle = 2130772107;
// aapt resource value: 0x7f0100b5
public const int seekBarStyle = 2130772149;
// aapt resource value: 0x7f01007b
public const int <API key> = 2130772091;
// aapt resource value: 0x7f01007c
public const int <API key> = 2130772092;
// aapt resource value: 0x7f0100c8
public const int showAsAction = 2130772168;
// aapt resource value: 0x7f0100c6
public const int showDividers = 2130772166;
// aapt resource value: 0x7f0100e9
public const int showText = 2130772201;
// aapt resource value: 0x7f010042
public const int showTitle = 2130772034;
// aapt resource value: 0x7f010040
public const int <API key> = 2130772032;
// aapt resource value: 0x7f010001
public const int spanCount = 2130771969;
// aapt resource value: 0x7f0100be
public const int spinBars = 2130772158;
// aapt resource value: 0x7f010076
public const int <API key> = 2130772086;
// aapt resource value: 0x7f0100b6
public const int spinnerStyle = 2130772150;
// aapt resource value: 0x7f0100e8
public const int splitTrack = 2130772200;
// aapt resource value: 0x7f010043
public const int srcCompat = 2130772035;
// aapt resource value: 0x7f010003
public const int stackFromEnd = 2130771971;
// aapt resource value: 0x7f0100cf
public const int state_above_anchor = 2130772175;
// aapt resource value: 0x7f010101
public const int state_collapsed = 2130772225;
// aapt resource value: 0x7f010102
public const int state_collapsible = 2130772226;
// aapt resource value: 0x7f01011a
public const int statusBarBackground = 2130772250;
// aapt resource value: 0x7f010110
public const int statusBarScrim = 2130772240;
// aapt resource value: 0x7f0100cd
public const int subMenuArrow = 2130772173;
// aapt resource value: 0x7f0100de
public const int submitBackground = 2130772190;
// aapt resource value: 0x7f010022
public const int subtitle = 2130772002;
// aapt resource value: 0x7f0100eb
public const int <API key> = 2130772203;
// aapt resource value: 0x7f0100fa
public const int subtitleTextColor = 2130772218;
// aapt resource value: 0x7f010024
public const int subtitleTextStyle = 2130772004;
// aapt resource value: 0x7f0100dc
public const int suggestionRowLayout = 2130772188;
// aapt resource value: 0x7f0100e6
public const int switchMinWidth = 2130772198;
// aapt resource value: 0x7f0100e7
public const int switchPadding = 2130772199;
// aapt resource value: 0x7f0100b7
public const int switchStyle = 2130772151;
// aapt resource value: 0x7f0100e5
public const int <API key> = 2130772197;
// aapt resource value: 0x7f010137
public const int tabBackground = 2130772279;
// aapt resource value: 0x7f010136
public const int tabContentStart = 2130772278;
// aapt resource value: 0x7f010139
public const int tabGravity = 2130772281;
// aapt resource value: 0x7f010134
public const int tabIndicatorColor = 2130772276;
// aapt resource value: 0x7f010135
public const int tabIndicatorHeight = 2130772277;
// aapt resource value: 0x7f01013b
public const int tabMaxWidth = 2130772283;
// aapt resource value: 0x7f01013a
public const int tabMinWidth = 2130772282;
// aapt resource value: 0x7f010138
public const int tabMode = 2130772280;
// aapt resource value: 0x7f010143
public const int tabPadding = 2130772291;
// aapt resource value: 0x7f010142
public const int tabPaddingBottom = 2130772290;
// aapt resource value: 0x7f010141
public const int tabPaddingEnd = 2130772289;
// aapt resource value: 0x7f01013f
public const int tabPaddingStart = 2130772287;
// aapt resource value: 0x7f010140
public const int tabPaddingTop = 2130772288;
// aapt resource value: 0x7f01013e
public const int <API key> = 2130772286;
// aapt resource value: 0x7f01013c
public const int tabTextAppearance = 2130772284;
// aapt resource value: 0x7f01013d
public const int tabTextColor = 2130772285;
// aapt resource value: 0x7f010047
public const int textAllCaps = 2130772039;
// aapt resource value: 0x7f01006e
public const int <API key> = 2130772078;
// aapt resource value: 0x7f010093
public const int <API key> = 2130772115;
// aapt resource value: 0x7f010094
public const int <API key> = 2130772116;
// aapt resource value: 0x7f010070
public const int <API key> = 2130772080;
// aapt resource value: 0x7f010089
public const int <API key> = 2130772105;
// aapt resource value: 0x7f010088
public const int <API key> = 2130772104;
// aapt resource value: 0x7f01006f
public const int <API key> = 2130772079;
// aapt resource value: 0x7f0100a7
public const int <API key> = 2130772135;
// aapt resource value: 0x7f010123
public const int textColorError = 2130772259;
// aapt resource value: 0x7f01008a
public const int textColorSearchUrl = 2130772106;
// aapt resource value: 0x7f0100fd
public const int theme = 2130772221;
// aapt resource value: 0x7f0100c4
public const int thickness = 2130772164;
// aapt resource value: 0x7f0100e4
public const int thumbTextPadding = 2130772196;
// aapt resource value: 0x7f0100df
public const int thumbTint = 2130772191;
// aapt resource value: 0x7f0100e0
public const int thumbTintMode = 2130772192;
// aapt resource value: 0x7f010044
public const int tickMark = 2130772036;
// aapt resource value: 0x7f010045
public const int tickMarkTint = 2130772037;
// aapt resource value: 0x7f010046
public const int tickMarkTintMode = 2130772038;
// aapt resource value: 0x7f01001f
public const int title = 2130771999;
// aapt resource value: 0x7f010116
public const int titleEnabled = 2130772246;
// aapt resource value: 0x7f0100ec
public const int titleMargin = 2130772204;
// aapt resource value: 0x7f0100f0
public const int titleMarginBottom = 2130772208;
// aapt resource value: 0x7f0100ee
public const int titleMarginEnd = 2130772206;
// aapt resource value: 0x7f0100ed
public const int titleMarginStart = 2130772205;
// aapt resource value: 0x7f0100ef
public const int titleMarginTop = 2130772207;
// aapt resource value: 0x7f0100f1
public const int titleMargins = 2130772209;
// aapt resource value: 0x7f0100ea
public const int titleTextAppearance = 2130772202;
// aapt resource value: 0x7f0100f9
public const int titleTextColor = 2130772217;
// aapt resource value: 0x7f010023
public const int titleTextStyle = 2130772003;
// aapt resource value: 0x7f010111
public const int toolbarId = 2130772241;
// aapt resource value: 0x7f010082
public const int <API key> = 2130772098;
// aapt resource value: 0x7f010081
public const int toolbarStyle = 2130772097;
// aapt resource value: 0x7f0100e1
public const int track = 2130772193;
// aapt resource value: 0x7f0100e2
public const int trackTint = 2130772194;
// aapt resource value: 0x7f0100e3
public const int trackTintMode = 2130772195;
// aapt resource value: 0x7f010128
public const int useCompatPadding = 2130772264;
// aapt resource value: 0x7f0100da
public const int voiceIcon = 2130772186;
// aapt resource value: 0x7f010048
public const int windowActionBar = 2130772040;
// aapt resource value: 0x7f01004a
public const int <API key> = 2130772042;
// aapt resource value: 0x7f01004b
public const int <API key> = 2130772043;
// aapt resource value: 0x7f01004f
public const int <API key> = 2130772047;
// aapt resource value: 0x7f01004d
public const int <API key> = 2130772045;
// aapt resource value: 0x7f01004c
public const int <API key> = 2130772044;
// aapt resource value: 0x7f01004e
public const int <API key> = 2130772046;
// aapt resource value: 0x7f010050
public const int windowMinWidthMajor = 2130772048;
// aapt resource value: 0x7f010051
public const int windowMinWidthMinor = 2130772049;
// aapt resource value: 0x7f010049
public const int windowNoTitle = 2130772041;
static Attribute()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Attribute()
{
}
}
public partial class Boolean
{
// aapt resource value: 0x7f0d0000
public const int <API key> = 2131558400;
// aapt resource value: 0x7f0d0001
public const int <API key> = 2131558401;
// aapt resource value: 0x7f0d0002
public const int <API key> = 2131558402;
// aapt resource value: 0x7f0d0003
public const int <API key> = 2131558403;
// aapt resource value: 0x7f0d0004
public const int <API key> = 2131558404;
static Boolean()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Boolean()
{
}
}
public partial class Color
{
// aapt resource value: 0x7f0c004e
public const int <API key> = 2131492942;
// aapt resource value: 0x7f0c004f
public const int <API key> = 2131492943;
// aapt resource value: 0x7f0c0050
public const int <API key> = 2131492944;
// aapt resource value: 0x7f0c0051
public const int <API key> = 2131492945;
// aapt resource value: 0x7f0c0052
public const int <API key> = 2131492946;
// aapt resource value: 0x7f0c0053
public const int <API key> = 2131492947;
// aapt resource value: 0x7f0c0054
public const int <API key> = 2131492948;
// aapt resource value: 0x7f0c0005
public const int <API key> = 2131492869;
// aapt resource value: 0x7f0c0055
public const int <API key> = 2131492949;
// aapt resource value: 0x7f0c0056
public const int <API key> = 2131492950;
// aapt resource value: 0x7f0c0057
public const int <API key> = 2131492951;
// aapt resource value: 0x7f0c0058
public const int <API key> = 2131492952;
// aapt resource value: 0x7f0c0059
public const int abc_search_url_text = 2131492953;
// aapt resource value: 0x7f0c0006
public const int <API key> = 2131492870;
// aapt resource value: 0x7f0c0007
public const int <API key> = 2131492871;
// aapt resource value: 0x7f0c0008
public const int <API key> = 2131492872;
// aapt resource value: 0x7f0c005a
public const int <API key> = 2131492954;
// aapt resource value: 0x7f0c005b
public const int <API key> = 2131492955;
// aapt resource value: 0x7f0c005c
public const int <API key> = 2131492956;
// aapt resource value: 0x7f0c005d
public const int abc_tint_default = 2131492957;
// aapt resource value: 0x7f0c005e
public const int abc_tint_edittext = 2131492958;
// aapt resource value: 0x7f0c005f
public const int abc_tint_seek_thumb = 2131492959;
// aapt resource value: 0x7f0c0060
public const int abc_tint_spinner = 2131492960;
// aapt resource value: 0x7f0c0061
public const int <API key> = 2131492961;
// aapt resource value: 0x7f0c0062
public const int <API key> = 2131492962;
// aapt resource value: 0x7f0c004c
public const int accent = 2131492940;
// aapt resource value: 0x7f0c0009
public const int <API key> = 2131492873;
// aapt resource value: 0x7f0c000a
public const int <API key> = 2131492874;
// aapt resource value: 0x7f0c000b
public const int <API key> = 2131492875;
// aapt resource value: 0x7f0c000c
public const int <API key> = 2131492876;
// aapt resource value: 0x7f0c000d
public const int <API key> = 2131492877;
// aapt resource value: 0x7f0c000e
public const int <API key> = 2131492878;
// aapt resource value: 0x7f0c000f
public const int <API key> = 2131492879;
// aapt resource value: 0x7f0c0010
public const int <API key> = 2131492880;
// aapt resource value: 0x7f0c0011
public const int <API key> = 2131492881;
// aapt resource value: 0x7f0c0012
public const int <API key> = 2131492882;
// aapt resource value: 0x7f0c0013
public const int <API key> = 2131492883;
// aapt resource value: 0x7f0c0014
public const int <API key> = 2131492884;
// aapt resource value: 0x7f0c0015
public const int <API key> = 2131492885;
// aapt resource value: 0x7f0c0016
public const int <API key> = 2131492886;
// aapt resource value: 0x7f0c0000
public const int <API key> = 2131492864;
// aapt resource value: 0x7f0c0001
public const int <API key> = 2131492865;
// aapt resource value: 0x7f0c0002
public const int <API key> = 2131492866;
// aapt resource value: 0x7f0c0003
public const int <API key> = 2131492867;
// aapt resource value: 0x7f0c003f
public const int <API key> = 2131492927;
// aapt resource value: 0x7f0c0063
public const int design_error = 2131492963;
// aapt resource value: 0x7f0c0040
public const int <API key> = 2131492928;
// aapt resource value: 0x7f0c0041
public const int <API key> = 2131492929;
// aapt resource value: 0x7f0c0042
public const int <API key> = 2131492930;
// aapt resource value: 0x7f0c0043
public const int <API key> = 2131492931;
// aapt resource value: 0x7f0c0044
public const int <API key> = 2131492932;
// aapt resource value: 0x7f0c0045
public const int <API key> = 2131492933;
// aapt resource value: 0x7f0c0046
public const int <API key> = 2131492934;
// aapt resource value: 0x7f0c0047
public const int <API key> = 2131492935;
// aapt resource value: 0x7f0c0048
public const int <API key> = 2131492936;
// aapt resource value: 0x7f0c0049
public const int <API key> = 2131492937;
// aapt resource value: 0x7f0c0064
public const int <API key> = 2131492964;
// aapt resource value: 0x7f0c0017
public const int <API key> = 2131492887;
// aapt resource value: 0x7f0c0018
public const int <API key> = 2131492888;
// aapt resource value: 0x7f0c0019
public const int <API key> = 2131492889;
// aapt resource value: 0x7f0c001a
public const int <API key> = 2131492890;
// aapt resource value: 0x7f0c001b
public const int <API key> = 2131492891;
// aapt resource value: 0x7f0c001c
public const int <API key> = 2131492892;
// aapt resource value: 0x7f0c001d
public const int <API key> = 2131492893;
// aapt resource value: 0x7f0c001e
public const int <API key> = 2131492894;
// aapt resource value: 0x7f0c001f
public const int <API key> = 2131492895;
// aapt resource value: 0x7f0c0020
public const int <API key> = 2131492896;
// aapt resource value: 0x7f0c0021
public const int <API key> = 2131492897;
// aapt resource value: 0x7f0c0022
public const int <API key> = 2131492898;
// aapt resource value: 0x7f0c0023
public const int <API key> = 2131492899;
// aapt resource value: 0x7f0c0024
public const int material_grey_100 = 2131492900;
// aapt resource value: 0x7f0c0025
public const int material_grey_300 = 2131492901;
// aapt resource value: 0x7f0c0026
public const int material_grey_50 = 2131492902;
// aapt resource value: 0x7f0c0027
public const int material_grey_600 = 2131492903;
// aapt resource value: 0x7f0c0028
public const int material_grey_800 = 2131492904;
// aapt resource value: 0x7f0c0029
public const int material_grey_850 = 2131492905;
// aapt resource value: 0x7f0c002a
public const int material_grey_900 = 2131492906;
// aapt resource value: 0x7f0c0004
public const int <API key> = 2131492868;
// aapt resource value: 0x7f0c002b
public const int <API key> = 2131492907;
// aapt resource value: 0x7f0c002c
public const int <API key> = 2131492908;
// aapt resource value: 0x7f0c004a
public const int primary = 2131492938;
// aapt resource value: 0x7f0c004b
public const int primaryDark = 2131492939;
// aapt resource value: 0x7f0c002d
public const int <API key> = 2131492909;
// aapt resource value: 0x7f0c002e
public const int <API key> = 2131492910;
// aapt resource value: 0x7f0c002f
public const int <API key> = 2131492911;
// aapt resource value: 0x7f0c0030
public const int <API key> = 2131492912;
// aapt resource value: 0x7f0c0031
public const int <API key> = 2131492913;
// aapt resource value: 0x7f0c0032
public const int <API key> = 2131492914;
// aapt resource value: 0x7f0c0033
public const int <API key> = 2131492915;
// aapt resource value: 0x7f0c0034
public const int <API key> = 2131492916;
// aapt resource value: 0x7f0c0035
public const int <API key> = 2131492917;
// aapt resource value: 0x7f0c0036
public const int <API key> = 2131492918;
// aapt resource value: 0x7f0c0037
public const int <API key> = 2131492919;
// aapt resource value: 0x7f0c0038
public const int <API key> = 2131492920;
// aapt resource value: 0x7f0c0039
public const int <API key> = 2131492921;
// aapt resource value: 0x7f0c003a
public const int <API key> = 2131492922;
// aapt resource value: 0x7f0c003b
public const int <API key> = 2131492923;
// aapt resource value: 0x7f0c003c
public const int <API key> = 2131492924;
// aapt resource value: 0x7f0c0065
public const int <API key> = 2131492965;
// aapt resource value: 0x7f0c0066
public const int <API key> = 2131492966;
// aapt resource value: 0x7f0c003d
public const int <API key> = 2131492925;
// aapt resource value: 0x7f0c003e
public const int <API key> = 2131492926;
// aapt resource value: 0x7f0c004d
public const int window_background = 2131492941;
static Color()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Color()
{
}
}
public partial class Dimension
{
// aapt resource value: 0x7f070018
public const int <API key> = 2131165208;
// aapt resource value: 0x7f070019
public const int <API key> = 2131165209;
// aapt resource value: 0x7f07000d
public const int <API key> = 2131165197;
// aapt resource value: 0x7f07001a
public const int <API key> = 2131165210;
// aapt resource value: 0x7f07001b
public const int <API key> = 2131165211;
// aapt resource value: 0x7f070021
public const int <API key> = 2131165217;
// aapt resource value: 0x7f070022
public const int <API key> = 2131165218;
// aapt resource value: 0x7f070023
public const int <API key> = 2131165219;
// aapt resource value: 0x7f070024
public const int <API key> = 2131165220;
// aapt resource value: 0x7f07000e
public const int <API key> = 2131165198;
// aapt resource value: 0x7f070025
public const int <API key> = 2131165221;
// aapt resource value: 0x7f070026
public const int <API key> = 2131165222;
// aapt resource value: 0x7f070027
public const int <API key> = 2131165223;
// aapt resource value: 0x7f070028
public const int <API key> = 2131165224;
// aapt resource value: 0x7f070029
public const int <API key> = 2131165225;
// aapt resource value: 0x7f07002a
public const int <API key> = 2131165226;
// aapt resource value: 0x7f07002b
public const int <API key> = 2131165227;
// aapt resource value: 0x7f07000c
public const int <API key> = 2131165196;
// aapt resource value: 0x7f07002c
public const int <API key> = 2131165228;
// aapt resource value: 0x7f07002d
public const int <API key> = 2131165229;
// aapt resource value: 0x7f07002e
public const int <API key> = 2131165230;
// aapt resource value: 0x7f07002f
public const int <API key> = 2131165231;
// aapt resource value: 0x7f070030
public const int <API key> = 2131165232;
// aapt resource value: 0x7f070011
public const int <API key> = 2131165201;
// aapt resource value: 0x7f070031
public const int <API key> = 2131165233;
// aapt resource value: 0x7f070032
public const int <API key> = 2131165234;
// aapt resource value: 0x7f070033
public const int <API key> = 2131165235;
// aapt resource value: 0x7f070012
public const int <API key> = 2131165202;
// aapt resource value: 0x7f070013
public const int <API key> = 2131165203;
// aapt resource value: 0x7f070014
public const int <API key> = 2131165204;
// aapt resource value: 0x7f070015
public const int <API key> = 2131165205;
// aapt resource value: 0x7f070034
public const int <API key> = 2131165236;
// aapt resource value: 0x7f070035
public const int <API key> = 2131165237;
// aapt resource value: 0x7f070016
public const int <API key> = 2131165206;
// aapt resource value: 0x7f070017
public const int <API key> = 2131165207;
// aapt resource value: 0x7f070036
public const int <API key> = 2131165238;
// aapt resource value: 0x7f070037
public const int <API key> = 2131165239;
// aapt resource value: 0x7f070038
public const int <API key> = 2131165240;
// aapt resource value: 0x7f070039
public const int <API key> = 2131165241;
// aapt resource value: 0x7f07003a
public const int <API key> = 2131165242;
// aapt resource value: 0x7f07003b
public const int <API key> = 2131165243;
// aapt resource value: 0x7f07003c
public const int <API key> = 2131165244;
// aapt resource value: 0x7f07003d
public const int <API key> = 2131165245;
// aapt resource value: 0x7f07003e
public const int <API key> = 2131165246;
// aapt resource value: 0x7f07003f
public const int <API key> = 2131165247;
// aapt resource value: 0x7f070040
public const int <API key> = 2131165248;
// aapt resource value: 0x7f070041
public const int <API key> = 2131165249;
// aapt resource value: 0x7f070042
public const int <API key> = 2131165250;
// aapt resource value: 0x7f070043
public const int <API key> = 2131165251;
// aapt resource value: 0x7f070044
public const int <API key> = 2131165252;
// aapt resource value: 0x7f070045
public const int <API key> = 2131165253;
// aapt resource value: 0x7f070046
public const int <API key> = 2131165254;
// aapt resource value: 0x7f070047
public const int <API key> = 2131165255;
// aapt resource value: 0x7f070048
public const int <API key> = 2131165256;
// aapt resource value: 0x7f070049
public const int <API key> = 2131165257;
// aapt resource value: 0x7f07001d
public const int abc_switch_padding = 2131165213;
// aapt resource value: 0x7f07004a
public const int <API key> = 2131165258;
// aapt resource value: 0x7f07004b
public const int <API key> = 2131165259;
// aapt resource value: 0x7f07004c
public const int <API key> = 2131165260;
// aapt resource value: 0x7f07004d
public const int <API key> = 2131165261;
// aapt resource value: 0x7f07004e
public const int <API key> = 2131165262;
// aapt resource value: 0x7f07004f
public const int <API key> = 2131165263;
// aapt resource value: 0x7f070050
public const int <API key> = 2131165264;
// aapt resource value: 0x7f070051
public const int <API key> = 2131165265;
// aapt resource value: 0x7f070052
public const int <API key> = 2131165266;
// aapt resource value: 0x7f070053
public const int <API key> = 2131165267;
// aapt resource value: 0x7f070054
public const int <API key> = 2131165268;
// aapt resource value: 0x7f070055
public const int <API key> = 2131165269;
// aapt resource value: 0x7f070056
public const int <API key> = 2131165270;
// aapt resource value: 0x7f070057
public const int <API key> = 2131165271;
// aapt resource value: 0x7f070058
public const int <API key> = 2131165272;
// aapt resource value: 0x7f07000f
public const int <API key> = 2131165199;
// aapt resource value: 0x7f070059
public const int <API key> = 2131165273;
// aapt resource value: 0x7f070010
public const int <API key> = 2131165200;
// aapt resource value: 0x7f070009
public const int <API key> = 2131165193;
// aapt resource value: 0x7f07000a
public const int <API key> = 2131165194;
// aapt resource value: 0x7f07000b
public const int <API key> = 2131165195;
// aapt resource value: 0x7f070076
public const int <API key> = 2131165302;
// aapt resource value: 0x7f070077
public const int <API key> = 2131165303;
// aapt resource value: 0x7f070078
public const int <API key> = 2131165304;
// aapt resource value: 0x7f070079
public const int <API key> = 2131165305;
// aapt resource value: 0x7f07007a
public const int <API key> = 2131165306;
// aapt resource value: 0x7f07007b
public const int <API key> = 2131165307;
// aapt resource value: 0x7f07007c
public const int <API key> = 2131165308;
// aapt resource value: 0x7f07007d
public const int <API key> = 2131165309;
// aapt resource value: 0x7f07007e
public const int <API key> = 2131165310;
// aapt resource value: 0x7f07007f
public const int <API key> = 2131165311;
// aapt resource value: 0x7f070080
public const int <API key> = 2131165312;
// aapt resource value: 0x7f070081
public const int <API key> = 2131165313;
// aapt resource value: 0x7f070082
public const int <API key> = 2131165314;
// aapt resource value: 0x7f070083
public const int <API key> = 2131165315;
// aapt resource value: 0x7f070084
public const int <API key> = 2131165316;
// aapt resource value: 0x7f070085
public const int <API key> = 2131165317;
// aapt resource value: 0x7f070086
public const int <API key> = 2131165318;
// aapt resource value: 0x7f070087
public const int <API key> = 2131165319;
// aapt resource value: 0x7f070088
public const int <API key> = 2131165320;
// aapt resource value: 0x7f070089
public const int <API key> = 2131165321;
// aapt resource value: 0x7f07008a
public const int <API key> = 2131165322;
// aapt resource value: 0x7f07006e
public const int <API key> = 2131165294;
// aapt resource value: 0x7f07008b
public const int <API key> = 2131165323;
// aapt resource value: 0x7f07008c
public const int <API key> = 2131165324;
// aapt resource value: 0x7f07006f
public const int <API key> = 2131165295;
// aapt resource value: 0x7f070070
public const int <API key> = 2131165296;
// aapt resource value: 0x7f07008d
public const int <API key> = 2131165325;
// aapt resource value: 0x7f070071
public const int <API key> = 2131165297;
// aapt resource value: 0x7f070072
public const int <API key> = 2131165298;
// aapt resource value: 0x7f070073
public const int <API key> = 2131165299;
// aapt resource value: 0x7f07008e
public const int <API key> = 2131165326;
// aapt resource value: 0x7f07008f
public const int <API key> = 2131165327;
// aapt resource value: 0x7f070074
public const int <API key> = 2131165300;
// aapt resource value: 0x7f070090
public const int <API key> = 2131165328;
// aapt resource value: 0x7f070091
public const int <API key> = 2131165329;
// aapt resource value: 0x7f070075
public const int <API key> = 2131165301;
// aapt resource value: 0x7f070092
public const int <API key> = 2131165330;
// aapt resource value: 0x7f070093
public const int <API key> = 2131165331;
// aapt resource value: 0x7f07005a
public const int <API key> = 2131165274;
// aapt resource value: 0x7f07005b
public const int <API key> = 2131165275;
// aapt resource value: 0x7f07005c
public const int <API key> = 2131165276;
// aapt resource value: 0x7f07005d
public const int <API key> = 2131165277;
// aapt resource value: 0x7f07005e
public const int <API key> = 2131165278;
// aapt resource value: 0x7f07005f
public const int <API key> = 2131165279;
// aapt resource value: 0x7f070060
public const int <API key> = 2131165280;
// aapt resource value: 0x7f070061
public const int <API key> = 2131165281;
// aapt resource value: 0x7f070062
public const int <API key> = 2131165282;
// aapt resource value: 0x7f070000
public const int <API key> = 2131165184;
// aapt resource value: 0x7f070001
public const int <API key> = 2131165185;
// aapt resource value: 0x7f070002
public const int <API key> = 2131165186;
// aapt resource value: 0x7f070003
public const int <API key> = 2131165187;
// aapt resource value: 0x7f070004
public const int <API key> = 2131165188;
// aapt resource value: 0x7f070005
public const int <API key> = 2131165189;
// aapt resource value: 0x7f070008
public const int <API key> = 2131165192;
// aapt resource value: 0x7f070006
public const int <API key> = 2131165190;
// aapt resource value: 0x7f070007
public const int <API key> = 2131165191;
// aapt resource value: 0x7f070063
public const int <API key> = 2131165283;
// aapt resource value: 0x7f070064
public const int <API key> = 2131165284;
// aapt resource value: 0x7f070065
public const int <API key> = 2131165285;
// aapt resource value: 0x7f07001e
public const int <API key> = 2131165214;
// aapt resource value: 0x7f070066
public const int <API key> = 2131165286;
// aapt resource value: 0x7f070067
public const int <API key> = 2131165287;
// aapt resource value: 0x7f07001f
public const int <API key> = 2131165215;
// aapt resource value: 0x7f070020
public const int <API key> = 2131165216;
// aapt resource value: 0x7f070068
public const int <API key> = 2131165288;
// aapt resource value: 0x7f07001c
public const int <API key> = 2131165212;
// aapt resource value: 0x7f070069
public const int <API key> = 2131165289;
// aapt resource value: 0x7f07006a
public const int <API key> = 2131165290;
// aapt resource value: 0x7f07006b
public const int <API key> = 2131165291;
// aapt resource value: 0x7f07006c
public const int <API key> = 2131165292;
// aapt resource value: 0x7f07006d
public const int <API key> = 2131165293;
static Dimension()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Dimension()
{
}
}
public partial class Drawable
{
// aapt resource value: 0x7f020000
public const int <API key> = 2130837504;
// aapt resource value: 0x7f020001
public const int <API key> = 2130837505;
// aapt resource value: 0x7f020002
public const int <API key> = 2130837506;
// aapt resource value: 0x7f020003
public const int <API key> = 2130837507;
// aapt resource value: 0x7f020004
public const int <API key> = 2130837508;
// aapt resource value: 0x7f020005
public const int <API key> = 2130837509;
// aapt resource value: 0x7f020006
public const int <API key> = 2130837510;
// aapt resource value: 0x7f020007
public const int <API key> = 2130837511;
// aapt resource value: 0x7f020008
public const int <API key> = 2130837512;
// aapt resource value: 0x7f020009
public const int <API key> = 2130837513;
// aapt resource value: 0x7f02000a
public const int <API key> = 2130837514;
// aapt resource value: 0x7f02000b
public const int <API key> = 2130837515;
// aapt resource value: 0x7f02000c
public const int <API key> = 2130837516;
// aapt resource value: 0x7f02000d
public const int <API key> = 2130837517;
// aapt resource value: 0x7f02000e
public const int <API key> = 2130837518;
// aapt resource value: 0x7f02000f
public const int <API key> = 2130837519;
// aapt resource value: 0x7f020010
public const int <API key> = 2130837520;
// aapt resource value: 0x7f020011
public const int <API key> = 2130837521;
// aapt resource value: 0x7f020012
public const int <API key> = 2130837522;
// aapt resource value: 0x7f020013
public const int <API key> = 2130837523;
// aapt resource value: 0x7f020014
public const int <API key> = 2130837524;
// aapt resource value: 0x7f020015
public const int <API key> = 2130837525;
// aapt resource value: 0x7f020016
public const int <API key> = 2130837526;
// aapt resource value: 0x7f020017
public const int <API key> = 2130837527;
// aapt resource value: 0x7f020018
public const int <API key> = 2130837528;
// aapt resource value: 0x7f020019
public const int <API key> = 2130837529;
// aapt resource value: 0x7f02001a
public const int <API key> = 2130837530;
// aapt resource value: 0x7f02001b
public const int <API key> = 2130837531;
// aapt resource value: 0x7f02001c
public const int <API key> = 2130837532;
// aapt resource value: 0x7f02001d
public const int <API key> = 2130837533;
// aapt resource value: 0x7f02001e
public const int <API key> = 2130837534;
// aapt resource value: 0x7f02001f
public const int <API key> = 2130837535;
// aapt resource value: 0x7f020020
public const int <API key> = 2130837536;
// aapt resource value: 0x7f020021
public const int <API key> = 2130837537;
// aapt resource value: 0x7f020022
public const int <API key> = 2130837538;
// aapt resource value: 0x7f020023
public const int <API key> = 2130837539;
// aapt resource value: 0x7f020024
public const int <API key> = 2130837540;
// aapt resource value: 0x7f020025
public const int <API key> = 2130837541;
// aapt resource value: 0x7f020026
public const int <API key> = 2130837542;
// aapt resource value: 0x7f020027
public const int <API key> = 2130837543;
// aapt resource value: 0x7f020028
public const int <API key> = 2130837544;
// aapt resource value: 0x7f020029
public const int <API key> = 2130837545;
// aapt resource value: 0x7f02002a
public const int <API key> = 2130837546;
// aapt resource value: 0x7f02002b
public const int <API key> = 2130837547;
// aapt resource value: 0x7f02002c
public const int <API key> = 2130837548;
// aapt resource value: 0x7f02002d
public const int <API key> = 2130837549;
// aapt resource value: 0x7f02002e
public const int <API key> = 2130837550;
// aapt resource value: 0x7f02002f
public const int <API key> = 2130837551;
// aapt resource value: 0x7f020030
public const int <API key> = 2130837552;
// aapt resource value: 0x7f020031
public const int <API key> = 2130837553;
// aapt resource value: 0x7f020032
public const int <API key> = 2130837554;
// aapt resource value: 0x7f020033
public const int <API key> = 2130837555;
// aapt resource value: 0x7f020034
public const int <API key> = 2130837556;
// aapt resource value: 0x7f020035
public const int <API key> = 2130837557;
// aapt resource value: 0x7f020036
public const int <API key> = 2130837558;
// aapt resource value: 0x7f020037
public const int <API key> = 2130837559;
// aapt resource value: 0x7f020038
public const int <API key> = 2130837560;
// aapt resource value: 0x7f020039
public const int <API key> = 2130837561;
// aapt resource value: 0x7f02003a
public const int <API key> = 2130837562;
// aapt resource value: 0x7f02003b
public const int <API key> = 2130837563;
// aapt resource value: 0x7f02003c
public const int <API key> = 2130837564;
// aapt resource value: 0x7f02003d
public const int <API key> = 2130837565;
// aapt resource value: 0x7f02003e
public const int <API key> = 2130837566;
// aapt resource value: 0x7f02003f
public const int <API key> = 2130837567;
// aapt resource value: 0x7f020040
public const int <API key> = 2130837568;
// aapt resource value: 0x7f020041
public const int <API key> = 2130837569;
// aapt resource value: 0x7f020042
public const int <API key> = 2130837570;
// aapt resource value: 0x7f020043
public const int <API key> = 2130837571;
// aapt resource value: 0x7f020044
public const int <API key> = 2130837572;
// aapt resource value: 0x7f020045
public const int <API key> = 2130837573;
// aapt resource value: 0x7f020046
public const int <API key> = 2130837574;
// aapt resource value: 0x7f020047
public const int <API key> = 2130837575;
// aapt resource value: 0x7f020048
public const int <API key> = 2130837576;
// aapt resource value: 0x7f020049
public const int <API key> = 2130837577;
// aapt resource value: 0x7f02004a
public const int <API key> = 2130837578;
// aapt resource value: 0x7f02004b
public const int <API key> = 2130837579;
// aapt resource value: 0x7f02004c
public const int <API key> = 2130837580;
// aapt resource value: 0x7f02004d
public const int <API key> = 2130837581;
// aapt resource value: 0x7f02004e
public const int <API key> = 2130837582;
// aapt resource value: 0x7f02004f
public const int <API key> = 2130837583;
// aapt resource value: 0x7f020050
public const int <API key> = 2130837584;
// aapt resource value: 0x7f020051
public const int <API key> = 2130837585;
// aapt resource value: 0x7f020052
public const int abc_vector_test = 2130837586;
// aapt resource value: 0x7f020053
public const int avd_hide_password = 2130837587;
// aapt resource value: 0x7f020116
public const int avd_hide_password_1 = 2130837782;
// aapt resource value: 0x7f020117
public const int avd_hide_password_2 = 2130837783;
// aapt resource value: 0x7f020118
public const int avd_hide_password_3 = 2130837784;
// aapt resource value: 0x7f020054
public const int avd_show_password = 2130837588;
// aapt resource value: 0x7f020119
public const int avd_show_password_1 = 2130837785;
// aapt resource value: 0x7f02011a
public const int avd_show_password_2 = 2130837786;
// aapt resource value: 0x7f02011b
public const int avd_show_password_3 = 2130837787;
// aapt resource value: 0x7f020055
public const int calendar = 2130837589;
// aapt resource value: 0x7f020056
public const int car = 2130837590;
// aapt resource value: 0x7f020057
public const int clock = 2130837591;
// aapt resource value: 0x7f020058
public const int comment = 2130837592;
// aapt resource value: 0x7f020059
public const int <API key> = 2130837593;
// aapt resource value: 0x7f02005a
public const int <API key> = 2130837594;
// aapt resource value: 0x7f02005b
public const int <API key> = 2130837595;
// aapt resource value: 0x7f02005c
public const int <API key> = 2130837596;
// aapt resource value: 0x7f02005d
public const int design_password_eye = 2130837597;
// aapt resource value: 0x7f02005e
public const int <API key> = 2130837598;
// aapt resource value: 0x7f02005f
public const int ic_audiotrack_dark = 2130837599;
// aapt resource value: 0x7f020060
public const int ic_audiotrack_light = 2130837600;
// aapt resource value: 0x7f020061
public const int <API key> = 2130837601;
// aapt resource value: 0x7f020062
public const int <API key> = 2130837602;
// aapt resource value: 0x7f020063
public const int <API key> = 2130837603;
// aapt resource value: 0x7f020064
public const int <API key> = 2130837604;
// aapt resource value: 0x7f020065
public const int <API key> = 2130837605;
// aapt resource value: 0x7f020066
public const int <API key> = 2130837606;
// aapt resource value: 0x7f020067
public const int <API key> = 2130837607;
// aapt resource value: 0x7f020068
public const int <API key> = 2130837608;
// aapt resource value: 0x7f020069
public const int <API key> = 2130837609;
// aapt resource value: 0x7f02006a
public const int <API key> = 2130837610;
// aapt resource value: 0x7f02006b
public const int <API key> = 2130837611;
// aapt resource value: 0x7f02006c
public const int <API key> = 2130837612;
// aapt resource value: 0x7f02006d
public const int <API key> = 2130837613;
// aapt resource value: 0x7f02006e
public const int <API key> = 2130837614;
// aapt resource value: 0x7f02006f
public const int <API key> = 2130837615;
// aapt resource value: 0x7f020070
public const int <API key> = 2130837616;
// aapt resource value: 0x7f020071
public const int <API key> = 2130837617;
// aapt resource value: 0x7f020072
public const int <API key> = 2130837618;
// aapt resource value: 0x7f020073
public const int ic_group_expand_00 = 2130837619;
// aapt resource value: 0x7f020074
public const int ic_group_expand_01 = 2130837620;
// aapt resource value: 0x7f020075
public const int ic_group_expand_02 = 2130837621;
// aapt resource value: 0x7f020076
public const int ic_group_expand_03 = 2130837622;
// aapt resource value: 0x7f020077
public const int ic_group_expand_04 = 2130837623;
// aapt resource value: 0x7f020078
public const int ic_group_expand_05 = 2130837624;
// aapt resource value: 0x7f020079
public const int ic_group_expand_06 = 2130837625;
// aapt resource value: 0x7f02007a
public const int ic_group_expand_07 = 2130837626;
// aapt resource value: 0x7f02007b
public const int ic_group_expand_08 = 2130837627;
// aapt resource value: 0x7f02007c
public const int ic_group_expand_09 = 2130837628;
// aapt resource value: 0x7f02007d
public const int ic_group_expand_10 = 2130837629;
// aapt resource value: 0x7f02007e
public const int ic_group_expand_11 = 2130837630;
// aapt resource value: 0x7f02007f
public const int ic_group_expand_12 = 2130837631;
// aapt resource value: 0x7f020080
public const int ic_group_expand_13 = 2130837632;
// aapt resource value: 0x7f020081
public const int ic_group_expand_14 = 2130837633;
// aapt resource value: 0x7f020082
public const int ic_group_expand_15 = 2130837634;
// aapt resource value: 0x7f020083
public const int ic_media_pause_dark = 2130837635;
// aapt resource value: 0x7f020084
public const int <API key> = 2130837636;
// aapt resource value: 0x7f020085
public const int ic_media_play_dark = 2130837637;
// aapt resource value: 0x7f020086
public const int ic_media_play_light = 2130837638;
// aapt resource value: 0x7f020087
public const int ic_media_stop_dark = 2130837639;
// aapt resource value: 0x7f020088
public const int ic_media_stop_light = 2130837640;
// aapt resource value: 0x7f020089
public const int <API key> = 2130837641;
// aapt resource value: 0x7f02008a
public const int <API key> = 2130837642;
// aapt resource value: 0x7f02008b
public const int <API key> = 2130837643;
// aapt resource value: 0x7f02008c
public const int <API key> = 2130837644;
// aapt resource value: 0x7f02008d
public const int <API key> = 2130837645;
// aapt resource value: 0x7f02008e
public const int <API key> = 2130837646;
// aapt resource value: 0x7f02008f
public const int <API key> = 2130837647;
// aapt resource value: 0x7f020090
public const int <API key> = 2130837648;
// aapt resource value: 0x7f020091
public const int <API key> = 2130837649;
// aapt resource value: 0x7f020092
public const int <API key> = 2130837650;
// aapt resource value: 0x7f020093
public const int <API key> = 2130837651;
// aapt resource value: 0x7f020094
public const int <API key> = 2130837652;
// aapt resource value: 0x7f020095
public const int <API key> = 2130837653;
// aapt resource value: 0x7f020096
public const int <API key> = 2130837654;
// aapt resource value: 0x7f020097
public const int <API key> = 2130837655;
// aapt resource value: 0x7f020098
public const int <API key> = 2130837656;
// aapt resource value: 0x7f020099
public const int <API key> = 2130837657;
// aapt resource value: 0x7f02009a
public const int <API key> = 2130837658;
// aapt resource value: 0x7f02009b
public const int <API key> = 2130837659;
// aapt resource value: 0x7f02009c
public const int <API key> = 2130837660;
// aapt resource value: 0x7f02009d
public const int <API key> = 2130837661;
// aapt resource value: 0x7f02009e
public const int <API key> = 2130837662;
// aapt resource value: 0x7f02009f
public const int <API key> = 2130837663;
// aapt resource value: 0x7f0200a0
public const int <API key> = 2130837664;
// aapt resource value: 0x7f0200a1
public const int <API key> = 2130837665;
// aapt resource value: 0x7f0200a2
public const int <API key> = 2130837666;
// aapt resource value: 0x7f0200a3
public const int <API key> = 2130837667;
// aapt resource value: 0x7f0200a4
public const int <API key> = 2130837668;
// aapt resource value: 0x7f0200a5
public const int <API key> = 2130837669;
// aapt resource value: 0x7f0200a6
public const int <API key> = 2130837670;
// aapt resource value: 0x7f0200a7
public const int <API key> = 2130837671;
// aapt resource value: 0x7f0200a8
public const int <API key> = 2130837672;
// aapt resource value: 0x7f0200a9
public const int <API key> = 2130837673;
// aapt resource value: 0x7f0200aa
public const int <API key> = 2130837674;
// aapt resource value: 0x7f0200ab
public const int <API key> = 2130837675;
// aapt resource value: 0x7f0200ac
public const int <API key> = 2130837676;
// aapt resource value: 0x7f0200ad
public const int <API key> = 2130837677;
// aapt resource value: 0x7f0200ae
public const int <API key> = 2130837678;
// aapt resource value: 0x7f0200af
public const int <API key> = 2130837679;
// aapt resource value: 0x7f0200b0
public const int <API key> = 2130837680;
// aapt resource value: 0x7f0200b1
public const int <API key> = 2130837681;
// aapt resource value: 0x7f0200b2
public const int <API key> = 2130837682;
// aapt resource value: 0x7f0200b3
public const int <API key> = 2130837683;
// aapt resource value: 0x7f0200b4
public const int <API key> = 2130837684;
// aapt resource value: 0x7f0200b5
public const int <API key> = 2130837685;
// aapt resource value: 0x7f0200b6
public const int <API key> = 2130837686;
// aapt resource value: 0x7f0200b7
public const int <API key> = 2130837687;
// aapt resource value: 0x7f0200b8
public const int <API key> = 2130837688;
// aapt resource value: 0x7f0200b9
public const int <API key> = 2130837689;
// aapt resource value: 0x7f0200ba
public const int <API key> = 2130837690;
// aapt resource value: 0x7f0200bb
public const int <API key> = 2130837691;
// aapt resource value: 0x7f0200bc
public const int <API key> = 2130837692;
// aapt resource value: 0x7f0200bd
public const int <API key> = 2130837693;
// aapt resource value: 0x7f0200be
public const int <API key> = 2130837694;
// aapt resource value: 0x7f0200bf
public const int <API key> = 2130837695;
// aapt resource value: 0x7f0200c0
public const int <API key> = 2130837696;
// aapt resource value: 0x7f0200c1
public const int <API key> = 2130837697;
// aapt resource value: 0x7f0200c2
public const int <API key> = 2130837698;
// aapt resource value: 0x7f0200c3
public const int <API key> = 2130837699;
// aapt resource value: 0x7f0200c4
public const int <API key> = 2130837700;
// aapt resource value: 0x7f0200c5
public const int <API key> = 2130837701;
// aapt resource value: 0x7f0200c6
public const int <API key> = 2130837702;
// aapt resource value: 0x7f0200c7
public const int <API key> = 2130837703;
// aapt resource value: 0x7f0200c8
public const int <API key> = 2130837704;
// aapt resource value: 0x7f0200c9
public const int <API key> = 2130837705;
// aapt resource value: 0x7f0200ca
public const int <API key> = 2130837706;
// aapt resource value: 0x7f0200cb
public const int <API key> = 2130837707;
// aapt resource value: 0x7f0200cc
public const int <API key> = 2130837708;
// aapt resource value: 0x7f0200cd
public const int <API key> = 2130837709;
// aapt resource value: 0x7f0200ce
public const int <API key> = 2130837710;
// aapt resource value: 0x7f0200cf
public const int <API key> = 2130837711;
// aapt resource value: 0x7f0200d0
public const int <API key> = 2130837712;
// aapt resource value: 0x7f0200d1
public const int <API key> = 2130837713;
// aapt resource value: 0x7f0200d2
public const int <API key> = 2130837714;
// aapt resource value: 0x7f0200d3
public const int <API key> = 2130837715;
// aapt resource value: 0x7f0200d4
public const int <API key> = 2130837716;
// aapt resource value: 0x7f0200d5
public const int <API key> = 2130837717;
// aapt resource value: 0x7f0200d6
public const int <API key> = 2130837718;
// aapt resource value: 0x7f0200d7
public const int <API key> = 2130837719;
// aapt resource value: 0x7f0200d8
public const int <API key> = 2130837720;
// aapt resource value: 0x7f0200d9
public const int <API key> = 2130837721;
// aapt resource value: 0x7f0200da
public const int <API key> = 2130837722;
// aapt resource value: 0x7f0200db
public const int <API key> = 2130837723;
// aapt resource value: 0x7f0200dc
public const int <API key> = 2130837724;
// aapt resource value: 0x7f0200dd
public const int <API key> = 2130837725;
// aapt resource value: 0x7f0200de
public const int <API key> = 2130837726;
// aapt resource value: 0x7f0200df
public const int <API key> = 2130837727;
// aapt resource value: 0x7f0200e0
public const int <API key> = 2130837728;
// aapt resource value: 0x7f0200e1
public const int <API key> = 2130837729;
// aapt resource value: 0x7f0200e2
public const int <API key> = 2130837730;
// aapt resource value: 0x7f0200e3
public const int <API key> = 2130837731;
// aapt resource value: 0x7f0200e4
public const int <API key> = 2130837732;
// aapt resource value: 0x7f0200e5
public const int <API key> = 2130837733;
// aapt resource value: 0x7f0200e6
public const int <API key> = 2130837734;
// aapt resource value: 0x7f0200e7
public const int <API key> = 2130837735;
// aapt resource value: 0x7f0200e8
public const int <API key> = 2130837736;
// aapt resource value: 0x7f0200e9
public const int ic_mr_button_grey = 2130837737;
// aapt resource value: 0x7f0200ea
public const int <API key> = 2130837738;
// aapt resource value: 0x7f0200eb
public const int <API key> = 2130837739;
// aapt resource value: 0x7f0200ec
public const int <API key> = 2130837740;
// aapt resource value: 0x7f0200ed
public const int <API key> = 2130837741;
// aapt resource value: 0x7f0200ee
public const int ic_vol_type_tv_dark = 2130837742;
// aapt resource value: 0x7f0200ef
public const int <API key> = 2130837743;
// aapt resource value: 0x7f0200f0
public const int icon = 2130837744;
// aapt resource value: 0x7f0200f1
public const int <API key> = 2130837745;
// aapt resource value: 0x7f0200f2
public const int <API key> = 2130837746;
// aapt resource value: 0x7f0200f3
public const int <API key> = 2130837747;
// aapt resource value: 0x7f0200f4
public const int <API key> = 2130837748;
// aapt resource value: 0x7f0200f5
public const int mr_button_dark = 2130837749;
// aapt resource value: 0x7f0200f6
public const int mr_button_light = 2130837750;
// aapt resource value: 0x7f0200f7
public const int <API key> = 2130837751;
// aapt resource value: 0x7f0200f8
public const int <API key> = 2130837752;
// aapt resource value: 0x7f0200f9
public const int <API key> = 2130837753;
// aapt resource value: 0x7f0200fa
public const int <API key> = 2130837754;
// aapt resource value: 0x7f0200fb
public const int mr_group_collapse = 2130837755;
// aapt resource value: 0x7f0200fc
public const int mr_group_expand = 2130837756;
// aapt resource value: 0x7f0200fd
public const int mr_media_pause_dark = 2130837757;
// aapt resource value: 0x7f0200fe
public const int <API key> = 2130837758;
// aapt resource value: 0x7f0200ff
public const int mr_media_play_dark = 2130837759;
// aapt resource value: 0x7f020100
public const int mr_media_play_light = 2130837760;
// aapt resource value: 0x7f020101
public const int mr_media_stop_dark = 2130837761;
// aapt resource value: 0x7f020102
public const int mr_media_stop_light = 2130837762;
// aapt resource value: 0x7f020103
public const int <API key> = 2130837763;
// aapt resource value: 0x7f020104
public const int <API key> = 2130837764;
// aapt resource value: 0x7f020105
public const int <API key> = 2130837765;
// aapt resource value: 0x7f020106
public const int <API key> = 2130837766;
// aapt resource value: 0x7f020107
public const int notification_bg = 2130837767;
// aapt resource value: 0x7f020108
public const int notification_bg_low = 2130837768;
// aapt resource value: 0x7f020109
public const int <API key> = 2130837769;
// aapt resource value: 0x7f02010a
public const int <API key> = 2130837770;
// aapt resource value: 0x7f02010b
public const int <API key> = 2130837771;
// aapt resource value: 0x7f02010c
public const int <API key> = 2130837772;
// aapt resource value: 0x7f02010d
public const int <API key> = 2130837773;
// aapt resource value: 0x7f020114
public const int <API key> = 2130837780;
// aapt resource value: 0x7f020115
public const int <API key> = 2130837781;
// aapt resource value: 0x7f02010e
public const int <API key> = 2130837774;
// aapt resource value: 0x7f02010f
public const int <API key> = 2130837775;
// aapt resource value: 0x7f020110
public const int people = 2130837776;
// aapt resource value: 0x7f020111
public const int piggybank = 2130837777;
// aapt resource value: 0x7f020112
public const int slideout = 2130837778;
// aapt resource value: 0x7f020113
public const int telephone = 2130837779;
static Drawable()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Drawable()
{
}
}
public partial class Id
{
// aapt resource value: 0x7f08009f
public const int action0 = 2131230879;
// aapt resource value: 0x7f080064
public const int action_bar = 2131230820;
// aapt resource value: 0x7f080001
public const int <API key> = 2131230721;
// aapt resource value: 0x7f080063
public const int <API key> = 2131230819;
// aapt resource value: 0x7f08005f
public const int action_bar_root = 2131230815;
// aapt resource value: 0x7f080002
public const int action_bar_spinner = 2131230722;
// aapt resource value: 0x7f080042
public const int action_bar_subtitle = 2131230786;
// aapt resource value: 0x7f080041
public const int action_bar_title = 2131230785;
// aapt resource value: 0x7f08009c
public const int action_container = 2131230876;
// aapt resource value: 0x7f080065
public const int action_context_bar = 2131230821;
// aapt resource value: 0x7f0800a3
public const int action_divider = 2131230883;
// aapt resource value: 0x7f08009d
public const int action_image = 2131230877;
// aapt resource value: 0x7f080003
public const int action_menu_divider = 2131230723;
// aapt resource value: 0x7f080004
public const int <API key> = 2131230724;
// aapt resource value: 0x7f080061
public const int action_mode_bar = 2131230817;
// aapt resource value: 0x7f080060
public const int <API key> = 2131230816;
// aapt resource value: 0x7f080043
public const int <API key> = 2131230787;
// aapt resource value: 0x7f08009e
public const int action_text = 2131230878;
// aapt resource value: 0x7f0800ac
public const int actions = 2131230892;
// aapt resource value: 0x7f080044
public const int <API key> = 2131230788;
// aapt resource value: 0x7f080019
public const int add = 2131230745;
// aapt resource value: 0x7f080058
public const int alertTitle = 2131230808;
// aapt resource value: 0x7f08003d
public const int all = 2131230781;
// aapt resource value: 0x7f080023
public const int always = 2131230755;
// aapt resource value: 0x7f08002f
public const int auto = 2131230767;
// aapt resource value: 0x7f080020
public const int beginning = 2131230752;
// aapt resource value: 0x7f080028
public const int bottom = 2131230760;
// aapt resource value: 0x7f08004b
public const int buttonPanel = 2131230795;
// aapt resource value: 0x7f0800a0
public const int cancel_action = 2131230880;
// aapt resource value: 0x7f080030
public const int center = 2131230768;
// aapt resource value: 0x7f080031
public const int center_horizontal = 2131230769;
// aapt resource value: 0x7f080032
public const int center_vertical = 2131230770;
// aapt resource value: 0x7f08005b
public const int checkbox = 2131230811;
// aapt resource value: 0x7f0800a8
public const int chronometer = 2131230888;
// aapt resource value: 0x7f080039
public const int clip_horizontal = 2131230777;
// aapt resource value: 0x7f08003a
public const int clip_vertical = 2131230778;
// aapt resource value: 0x7f080024
public const int collapseActionView = 2131230756;
// aapt resource value: 0x7f08004e
public const int contentPanel = 2131230798;
// aapt resource value: 0x7f080055
public const int custom = 2131230805;
// aapt resource value: 0x7f080054
public const int customPanel = 2131230804;
// aapt resource value: 0x7f080062
public const int <API key> = 2131230818;
// aapt resource value: 0x7f080047
public const int <API key> = 2131230791;
// aapt resource value: 0x7f080076
public const int design_bottom_sheet = 2131230838;
// aapt resource value: 0x7f08007d
public const int <API key> = 2131230845;
// aapt resource value: 0x7f08007c
public const int <API key> = 2131230844;
// aapt resource value: 0x7f08007b
public const int <API key> = 2131230843;
// aapt resource value: 0x7f08007a
public const int <API key> = 2131230842;
// aapt resource value: 0x7f080012
public const int disableHome = 2131230738;
// aapt resource value: 0x7f080066
public const int edit_query = 2131230822;
// aapt resource value: 0x7f080021
public const int end = 2131230753;
// aapt resource value: 0x7f0800b2
public const int end_padder = 2131230898;
// aapt resource value: 0x7f08002a
public const int enterAlways = 2131230762;
// aapt resource value: 0x7f08002b
public const int <API key> = 2131230763;
// aapt resource value: 0x7f08002c
public const int exitUntilCollapsed = 2131230764;
// aapt resource value: 0x7f080045
public const int <API key> = 2131230789;
// aapt resource value: 0x7f08005a
public const int expanded_menu = 2131230810;
// aapt resource value: 0x7f08003b
public const int fill = 2131230779;
// aapt resource value: 0x7f08003c
public const int fill_horizontal = 2131230780;
// aapt resource value: 0x7f080033
public const int fill_vertical = 2131230771;
// aapt resource value: 0x7f08003f
public const int @fixed = 2131230783;
// aapt resource value: 0x7f080005
public const int home = 2131230725;
// aapt resource value: 0x7f080013
public const int homeAsUp = 2131230739;
// aapt resource value: 0x7f080049
public const int icon = 2131230793;
// aapt resource value: 0x7f0800ad
public const int icon_group = 2131230893;
// aapt resource value: 0x7f080025
public const int ifRoom = 2131230757;
// aapt resource value: 0x7f080046
public const int image = 2131230790;
// aapt resource value: 0x7f0800a9
public const int info = 2131230889;
// aapt resource value: 0x7f080000
public const int <API key> = 2131230720;
// aapt resource value: 0x7f080074
public const int largeLabel = 2131230836;
// aapt resource value: 0x7f080034
public const int left = 2131230772;
// aapt resource value: 0x7f0800ae
public const int line1 = 2131230894;
// aapt resource value: 0x7f0800b0
public const int line3 = 2131230896;
// aapt resource value: 0x7f08000f
public const int listMode = 2131230735;
// aapt resource value: 0x7f080048
public const int list_item = 2131230792;
// aapt resource value: 0x7f080081
public const int loginButton = 2131230849;
// aapt resource value: 0x7f0800b6
public const int masked = 2131230902;
// aapt resource value: 0x7f0800a2
public const int media_actions = 2131230882;
// aapt resource value: 0x7f080022
public const int middle = 2131230754;
// aapt resource value: 0x7f08003e
public const int mini = 2131230782;
// aapt resource value: 0x7f08008e
public const int mr_art = 2131230862;
// aapt resource value: 0x7f080083
public const int mr_chooser_list = 2131230851;
// aapt resource value: 0x7f080086
public const int <API key> = 2131230854;
// aapt resource value: 0x7f080084
public const int <API key> = 2131230852;
// aapt resource value: 0x7f080085
public const int <API key> = 2131230853;
// aapt resource value: 0x7f080082
public const int mr_chooser_title = 2131230850;
// aapt resource value: 0x7f08008b
public const int mr_close = 2131230859;
// aapt resource value: 0x7f080091
public const int mr_control_divider = 2131230865;
// aapt resource value: 0x7f080097
public const int <API key> = 2131230871;
// aapt resource value: 0x7f08009a
public const int mr_control_subtitle = 2131230874;
// aapt resource value: 0x7f080099
public const int mr_control_title = 2131230873;
// aapt resource value: 0x7f080098
public const int <API key> = 2131230872;
// aapt resource value: 0x7f08008c
public const int mr_custom_control = 2131230860;
// aapt resource value: 0x7f08008d
public const int mr_default_control = 2131230861;
// aapt resource value: 0x7f080088
public const int mr_dialog_area = 2131230856;
// aapt resource value: 0x7f080087
public const int mr_expandable_area = 2131230855;
// aapt resource value: 0x7f08009b
public const int <API key> = 2131230875;
// aapt resource value: 0x7f08008f
public const int <API key> = 2131230863;
// aapt resource value: 0x7f08008a
public const int mr_name = 2131230858;
// aapt resource value: 0x7f080090
public const int mr_playback_control = 2131230864;
// aapt resource value: 0x7f080089
public const int mr_title_bar = 2131230857;
// aapt resource value: 0x7f080092
public const int mr_volume_control = 2131230866;
// aapt resource value: 0x7f080093
public const int <API key> = 2131230867;
// aapt resource value: 0x7f080095
public const int mr_volume_item_icon = 2131230869;
// aapt resource value: 0x7f080096
public const int mr_volume_slider = 2131230870;
// aapt resource value: 0x7f08001a
public const int multiply = 2131230746;
// aapt resource value: 0x7f080079
public const int <API key> = 2131230841;
// aapt resource value: 0x7f080026
public const int never = 2131230758;
// aapt resource value: 0x7f080014
public const int none = 2131230740;
// aapt resource value: 0x7f080010
public const int normal = 2131230736;
// aapt resource value: 0x7f0800ab
public const int <API key> = 2131230891;
// aapt resource value: 0x7f0800a5
public const int <API key> = 2131230885;
// aapt resource value: 0x7f0800a4
public const int <API key> = 2131230884;
// aapt resource value: 0x7f080037
public const int parallax = 2131230775;
// aapt resource value: 0x7f08004d
public const int parentPanel = 2131230797;
// aapt resource value: 0x7f080080
public const int password = 2131230848;
// aapt resource value: 0x7f080038
public const int pin = 2131230776;
// aapt resource value: 0x7f080006
public const int progress_circular = 2131230726;
// aapt resource value: 0x7f080007
public const int progress_horizontal = 2131230727;
// aapt resource value: 0x7f08005d
public const int radio = 2131230813;
// aapt resource value: 0x7f080035
public const int right = 2131230773;
// aapt resource value: 0x7f0800aa
public const int right_icon = 2131230890;
// aapt resource value: 0x7f0800a6
public const int right_side = 2131230886;
// aapt resource value: 0x7f08001b
public const int screen = 2131230747;
// aapt resource value: 0x7f08002d
public const int scroll = 2131230765;
// aapt resource value: 0x7f080053
public const int scrollIndicatorDown = 2131230803;
// aapt resource value: 0x7f08004f
public const int scrollIndicatorUp = 2131230799;
// aapt resource value: 0x7f080050
public const int scrollView = 2131230800;
// aapt resource value: 0x7f080040
public const int scrollable = 2131230784;
// aapt resource value: 0x7f080068
public const int search_badge = 2131230824;
// aapt resource value: 0x7f080067
public const int search_bar = 2131230823;
// aapt resource value: 0x7f080069
public const int search_button = 2131230825;
// aapt resource value: 0x7f08006e
public const int search_close_btn = 2131230830;
// aapt resource value: 0x7f08006a
public const int search_edit_frame = 2131230826;
// aapt resource value: 0x7f080070
public const int search_go_btn = 2131230832;
// aapt resource value: 0x7f08006b
public const int search_mag_icon = 2131230827;
// aapt resource value: 0x7f08006c
public const int search_plate = 2131230828;
// aapt resource value: 0x7f08006d
public const int search_src_text = 2131230829;
// aapt resource value: 0x7f080071
public const int search_voice_btn = 2131230833;
// aapt resource value: 0x7f080072
public const int <API key> = 2131230834;
// aapt resource value: 0x7f08005c
public const int shortcut = 2131230812;
// aapt resource value: 0x7f080015
public const int showCustom = 2131230741;
// aapt resource value: 0x7f080016
public const int showHome = 2131230742;
// aapt resource value: 0x7f080017
public const int showTitle = 2131230743;
// aapt resource value: 0x7f0800b3
public const int sliding_tabs = 2131230899;
// aapt resource value: 0x7f080073
public const int smallLabel = 2131230835;
// aapt resource value: 0x7f080078
public const int snackbar_action = 2131230840;
// aapt resource value: 0x7f080077
public const int snackbar_text = 2131230839;
// aapt resource value: 0x7f08002e
public const int snap = 2131230766;
// aapt resource value: 0x7f08004c
public const int spacer = 2131230796;
// aapt resource value: 0x7f080008
public const int split_action_bar = 2131230728;
// aapt resource value: 0x7f08001c
public const int src_atop = 2131230748;
// aapt resource value: 0x7f08001d
public const int src_in = 2131230749;
// aapt resource value: 0x7f08001e
public const int src_over = 2131230750;
// aapt resource value: 0x7f080036
public const int start = 2131230774;
// aapt resource value: 0x7f0800a1
public const int <API key> = 2131230881;
// aapt resource value: 0x7f08005e
public const int submenuarrow = 2131230814;
// aapt resource value: 0x7f08006f
public const int submit_area = 2131230831;
// aapt resource value: 0x7f080011
public const int tabMode = 2131230737;
// aapt resource value: 0x7f0800b1
public const int text = 2131230897;
// aapt resource value: 0x7f0800af
public const int text2 = 2131230895;
// aapt resource value: 0x7f080052
public const int textSpacerNoButtons = 2131230802;
// aapt resource value: 0x7f080051
public const int textSpacerNoTitle = 2131230801;
// aapt resource value: 0x7f08007e
public const int <API key> = 2131230846;
// aapt resource value: 0x7f08000c
public const int textinput_counter = 2131230732;
// aapt resource value: 0x7f08000d
public const int textinput_error = 2131230733;
// aapt resource value: 0x7f0800a7
public const int time = 2131230887;
// aapt resource value: 0x7f08004a
public const int title = 2131230794;
// aapt resource value: 0x7f080059
public const int <API key> = 2131230809;
// aapt resource value: 0x7f080057
public const int title_template = 2131230807;
// aapt resource value: 0x7f0800b4
public const int toolbar = 2131230900;
// aapt resource value: 0x7f080029
public const int top = 2131230761;
// aapt resource value: 0x7f080056
public const int topPanel = 2131230806;
// aapt resource value: 0x7f080075
public const int touch_outside = 2131230837;
// aapt resource value: 0x7f08000a
public const int <API key> = 2131230730;
// aapt resource value: 0x7f08000b
public const int <API key> = 2131230731;
// aapt resource value: 0x7f080009
public const int up = 2131230729;
// aapt resource value: 0x7f080018
public const int useLogo = 2131230744;
// aapt resource value: 0x7f08007f
public const int username = 2131230847;
// aapt resource value: 0x7f08000e
public const int view_offset_helper = 2131230734;
// aapt resource value: 0x7f0800b5
public const int visible = 2131230901;
// aapt resource value: 0x7f080094
public const int <API key> = 2131230868;
// aapt resource value: 0x7f080027
public const int withText = 2131230759;
// aapt resource value: 0x7f08001f
public const int wrap_content = 2131230751;
static Id()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Id()
{
}
}
public partial class Integer
{
// aapt resource value: 0x7f0a0003
public const int <API key> = 2131361795;
// aapt resource value: 0x7f0a0004
public const int <API key> = 2131361796;
// aapt resource value: 0x7f0a0008
public const int <API key> = 2131361800;
// aapt resource value: 0x7f0a0009
public const int <API key> = 2131361801;
// aapt resource value: 0x7f0a0005
public const int <API key> = 2131361797;
// aapt resource value: 0x7f0a0007
public const int <API key> = 2131361799;
// aapt resource value: 0x7f0a000a
public const int <API key> = 2131361802;
// aapt resource value: 0x7f0a0000
public const int <API key> = 2131361792;
// aapt resource value: 0x7f0a0001
public const int <API key> = 2131361793;
// aapt resource value: 0x7f0a0002
public const int <API key> = 2131361794;
// aapt resource value: 0x7f0a000b
public const int <API key> = 2131361803;
// aapt resource value: 0x7f0a0006
public const int <API key> = 2131361798;
static Integer()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Integer()
{
}
}
public partial class Interpolator
{
// aapt resource value: 0x7f060000
public const int mr_fast_out_slow_in = 2131099648;
// aapt resource value: 0x7f060001
public const int <API key> = 2131099649;
static Interpolator()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Interpolator()
{
}
}
public partial class Layout
{
// aapt resource value: 0x7f030000
public const int <API key> = 2130903040;
// aapt resource value: 0x7f030001
public const int <API key> = 2130903041;
// aapt resource value: 0x7f030002
public const int <API key> = 2130903042;
// aapt resource value: 0x7f030003
public const int <API key> = 2130903043;
// aapt resource value: 0x7f030004
public const int <API key> = 2130903044;
// aapt resource value: 0x7f030005
public const int abc_action_mode_bar = 2130903045;
// aapt resource value: 0x7f030006
public const int <API key> = 2130903046;
// aapt resource value: 0x7f030007
public const int <API key> = 2130903047;
// aapt resource value: 0x7f030008
public const int <API key> = 2130903048;
// aapt resource value: 0x7f030009
public const int <API key> = 2130903049;
// aapt resource value: 0x7f03000a
public const int <API key> = 2130903050;
// aapt resource value: 0x7f03000b
public const int <API key> = 2130903051;
// aapt resource value: 0x7f03000c
public const int <API key> = 2130903052;
// aapt resource value: 0x7f03000d
public const int <API key> = 2130903053;
// aapt resource value: 0x7f03000e
public const int <API key> = 2130903054;
// aapt resource value: 0x7f03000f
public const int <API key> = 2130903055;
// aapt resource value: 0x7f030010
public const int <API key> = 2130903056;
// aapt resource value: 0x7f030011
public const int <API key> = 2130903057;
// aapt resource value: 0x7f030012
public const int <API key> = 2130903058;
// aapt resource value: 0x7f030013
public const int <API key> = 2130903059;
// aapt resource value: 0x7f030014
public const int <API key> = 2130903060;
// aapt resource value: 0x7f030015
public const int abc_screen_simple = 2130903061;
// aapt resource value: 0x7f030016
public const int <API key> = 2130903062;
// aapt resource value: 0x7f030017
public const int abc_screen_toolbar = 2130903063;
// aapt resource value: 0x7f030018
public const int <API key> = 2130903064;
// aapt resource value: 0x7f030019
public const int abc_search_view = 2130903065;
// aapt resource value: 0x7f03001a
public const int <API key> = 2130903066;
// aapt resource value: 0x7f03001b
public const int <API key> = 2130903067;
// aapt resource value: 0x7f03001c
public const int <API key> = 2130903068;
// aapt resource value: 0x7f03001d
public const int <API key> = 2130903069;
// aapt resource value: 0x7f03001e
public const int <API key> = 2130903070;
// aapt resource value: 0x7f03001f
public const int <API key> = 2130903071;
// aapt resource value: 0x7f030020
public const int <API key> = 2130903072;
// aapt resource value: 0x7f030021
public const int <API key> = 2130903073;
// aapt resource value: 0x7f030022
public const int <API key> = 2130903074;
// aapt resource value: 0x7f030023
public const int <API key> = 2130903075;
// aapt resource value: 0x7f030024
public const int <API key> = 2130903076;
// aapt resource value: 0x7f030025
public const int <API key> = 2130903077;
// aapt resource value: 0x7f030026
public const int <API key> = 2130903078;
// aapt resource value: 0x7f030027
public const int <API key> = 2130903079;
// aapt resource value: 0x7f030028
public const int <API key> = 2130903080;
// aapt resource value: 0x7f030029
public const int login = 2130903081;
// aapt resource value: 0x7f03002a
public const int mr_chooser_dialog = 2130903082;
// aapt resource value: 0x7f03002b
public const int <API key> = 2130903083;
// aapt resource value: 0x7f03002c
public const int <API key> = 2130903084;
// aapt resource value: 0x7f03002d
public const int <API key> = 2130903085;
// aapt resource value: 0x7f03002e
public const int mr_playback_control = 2130903086;
// aapt resource value: 0x7f03002f
public const int mr_volume_control = 2130903087;
// aapt resource value: 0x7f030030
public const int notification_action = 2130903088;
// aapt resource value: 0x7f030031
public const int <API key> = 2130903089;
// aapt resource value: 0x7f030032
public const int <API key> = 2130903090;
// aapt resource value: 0x7f030033
public const int <API key> = 2130903091;
// aapt resource value: 0x7f030034
public const int <API key> = 2130903092;
// aapt resource value: 0x7f030035
public const int <API key> = 2130903093;
// aapt resource value: 0x7f030036
public const int <API key> = 2130903094;
// aapt resource value: 0x7f030037
public const int <API key> = 2130903095;
// aapt resource value: 0x7f030038
public const int <API key> = 2130903096;
// aapt resource value: 0x7f030039
public const int <API key> = 2130903097;
// aapt resource value: 0x7f03003a
public const int <API key> = 2130903098;
// aapt resource value: 0x7f03003b
public const int <API key> = 2130903099;
// aapt resource value: 0x7f03003c
public const int <API key> = 2130903100;
// aapt resource value: 0x7f03003d
public const int <API key> = 2130903101;
// aapt resource value: 0x7f03003e
public const int <API key> = 2130903102;
// aapt resource value: 0x7f03003f
public const int <API key> = 2130903103;
// aapt resource value: 0x7f030040
public const int <API key> = 2130903104;
// aapt resource value: 0x7f030041
public const int <API key> = 2130903105;
// aapt resource value: 0x7f030042
public const int <API key> = 2130903106;
// aapt resource value: 0x7f030043
public const int tabs = 2130903107;
// aapt resource value: 0x7f030044
public const int toolbar = 2130903108;
static Layout()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Layout()
{
}
}
public partial class String
{
// aapt resource value: 0x7f09003f
public const int ApplicationName = 2131296319;
// aapt resource value: 0x7f09003e
public const int Hello = 2131296318;
// aapt resource value: 0x7f090015
public const int <API key> = 2131296277;
// aapt resource value: 0x7f090016
public const int <API key> = 2131296278;
// aapt resource value: 0x7f090017
public const int <API key> = 2131296279;
// aapt resource value: 0x7f090018
public const int <API key> = 2131296280;
// aapt resource value: 0x7f090019
public const int <API key> = 2131296281;
// aapt resource value: 0x7f09001a
public const int <API key> = 2131296282;
// aapt resource value: 0x7f09001b
public const int <API key> = 2131296283;
// aapt resource value: 0x7f09001c
public const int <API key> = 2131296284;
// aapt resource value: 0x7f09001d
public const int abc_capital_off = 2131296285;
// aapt resource value: 0x7f09001e
public const int abc_capital_on = 2131296286;
// aapt resource value: 0x7f09002a
public const int <API key> = 2131296298;
// aapt resource value: 0x7f09002b
public const int <API key> = 2131296299;
// aapt resource value: 0x7f09002c
public const int <API key> = 2131296300;
// aapt resource value: 0x7f09002d
public const int <API key> = 2131296301;
// aapt resource value: 0x7f09002e
public const int <API key> = 2131296302;
// aapt resource value: 0x7f09002f
public const int <API key> = 2131296303;
// aapt resource value: 0x7f090030
public const int <API key> = 2131296304;
// aapt resource value: 0x7f090031
public const int <API key> = 2131296305;
// aapt resource value: 0x7f090032
public const int <API key> = 2131296306;
// aapt resource value: 0x7f090033
public const int <API key> = 2131296307;
// aapt resource value: 0x7f090034
public const int <API key> = 2131296308;
// aapt resource value: 0x7f090035
public const int <API key> = 2131296309;
// aapt resource value: 0x7f09001f
public const int abc_search_hint = 2131296287;
// aapt resource value: 0x7f090020
public const int <API key> = 2131296288;
// aapt resource value: 0x7f090021
public const int <API key> = 2131296289;
// aapt resource value: 0x7f090022
public const int <API key> = 2131296290;
// aapt resource value: 0x7f090023
public const int <API key> = 2131296291;
// aapt resource value: 0x7f090024
public const int <API key> = 2131296292;
// aapt resource value: 0x7f090025
public const int <API key> = 2131296293;
// aapt resource value: 0x7f090026
public const int <API key> = 2131296294;
// aapt resource value: 0x7f090027
public const int <API key> = 2131296295;
// aapt resource value: 0x7f090036
public const int <API key> = 2131296310;
// aapt resource value: 0x7f090037
public const int <API key> = 2131296311;
// aapt resource value: 0x7f090038
public const int <API key> = 2131296312;
// aapt resource value: 0x7f090000
public const int <API key> = 2131296256;
// aapt resource value: 0x7f090001
public const int <API key> = 2131296257;
// aapt resource value: 0x7f090002
public const int <API key> = 2131296258;
// aapt resource value: 0x7f090003
public const int <API key> = 2131296259;
// aapt resource value: 0x7f090004
public const int <API key> = 2131296260;
// aapt resource value: 0x7f090005
public const int mr_chooser_title = 2131296261;
// aapt resource value: 0x7f090006
public const int <API key> = 2131296262;
// aapt resource value: 0x7f090007
public const int <API key> = 2131296263;
// aapt resource value: 0x7f090008
public const int <API key> = 2131296264;
// aapt resource value: 0x7f090009
public const int <API key> = 2131296265;
// aapt resource value: 0x7f09000a
public const int <API key> = 2131296266;
// aapt resource value: 0x7f09000b
public const int <API key> = 2131296267;
// aapt resource value: 0x7f09000c
public const int <API key> = 2131296268;
// aapt resource value: 0x7f09000d
public const int <API key> = 2131296269;
// aapt resource value: 0x7f09000e
public const int mr_controller_pause = 2131296270;
// aapt resource value: 0x7f09000f
public const int mr_controller_play = 2131296271;
// aapt resource value: 0x7f090014
public const int mr_controller_stop = 2131296276;
// aapt resource value: 0x7f090010
public const int <API key> = 2131296272;
// aapt resource value: 0x7f090011
public const int <API key> = 2131296273;
// aapt resource value: 0x7f090012
public const int <API key> = 2131296274;
// aapt resource value: 0x7f090013
public const int <API key> = 2131296275;
// aapt resource value: 0x7f090039
public const int <API key> = 2131296313;
// aapt resource value: 0x7f09003a
public const int path_password_eye = 2131296314;
// aapt resource value: 0x7f09003b
public const int path_<API key> = 2131296315;
// aapt resource value: 0x7f09003c
public const int path_<API key> = 2131296316;
// aapt resource value: 0x7f09003d
public const int <API key> = 2131296317;
// aapt resource value: 0x7f090028
public const int search_menu_title = 2131296296;
// aapt resource value: 0x7f090029
public const int <API key> = 2131296297;
static String()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private String()
{
}
}
public partial class Style
{
// aapt resource value: 0x7f0b00ae
public const int <API key> = 2131427502;
// aapt resource value: 0x7f0b00af
public const int <API key> = 2131427503;
// aapt resource value: 0x7f0b00b0
public const int <API key> = 2131427504;
// aapt resource value: 0x7f0b00b1
public const int <API key> = 2131427505;
// aapt resource value: 0x7f0b0170
public const int <API key> = 2131427696;
// aapt resource value: 0x7f0b00b2
public const int <API key> = 2131427506;
// aapt resource value: 0x7f0b00b3
public const int <API key> = 2131427507;
// aapt resource value: 0x7f0b00b4
public const int <API key> = 2131427508;
// aapt resource value: 0x7f0b00b5
public const int <API key> = 2131427509;
// aapt resource value: 0x7f0b000c
public const int Base_CardView = 2131427340;
// aapt resource value: 0x7f0b00b6
public const int <API key> = 2131427510;
// aapt resource value: 0x7f0b00b7
public const int <API key> = 2131427511;
// aapt resource value: 0x7f0b004e
public const int <API key> = 2131427406;
// aapt resource value: 0x7f0b004f
public const int <API key> = 2131427407;
// aapt resource value: 0x7f0b0050
public const int <API key> = 2131427408;
// aapt resource value: 0x7f0b0036
public const int <API key> = 2131427382;
// aapt resource value: 0x7f0b0051
public const int <API key> = 2131427409;
// aapt resource value: 0x7f0b0052
public const int <API key> = 2131427410;
// aapt resource value: 0x7f0b0053
public const int <API key> = 2131427411;
// aapt resource value: 0x7f0b0054
public const int <API key> = 2131427412;
// aapt resource value: 0x7f0b0055
public const int <API key> = 2131427413;
// aapt resource value: 0x7f0b0056
public const int <API key> = 2131427414;
// aapt resource value: 0x7f0b001a
public const int <API key> = 2131427354;
// aapt resource value: 0x7f0b0057
public const int <API key> = 2131427415;
// aapt resource value: 0x7f0b001b
public const int <API key> = 2131427355;
// aapt resource value: 0x7f0b0058
public const int <API key> = 2131427416;
// aapt resource value: 0x7f0b0059
public const int <API key> = 2131427417;
// aapt resource value: 0x7f0b005a
public const int <API key> = 2131427418;
// aapt resource value: 0x7f0b001c
public const int <API key> = 2131427356;
// aapt resource value: 0x7f0b005b
public const int <API key> = 2131427419;
// aapt resource value: 0x7f0b00b8
public const int <API key> = 2131427512;
// aapt resource value: 0x7f0b005c
public const int <API key> = 2131427420;
// aapt resource value: 0x7f0b005d
public const int <API key> = 2131427421;
// aapt resource value: 0x7f0b005e
public const int <API key> = 2131427422;
// aapt resource value: 0x7f0b001d
public const int <API key> = 2131427357;
// aapt resource value: 0x7f0b005f
public const int <API key> = 2131427423;
// aapt resource value: 0x7f0b001e
public const int <API key> = 2131427358;
// aapt resource value: 0x7f0b0060
public const int <API key> = 2131427424;
// aapt resource value: 0x7f0b001f
public const int <API key> = 2131427359;
// aapt resource value: 0x7f0b00a3
public const int <API key> = 2131427491;
// aapt resource value: 0x7f0b0061
public const int <API key> = 2131427425;
// aapt resource value: 0x7f0b0062
public const int <API key> = 2131427426;
// aapt resource value: 0x7f0b0063
public const int <API key> = 2131427427;
// aapt resource value: 0x7f0b0064
public const int <API key> = 2131427428;
// aapt resource value: 0x7f0b0065
public const int <API key> = 2131427429;
// aapt resource value: 0x7f0b0066
public const int <API key> = 2131427430;
// aapt resource value: 0x7f0b0067
public const int <API key> = 2131427431;
// aapt resource value: 0x7f0b00aa
public const int <API key> = 2131427498;
// aapt resource value: 0x7f0b00ab
public const int <API key> = 2131427499;
// aapt resource value: 0x7f0b00a4
public const int <API key> = 2131427492;
// aapt resource value: 0x7f0b00b9
public const int <API key> = 2131427513;
// aapt resource value: 0x7f0b0068
public const int <API key> = 2131427432;
// aapt resource value: 0x7f0b0069
public const int <API key> = 2131427433;
// aapt resource value: 0x7f0b006a
public const int <API key> = 2131427434;
// aapt resource value: 0x7f0b006b
public const int <API key> = 2131427435;
// aapt resource value: 0x7f0b006c
public const int <API key> = 2131427436;
// aapt resource value: 0x7f0b00ba
public const int <API key> = 2131427514;
// aapt resource value: 0x7f0b006d
public const int <API key> = 2131427437;
// aapt resource value: 0x7f0b006e
public const int <API key> = 2131427438;
// aapt resource value: 0x7f0b006f
public const int <API key> = 2131427439;
// aapt resource value: 0x7f0b00bb
public const int <API key> = 2131427515;
// aapt resource value: 0x7f0b0020
public const int <API key> = 2131427360;
// aapt resource value: 0x7f0b0021
public const int <API key> = 2131427361;
// aapt resource value: 0x7f0b00bc
public const int <API key> = 2131427516;
// aapt resource value: 0x7f0b0022
public const int <API key> = 2131427362;
// aapt resource value: 0x7f0b0010
public const int <API key> = 2131427344;
// aapt resource value: 0x7f0b0070
public const int <API key> = 2131427440;
// aapt resource value: 0x7f0b00bd
public const int <API key> = 2131427517;
// aapt resource value: 0x7f0b0023
public const int <API key> = 2131427363;
// aapt resource value: 0x7f0b0024
public const int <API key> = 2131427364;
// aapt resource value: 0x7f0b00be
public const int <API key> = 2131427518;
// aapt resource value: 0x7f0b0025
public const int <API key> = 2131427365;
// aapt resource value: 0x7f0b0011
public const int <API key> = 2131427345;
// aapt resource value: 0x7f0b00bf
public const int <API key> = 2131427519;
// aapt resource value: 0x7f0b00c0
public const int <API key> = 2131427520;
// aapt resource value: 0x7f0b00c1
public const int <API key> = 2131427521;
// aapt resource value: 0x7f0b00c2
public const int <API key> = 2131427522;
// aapt resource value: 0x7f0b0026
public const int <API key> = 2131427366;
// aapt resource value: 0x7f0b0027
public const int <API key> = 2131427367;
// aapt resource value: 0x7f0b00c3
public const int <API key> = 2131427523;
// aapt resource value: 0x7f0b0028
public const int <API key> = 2131427368;
// aapt resource value: 0x7f0b0029
public const int <API key> = 2131427369;
// aapt resource value: 0x7f0b002a
public const int <API key> = 2131427370;
// aapt resource value: 0x7f0b0032
public const int <API key> = 2131427378;
// aapt resource value: 0x7f0b0033
public const int <API key> = 2131427379;
// aapt resource value: 0x7f0b0071
public const int <API key> = 2131427441;
// aapt resource value: 0x7f0b0072
public const int <API key> = 2131427442;
// aapt resource value: 0x7f0b0073
public const int <API key> = 2131427443;
// aapt resource value: 0x7f0b0074
public const int <API key> = 2131427444;
// aapt resource value: 0x7f0b0075
public const int <API key> = 2131427445;
// aapt resource value: 0x7f0b00a1
public const int <API key> = 2131427489;
// aapt resource value: 0x7f0b00a2
public const int <API key> = 2131427490;
// aapt resource value: 0x7f0b00a5
public const int <API key> = 2131427493;
// aapt resource value: 0x7f0b00a6
public const int <API key> = 2131427494;
// aapt resource value: 0x7f0b00c4
public const int <API key> = 2131427524;
// aapt resource value: 0x7f0b00c5
public const int <API key> = 2131427525;
// aapt resource value: 0x7f0b00c6
public const int <API key> = 2131427526;
// aapt resource value: 0x7f0b00c7
public const int <API key> = 2131427527;
// aapt resource value: 0x7f0b00c8
public const int <API key> = 2131427528;
// aapt resource value: 0x7f0b00c9
public const int <API key> = 2131427529;
// aapt resource value: 0x7f0b00ca
public const int <API key> = 2131427530;
// aapt resource value: 0x7f0b00cb
public const int <API key> = 2131427531;
// aapt resource value: 0x7f0b00cc
public const int <API key> = 2131427532;
// aapt resource value: 0x7f0b00cd
public const int <API key> = 2131427533;
// aapt resource value: 0x7f0b0076
public const int <API key> = 2131427446;
// aapt resource value: 0x7f0b0077
public const int <API key> = 2131427447;
// aapt resource value: 0x7f0b0078
public const int <API key> = 2131427448;
// aapt resource value: 0x7f0b0079
public const int <API key> = 2131427449;
// aapt resource value: 0x7f0b007a
public const int <API key> = 2131427450;
// aapt resource value: 0x7f0b00ce
public const int <API key> = 2131427534;
// aapt resource value: 0x7f0b00cf
public const int <API key> = 2131427535;
// aapt resource value: 0x7f0b0034
public const int <API key> = 2131427380;
// aapt resource value: 0x7f0b007b
public const int <API key> = 2131427451;
// aapt resource value: 0x7f0b007c
public const int <API key> = 2131427452;
// aapt resource value: 0x7f0b007d
public const int <API key> = 2131427453;
// aapt resource value: 0x7f0b00d0
public const int <API key> = 2131427536;
// aapt resource value: 0x7f0b00a7
public const int <API key> = 2131427495;
// aapt resource value: 0x7f0b007e
public const int <API key> = 2131427454;
// aapt resource value: 0x7f0b007f
public const int <API key> = 2131427455;
// aapt resource value: 0x7f0b00d1
public const int <API key> = 2131427537;
// aapt resource value: 0x7f0b0080
public const int <API key> = 2131427456;
// aapt resource value: 0x7f0b0081
public const int <API key> = 2131427457;
// aapt resource value: 0x7f0b00d2
public const int <API key> = 2131427538;
// aapt resource value: 0x7f0b000f
public const int <API key> = 2131427343;
// aapt resource value: 0x7f0b00d3
public const int <API key> = 2131427539;
// aapt resource value: 0x7f0b0082
public const int <API key> = 2131427458;
// aapt resource value: 0x7f0b0035
public const int <API key> = 2131427381;
// aapt resource value: 0x7f0b0083
public const int <API key> = 2131427459;
// aapt resource value: 0x7f0b00d4
public const int <API key> = 2131427540;
// aapt resource value: 0x7f0b00d5
public const int <API key> = 2131427541;
// aapt resource value: 0x7f0b00d6
public const int <API key> = 2131427542;
// aapt resource value: 0x7f0b0084
public const int <API key> = 2131427460;
// aapt resource value: 0x7f0b0085
public const int <API key> = 2131427461;
// aapt resource value: 0x7f0b0086
public const int <API key> = 2131427462;
// aapt resource value: 0x7f0b0087
public const int <API key> = 2131427463;
// aapt resource value: 0x7f0b0088
public const int <API key> = 2131427464;
// aapt resource value: 0x7f0b00d7
public const int <API key> = 2131427543;
// aapt resource value: 0x7f0b0089
public const int <API key> = 2131427465;
// aapt resource value: 0x7f0b008a
public const int <API key> = 2131427466;
// aapt resource value: 0x7f0b008b
public const int <API key> = 2131427467;
// aapt resource value: 0x7f0b008c
public const int <API key> = 2131427468;
// aapt resource value: 0x7f0b008d
public const int <API key> = 2131427469;
// aapt resource value: 0x7f0b008e
public const int <API key> = 2131427470;
// aapt resource value: 0x7f0b00d8
public const int <API key> = 2131427544;
// aapt resource value: 0x7f0b002b
public const int <API key> = 2131427371;
// aapt resource value: 0x7f0b002c
public const int <API key> = 2131427372;
// aapt resource value: 0x7f0b008f
public const int <API key> = 2131427471;
// aapt resource value: 0x7f0b00a8
public const int <API key> = 2131427496;
// aapt resource value: 0x7f0b00a9
public const int <API key> = 2131427497;
// aapt resource value: 0x7f0b00d9
public const int <API key> = 2131427545;
// aapt resource value: 0x7f0b00da
public const int <API key> = 2131427546;
// aapt resource value: 0x7f0b0090
public const int <API key> = 2131427472;
// aapt resource value: 0x7f0b00db
public const int <API key> = 2131427547;
// aapt resource value: 0x7f0b0091
public const int <API key> = 2131427473;
// aapt resource value: 0x7f0b0012
public const int <API key> = 2131427346;
// aapt resource value: 0x7f0b0092
public const int <API key> = 2131427474;
// aapt resource value: 0x7f0b00dc
public const int <API key> = 2131427548;
// aapt resource value: 0x7f0b0093
public const int <API key> = 2131427475;
// aapt resource value: 0x7f0b0171
public const int <API key> = 2131427697;
// aapt resource value: 0x7f0b0172
public const int <API key> = 2131427698;
// aapt resource value: 0x7f0b000b
public const int CardView = 2131427339;
// aapt resource value: 0x7f0b000d
public const int CardView_Dark = 2131427341;
// aapt resource value: 0x7f0b000e
public const int CardView_Light = 2131427342;
// aapt resource value: 0x7f0b0189
public const int MyTheme = 2131427721;
// aapt resource value: 0x7f0b018a
public const int MyTheme_Base = 2131427722;
// aapt resource value: 0x7f0b002d
public const int Platform_AppCompat = 2131427373;
// aapt resource value: 0x7f0b002e
public const int <API key> = 2131427374;
// aapt resource value: 0x7f0b0094
public const int <API key> = 2131427476;
// aapt resource value: 0x7f0b0095
public const int <API key> = 2131427477;
// aapt resource value: 0x7f0b0096
public const int <API key> = 2131427478;
// aapt resource value: 0x7f0b002f
public const int <API key> = 2131427375;
// aapt resource value: 0x7f0b0030
public const int <API key> = 2131427376;
// aapt resource value: 0x7f0b0037
public const int <API key> = 2131427383;
// aapt resource value: 0x7f0b0038
public const int <API key> = 2131427384;
// aapt resource value: 0x7f0b0097
public const int <API key> = 2131427479;
// aapt resource value: 0x7f0b0098
public const int <API key> = 2131427480;
// aapt resource value: 0x7f0b00ac
public const int <API key> = 2131427500;
// aapt resource value: 0x7f0b00ad
public const int <API key> = 2131427501;
// aapt resource value: 0x7f0b0031
public const int <API key> = 2131427377;
// aapt resource value: 0x7f0b0040
public const int <API key> = 2131427392;
// aapt resource value: 0x7f0b0041
public const int <API key> = 2131427393;
// aapt resource value: 0x7f0b0042
public const int <API key> = 2131427394;
// aapt resource value: 0x7f0b0043
public const int <API key> = 2131427395;
// aapt resource value: 0x7f0b0044
public const int <API key> = 2131427396;
// aapt resource value: 0x7f0b0045
public const int <API key> = 2131427397;
// aapt resource value: 0x7f0b0046
public const int <API key> = 2131427398;
// aapt resource value: 0x7f0b0047
public const int <API key> = 2131427399;
// aapt resource value: 0x7f0b0048
public const int <API key> = 2131427400;
// aapt resource value: 0x7f0b0049
public const int <API key> = 2131427401;
// aapt resource value: 0x7f0b004a
public const int <API key> = 2131427402;
// aapt resource value: 0x7f0b004b
public const int <API key> = 2131427403;
// aapt resource value: 0x7f0b004c
public const int <API key> = 2131427404;
// aapt resource value: 0x7f0b004d
public const int <API key> = 2131427405;
// aapt resource value: 0x7f0b00dd
public const int <API key> = 2131427549;
// aapt resource value: 0x7f0b00de
public const int <API key> = 2131427550;
// aapt resource value: 0x7f0b00df
public const int <API key> = 2131427551;
// aapt resource value: 0x7f0b00e0
public const int <API key> = 2131427552;
// aapt resource value: 0x7f0b00e1
public const int <API key> = 2131427553;
// aapt resource value: 0x7f0b00e2
public const int <API key> = 2131427554;
// aapt resource value: 0x7f0b00e3
public const int <API key> = 2131427555;
// aapt resource value: 0x7f0b00e4
public const int <API key> = 2131427556;
// aapt resource value: 0x7f0b00e5
public const int <API key> = 2131427557;
// aapt resource value: 0x7f0b00e6
public const int <API key> = 2131427558;
// aapt resource value: 0x7f0b00e7
public const int <API key> = 2131427559;
// aapt resource value: 0x7f0b00e8
public const int <API key> = 2131427560;
// aapt resource value: 0x7f0b00e9
public const int <API key> = 2131427561;
// aapt resource value: 0x7f0b00ea
public const int <API key> = 2131427562;
// aapt resource value: 0x7f0b00eb
public const int <API key> = 2131427563;
// aapt resource value: 0x7f0b00ec
public const int <API key> = 2131427564;
// aapt resource value: 0x7f0b00ed
public const int <API key> = 2131427565;
// aapt resource value: 0x7f0b00ee
public const int <API key> = 2131427566;
// aapt resource value: 0x7f0b00ef
public const int <API key> = 2131427567;
// aapt resource value: 0x7f0b00f0
public const int <API key> = 2131427568;
// aapt resource value: 0x7f0b0039
public const int <API key> = 2131427385;
// aapt resource value: 0x7f0b0099
public const int <API key> = 2131427481;
// aapt resource value: 0x7f0b009a
public const int <API key> = 2131427482;
// aapt resource value: 0x7f0b00f1
public const int <API key> = 2131427569;
// aapt resource value: 0x7f0b00f2
public const int <API key> = 2131427570;
// aapt resource value: 0x7f0b009b
public const int <API key> = 2131427483;
// aapt resource value: 0x7f0b009c
public const int <API key> = 2131427484;
// aapt resource value: 0x7f0b009d
public const int <API key> = 2131427485;
// aapt resource value: 0x7f0b003a
public const int <API key> = 2131427386;
// aapt resource value: 0x7f0b009e
public const int <API key> = 2131427486;
// aapt resource value: 0x7f0b00f3
public const int <API key> = 2131427571;
// aapt resource value: 0x7f0b00f4
public const int <API key> = 2131427572;
// aapt resource value: 0x7f0b00f5
public const int <API key> = 2131427573;
// aapt resource value: 0x7f0b00f6
public const int <API key> = 2131427574;
// aapt resource value: 0x7f0b00f7
public const int <API key> = 2131427575;
// aapt resource value: 0x7f0b00f8
public const int <API key> = 2131427576;
// aapt resource value: 0x7f0b00f9
public const int <API key> = 2131427577;
// aapt resource value: 0x7f0b00fa
public const int <API key> = 2131427578;
// aapt resource value: 0x7f0b00fb
public const int <API key> = 2131427579;
// aapt resource value: 0x7f0b00fc
public const int <API key> = 2131427580;
// aapt resource value: 0x7f0b00fd
public const int <API key> = 2131427581;
// aapt resource value: 0x7f0b00fe
public const int <API key> = 2131427582;
// aapt resource value: 0x7f0b00ff
public const int <API key> = 2131427583;
// aapt resource value: 0x7f0b0100
public const int <API key> = 2131427584;
// aapt resource value: 0x7f0b0101
public const int <API key> = 2131427585;
// aapt resource value: 0x7f0b0102
public const int <API key> = 2131427586;
// aapt resource value: 0x7f0b0103
public const int <API key> = 2131427587;
// aapt resource value: 0x7f0b0104
public const int <API key> = 2131427588;
// aapt resource value: 0x7f0b0105
public const int <API key> = 2131427589;
// aapt resource value: 0x7f0b0106
public const int <API key> = 2131427590;
// aapt resource value: 0x7f0b0107
public const int <API key> = 2131427591;
// aapt resource value: 0x7f0b0108
public const int <API key> = 2131427592;
// aapt resource value: 0x7f0b0109
public const int <API key> = 2131427593;
// aapt resource value: 0x7f0b010a
public const int <API key> = 2131427594;
// aapt resource value: 0x7f0b010b
public const int <API key> = 2131427595;
// aapt resource value: 0x7f0b010c
public const int <API key> = 2131427596;
// aapt resource value: 0x7f0b010d
public const int <API key> = 2131427597;
// aapt resource value: 0x7f0b0173
public const int <API key> = 2131427699;
// aapt resource value: 0x7f0b0174
public const int <API key> = 2131427700;
// aapt resource value: 0x7f0b0175
public const int <API key> = 2131427701;
// aapt resource value: 0x7f0b0176
public const int <API key> = 2131427702;
// aapt resource value: 0x7f0b0177
public const int <API key> = 2131427703;
// aapt resource value: 0x7f0b0178
public const int <API key> = 2131427704;
// aapt resource value: 0x7f0b0179
public const int <API key> = 2131427705;
// aapt resource value: 0x7f0b0000
public const int <API key> = 2131427328;
// aapt resource value: 0x7f0b0001
public const int <API key> = 2131427329;
// aapt resource value: 0x7f0b0002
public const int <API key> = 2131427330;
// aapt resource value: 0x7f0b003b
public const int <API key> = 2131427387;
// aapt resource value: 0x7f0b003c
public const int <API key> = 2131427388;
// aapt resource value: 0x7f0b003d
public const int <API key> = 2131427389;
// aapt resource value: 0x7f0b003e
public const int <API key> = 2131427390;
// aapt resource value: 0x7f0b003f
public const int <API key> = 2131427391;
// aapt resource value: 0x7f0b010e
public const int <API key> = 2131427598;
// aapt resource value: 0x7f0b010f
public const int <API key> = 2131427599;
// aapt resource value: 0x7f0b0110
public const int <API key> = 2131427600;
// aapt resource value: 0x7f0b0111
public const int Theme_AppCompat = 2131427601;
// aapt resource value: 0x7f0b0112
public const int <API key> = 2131427602;
// aapt resource value: 0x7f0b0013
public const int <API key> = 2131427347;
// aapt resource value: 0x7f0b0014
public const int <API key> = 2131427348;
// aapt resource value: 0x7f0b0015
public const int <API key> = 2131427349;
// aapt resource value: 0x7f0b0016
public const int <API key> = 2131427350;
// aapt resource value: 0x7f0b0017
public const int <API key> = 2131427351;
// aapt resource value: 0x7f0b0018
public const int <API key> = 2131427352;
// aapt resource value: 0x7f0b0019
public const int <API key> = 2131427353;
// aapt resource value: 0x7f0b0113
public const int <API key> = 2131427603;
// aapt resource value: 0x7f0b0114
public const int <API key> = 2131427604;
// aapt resource value: 0x7f0b0115
public const int <API key> = 2131427605;
// aapt resource value: 0x7f0b0116
public const int <API key> = 2131427606;
// aapt resource value: 0x7f0b0117
public const int <API key> = 2131427607;
// aapt resource value: 0x7f0b0118
public const int <API key> = 2131427608;
// aapt resource value: 0x7f0b0119
public const int <API key> = 2131427609;
// aapt resource value: 0x7f0b011a
public const int <API key> = 2131427610;
// aapt resource value: 0x7f0b011b
public const int <API key> = 2131427611;
// aapt resource value: 0x7f0b011c
public const int <API key> = 2131427612;
// aapt resource value: 0x7f0b011d
public const int <API key> = 2131427613;
// aapt resource value: 0x7f0b011e
public const int <API key> = 2131427614;
// aapt resource value: 0x7f0b017a
public const int Theme_Design = 2131427706;
// aapt resource value: 0x7f0b017b
public const int <API key> = 2131427707;
// aapt resource value: 0x7f0b017c
public const int Theme_Design_Light = 2131427708;
// aapt resource value: 0x7f0b017d
public const int <API key> = 2131427709;
// aapt resource value: 0x7f0b017e
public const int <API key> = 2131427710;
// aapt resource value: 0x7f0b017f
public const int <API key> = 2131427711;
// aapt resource value: 0x7f0b0003
public const int Theme_MediaRouter = 2131427331;
// aapt resource value: 0x7f0b0004
public const int <API key> = 2131427332;
// aapt resource value: 0x7f0b0005
public const int <API key> = 2131427333;
// aapt resource value: 0x7f0b0006
public const int <API key> = 2131427334;
// aapt resource value: 0x7f0b011f
public const int <API key> = 2131427615;
// aapt resource value: 0x7f0b0120
public const int <API key> = 2131427616;
// aapt resource value: 0x7f0b0121
public const int <API key> = 2131427617;
// aapt resource value: 0x7f0b0122
public const int <API key> = 2131427618;
// aapt resource value: 0x7f0b0123
public const int <API key> = 2131427619;
// aapt resource value: 0x7f0b0124
public const int <API key> = 2131427620;
// aapt resource value: 0x7f0b0125
public const int <API key> = 2131427621;
// aapt resource value: 0x7f0b0007
public const int <API key> = 2131427335;
// aapt resource value: 0x7f0b0008
public const int <API key> = 2131427336;
// aapt resource value: 0x7f0b0126
public const int <API key> = 2131427622;
// aapt resource value: 0x7f0b0127
public const int <API key> = 2131427623;
// aapt resource value: 0x7f0b0128
public const int <API key> = 2131427624;
// aapt resource value: 0x7f0b0129
public const int <API key> = 2131427625;
// aapt resource value: 0x7f0b012a
public const int <API key> = 2131427626;
// aapt resource value: 0x7f0b012b
public const int <API key> = 2131427627;
// aapt resource value: 0x7f0b012c
public const int <API key> = 2131427628;
// aapt resource value: 0x7f0b012d
public const int <API key> = 2131427629;
// aapt resource value: 0x7f0b012e
public const int <API key> = 2131427630;
// aapt resource value: 0x7f0b012f
public const int <API key> = 2131427631;
// aapt resource value: 0x7f0b0130
public const int <API key> = 2131427632;
// aapt resource value: 0x7f0b0131
public const int <API key> = 2131427633;
// aapt resource value: 0x7f0b0132
public const int <API key> = 2131427634;
// aapt resource value: 0x7f0b0133
public const int <API key> = 2131427635;
// aapt resource value: 0x7f0b0134
public const int <API key> = 2131427636;
// aapt resource value: 0x7f0b0135
public const int <API key> = 2131427637;
// aapt resource value: 0x7f0b0136
public const int <API key> = 2131427638;
// aapt resource value: 0x7f0b0137
public const int <API key> = 2131427639;
// aapt resource value: 0x7f0b0138
public const int <API key> = 2131427640;
// aapt resource value: 0x7f0b0139
public const int <API key> = 2131427641;
// aapt resource value: 0x7f0b013a
public const int <API key> = 2131427642;
// aapt resource value: 0x7f0b013b
public const int <API key> = 2131427643;
// aapt resource value: 0x7f0b013c
public const int <API key> = 2131427644;
// aapt resource value: 0x7f0b013d
public const int <API key> = 2131427645;
// aapt resource value: 0x7f0b013e
public const int <API key> = 2131427646;
// aapt resource value: 0x7f0b013f
public const int <API key> = 2131427647;
// aapt resource value: 0x7f0b0140
public const int <API key> = 2131427648;
// aapt resource value: 0x7f0b0141
public const int <API key> = 2131427649;
// aapt resource value: 0x7f0b0142
public const int <API key> = 2131427650;
// aapt resource value: 0x7f0b0143
public const int <API key> = 2131427651;
// aapt resource value: 0x7f0b0144
public const int <API key> = 2131427652;
// aapt resource value: 0x7f0b0145
public const int <API key> = 2131427653;
// aapt resource value: 0x7f0b0146
public const int <API key> = 2131427654;
// aapt resource value: 0x7f0b0147
public const int <API key> = 2131427655;
// aapt resource value: 0x7f0b0148
public const int <API key> = 2131427656;
// aapt resource value: 0x7f0b0149
public const int <API key> = 2131427657;
// aapt resource value: 0x7f0b014a
public const int <API key> = 2131427658;
// aapt resource value: 0x7f0b014b
public const int <API key> = 2131427659;
// aapt resource value: 0x7f0b014c
public const int <API key> = 2131427660;
// aapt resource value: 0x7f0b014d
public const int <API key> = 2131427661;
// aapt resource value: 0x7f0b014e
public const int <API key> = 2131427662;
// aapt resource value: 0x7f0b014f
public const int <API key> = 2131427663;
// aapt resource value: 0x7f0b0150
public const int <API key> = 2131427664;
// aapt resource value: 0x7f0b0151
public const int <API key> = 2131427665;
// aapt resource value: 0x7f0b0152
public const int <API key> = 2131427666;
// aapt resource value: 0x7f0b0153
public const int <API key> = 2131427667;
// aapt resource value: 0x7f0b0154
public const int <API key> = 2131427668;
// aapt resource value: 0x7f0b0155
public const int <API key> = 2131427669;
// aapt resource value: 0x7f0b0156
public const int <API key> = 2131427670;
// aapt resource value: 0x7f0b0157
public const int <API key> = 2131427671;
// aapt resource value: 0x7f0b0158
public const int <API key> = 2131427672;
// aapt resource value: 0x7f0b0159
public const int <API key> = 2131427673;
// aapt resource value: 0x7f0b015a
public const int <API key> = 2131427674;
// aapt resource value: 0x7f0b009f
public const int <API key> = 2131427487;
// aapt resource value: 0x7f0b00a0
public const int <API key> = 2131427488;
// aapt resource value: 0x7f0b015b
public const int <API key> = 2131427675;
// aapt resource value: 0x7f0b015c
public const int <API key> = 2131427676;
// aapt resource value: 0x7f0b015d
public const int <API key> = 2131427677;
// aapt resource value: 0x7f0b015e
public const int <API key> = 2131427678;
// aapt resource value: 0x7f0b015f
public const int <API key> = 2131427679;
// aapt resource value: 0x7f0b0160
public const int <API key> = 2131427680;
// aapt resource value: 0x7f0b0161
public const int <API key> = 2131427681;
// aapt resource value: 0x7f0b0162
public const int <API key> = 2131427682;
// aapt resource value: 0x7f0b0163
public const int <API key> = 2131427683;
// aapt resource value: 0x7f0b0164
public const int <API key> = 2131427684;
// aapt resource value: 0x7f0b0165
public const int <API key> = 2131427685;
// aapt resource value: 0x7f0b0166
public const int <API key> = 2131427686;
// aapt resource value: 0x7f0b0167
public const int <API key> = 2131427687;
// aapt resource value: 0x7f0b0168
public const int <API key> = 2131427688;
// aapt resource value: 0x7f0b0169
public const int <API key> = 2131427689;
// aapt resource value: 0x7f0b016a
public const int <API key> = 2131427690;
// aapt resource value: 0x7f0b016b
public const int <API key> = 2131427691;
// aapt resource value: 0x7f0b016c
public const int <API key> = 2131427692;
// aapt resource value: 0x7f0b016d
public const int <API key> = 2131427693;
// aapt resource value: 0x7f0b016f
public const int <API key> = 2131427695;
// aapt resource value: 0x7f0b0180
public const int <API key> = 2131427712;
// aapt resource value: 0x7f0b0181
public const int <API key> = 2131427713;
// aapt resource value: 0x7f0b0182
public const int <API key> = 2131427714;
// aapt resource value: 0x7f0b0183
public const int <API key> = 2131427715;
// aapt resource value: 0x7f0b0184
public const int <API key> = 2131427716;
// aapt resource value: 0x7f0b0185
public const int <API key> = 2131427717;
// aapt resource value: 0x7f0b0186
public const int <API key> = 2131427718;
// aapt resource value: 0x7f0b0187
public const int <API key> = 2131427719;
// aapt resource value: 0x7f0b016e
public const int <API key> = 2131427694;
// aapt resource value: 0x7f0b0188
public const int <API key> = 2131427720;
// aapt resource value: 0x7f0b0009
public const int <API key> = 2131427337;
// aapt resource value: 0x7f0b000a
public const int <API key> = 2131427338;
static Style()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Style()
{
}
}
public partial class Styleable
{
public static int[] ActionBar = new int[] {
2130771997,
2130771999,
2130772000,
2130772001,
2130772002,
2130772003,
2130772004,
2130772005,
2130772006,
2130772007,
2130772008,
2130772009,
2130772010,
2130772011,
2130772012,
2130772013,
2130772014,
2130772015,
2130772016,
2130772017,
2130772018,
2130772019,
2130772020,
2130772021,
2130772022,
2130772023,
2130772024,
2130772025,
2130772087};
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 21
public const int <API key> = 21;
// aapt resource value: 25
public const int <API key> = 25;
// aapt resource value: 22
public const int <API key> = 22;
// aapt resource value: 23
public const int <API key> = 23;
// aapt resource value: 20
public const int <API key> = 20;
// aapt resource value: 24
public const int <API key> = 24;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 9
public const int ActionBar_divider = 9;
// aapt resource value: 26
public const int ActionBar_elevation = 26;
// aapt resource value: 0
public const int ActionBar_height = 0;
// aapt resource value: 19
public const int <API key> = 19;
// aapt resource value: 28
public const int <API key> = 28;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 7
public const int ActionBar_icon = 7;
// aapt resource value: 16
public const int <API key> = 16;
// aapt resource value: 18
public const int <API key> = 18;
// aapt resource value: 8
public const int ActionBar_logo = 8;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 27
public const int <API key> = 27;
// aapt resource value: 17
public const int <API key> = 17;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 4
public const int ActionBar_subtitle = 4;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 1
public const int ActionBar_title = 1;
// aapt resource value: 5
public const int <API key> = 5;
public static int[] ActionBarLayout = new int[] {
16842931};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] ActionMenuItemView = new int[] {
16843071};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] ActionMenuView;
public static int[] ActionMode = new int[] {
2130771997,
2130772003,
2130772004,
2130772008,
2130772010,
2130772026};
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 0
public const int ActionMode_height = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] ActivityChooserView = new int[] {
2130772027,
2130772028};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
public static int[] AlertDialog = new int[] {
16842994,
2130772029,
2130772030,
2130772031,
2130772032,
2130772033,
2130772034};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 4
public const int <API key> = 4;
public static int[] AppBarLayout = new int[] {
16842964,
2130772024,
2130772224};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] AppBarLayoutStates = new int[] {
2130772225,
2130772226};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] AppBarLayout_Layout = new int[] {
2130772227,
2130772228};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] AppCompatImageView = new int[] {
16843033,
2130772035};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] AppCompatSeekBar = new int[] {
16843074,
2130772036,
2130772037,
2130772038};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
public static int[] AppCompatTextHelper = new int[] {
16842804,
16843117,
16843118,
16843119,
16843120,
16843666,
16843667};
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
public static int[] AppCompatTextView = new int[] {
16842804,
2130772039};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] AppCompatTheme = new int[] {
16842839,
16842926,
2130772040,
2130772041,
2130772042,
2130772043,
2130772044,
2130772045,
2130772046,
2130772047,
2130772048,
2130772049,
2130772050,
2130772051,
2130772052,
2130772053,
2130772054,
2130772055,
2130772056,
2130772057,
2130772058,
2130772059,
2130772060,
2130772061,
2130772062,
2130772063,
2130772064,
2130772065,
2130772066,
2130772067,
2130772068,
2130772069,
2130772070,
2130772071,
2130772072,
2130772073,
2130772074,
2130772075,
2130772076,
2130772077,
2130772078,
2130772079,
2130772080,
2130772081,
2130772082,
2130772083,
2130772084,
2130772085,
2130772086,
2130772087,
2130772088,
2130772089,
2130772090,
2130772091,
2130772092,
2130772093,
2130772094,
2130772095,
2130772096,
2130772097,
2130772098,
2130772099,
2130772100,
2130772101,
2130772102,
2130772103,
2130772104,
2130772105,
2130772106,
2130772107,
2130772108,
2130772109,
2130772110,
2130772111,
2130772112,
2130772113,
2130772114,
2130772115,
2130772116,
2130772117,
2130772118,
2130772119,
2130772120,
2130772121,
2130772122,
2130772123,
2130772124,
2130772125,
2130772126,
2130772127,
2130772128,
2130772129,
2130772130,
2130772131,
2130772132,
2130772133,
2130772134,
2130772135,
2130772136,
2130772137,
2130772138,
2130772139,
2130772140,
2130772141,
2130772142,
2130772143,
2130772144,
2130772145,
2130772146,
2130772147,
2130772148,
2130772149,
2130772150,
2130772151,
2130772152};
// aapt resource value: 23
public const int <API key> = 23;
// aapt resource value: 24
public const int <API key> = 24;
// aapt resource value: 17
public const int <API key> = 17;
// aapt resource value: 22
public const int <API key> = 22;
// aapt resource value: 19
public const int <API key> = 19;
// aapt resource value: 18
public const int <API key> = 18;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 20
public const int <API key> = 20;
// aapt resource value: 21
public const int <API key> = 21;
// aapt resource value: 50
public const int <API key> = 50;
// aapt resource value: 46
public const int <API key> = 46;
// aapt resource value: 25
public const int <API key> = 25;
// aapt resource value: 26
public const int <API key> = 26;
// aapt resource value: 29
public const int <API key> = 29;
// aapt resource value: 28
public const int <API key> = 28;
// aapt resource value: 31
public const int <API key> = 31;
// aapt resource value: 33
public const int <API key> = 33;
// aapt resource value: 32
public const int <API key> = 32;
// aapt resource value: 37
public const int <API key> = 37;
// aapt resource value: 34
public const int <API key> = 34;
// aapt resource value: 39
public const int <API key> = 39;
// aapt resource value: 35
public const int <API key> = 35;
// aapt resource value: 36
public const int <API key> = 36;
// aapt resource value: 30
public const int <API key> = 30;
// aapt resource value: 27
public const int <API key> = 27;
// aapt resource value: 38
public const int <API key> = 38;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 16
public const int <API key> = 16;
// aapt resource value: 58
public const int <API key> = 58;
// aapt resource value: 94
public const int <API key> = 94;
// aapt resource value: 95
public const int <API key> = 95;
// aapt resource value: 93
public const int <API key> = 93;
// aapt resource value: 96
public const int <API key> = 96;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 101
public const int <API key> = 101;
// aapt resource value: 55
public const int <API key> = 55;
// aapt resource value: 52
public const int <API key> = 52;
// aapt resource value: 99
public const int <API key> = 99;
// aapt resource value: 100
public const int <API key> = 100;
// aapt resource value: 98
public const int <API key> = 98;
// aapt resource value: 51
public const int <API key> = 51;
// aapt resource value: 102
public const int <API key> = 102;
// aapt resource value: 103
public const int <API key> = 103;
// aapt resource value: 104
public const int <API key> = 104;
// aapt resource value: 105
public const int <API key> = 105;
// aapt resource value: 85
public const int <API key> = 85;
// aapt resource value: 92
public const int <API key> = 92;
// aapt resource value: 89
public const int <API key> = 89;
// aapt resource value: 87
public const int <API key> = 87;
// aapt resource value: 88
public const int <API key> = 88;
// aapt resource value: 86
public const int <API key> = 86;
// aapt resource value: 83
public const int <API key> = 83;
// aapt resource value: 84
public const int <API key> = 84;
// aapt resource value: 90
public const int <API key> = 90;
// aapt resource value: 91
public const int <API key> = 91;
// aapt resource value: 44
public const int <API key> = 44;
// aapt resource value: 43
public const int <API key> = 43;
// aapt resource value: 57
public const int <API key> = 57;
// aapt resource value: 56
public const int <API key> = 56;
// aapt resource value: 75
public const int <API key> = 75;
// aapt resource value: 47
public const int <API key> = 47;
// aapt resource value: 64
public const int <API key> = 64;
// aapt resource value: 63
public const int <API key> = 63;
// aapt resource value: 106
public const int <API key> = 106;
// aapt resource value: 49
public const int <API key> = 49;
// aapt resource value: 65
public const int <API key> = 65;
// aapt resource value: 82
public const int <API key> = 82;
// aapt resource value: 45
public const int <API key> = 45;
// aapt resource value: 114
public const int <API key> = 114;
// aapt resource value: 76
public const int <API key> = 76;
// aapt resource value: 70
public const int <API key> = 70;
// aapt resource value: 72
public const int <API key> = 72;
// aapt resource value: 71
public const int <API key> = 71;
// aapt resource value: 73
public const int <API key> = 73;
// aapt resource value: 74
public const int <API key> = 74;
// aapt resource value: 79
public const int <API key> = 79;
// aapt resource value: 81
public const int <API key> = 81;
// aapt resource value: 80
public const int <API key> = 80;
// aapt resource value: 61
public const int <API key> = 61;
// aapt resource value: 62
public const int <API key> = 62;
// aapt resource value: 107
public const int <API key> = 107;
// aapt resource value: 108
public const int <API key> = 108;
// aapt resource value: 109
public const int <API key> = 109;
// aapt resource value: 110
public const int <API key> = 110;
// aapt resource value: 69
public const int <API key> = 69;
// aapt resource value: 111
public const int <API key> = 111;
// aapt resource value: 53
public const int <API key> = 53;
// aapt resource value: 54
public const int <API key> = 54;
// aapt resource value: 48
public const int <API key> = 48;
// aapt resource value: 112
public const int <API key> = 112;
// aapt resource value: 113
public const int <API key> = 113;
// aapt resource value: 40
public const int <API key> = 40;
// aapt resource value: 77
public const int <API key> = 77;
// aapt resource value: 78
public const int <API key> = 78;
// aapt resource value: 42
public const int <API key> = 42;
// aapt resource value: 67
public const int <API key> = 67;
// aapt resource value: 66
public const int <API key> = 66;
// aapt resource value: 41
public const int <API key> = 41;
// aapt resource value: 97
public const int <API key> = 97;
// aapt resource value: 68
public const int <API key> = 68;
// aapt resource value: 60
public const int <API key> = 60;
// aapt resource value: 59
public const int <API key> = 59;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 3
public const int <API key> = 3;
public static int[] <API key> = new int[] {
2130772024,
2130772267,
2130772268,
2130772269,
2130772270};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] <API key> = new int[] {
2130772229,
2130772230,
2130772231};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] ButtonBarLayout = new int[] {
2130772153};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] CardView = new int[] {
16843071,
16843072,
2130771985,
2130771986,
2130771987,
2130771988,
2130771989,
2130771990,
2130771991,
2130771992,
2130771993,
2130771994,
2130771995};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 11
public const int <API key> = 11;
public static int[] <API key> = new int[] {
2130771999,
2130772232,
2130772233,
2130772234,
2130772235,
2130772236,
2130772237,
2130772238,
2130772239,
2130772240,
2130772241,
2130772242,
2130772243,
2130772244,
2130772245,
2130772246};
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 10
public const int <API key> = 10;
public static int[] <API key> = new int[] {
2130772247,
2130772248};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] ColorStateListItem = new int[] {
16843173,
16843551,
2130772154};
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
public static int[] CompoundButton = new int[] {
16843015,
2130772155,
2130772156};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] CoordinatorLayout = new int[] {
2130772249,
2130772250};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] <API key> = new int[] {
16842931,
2130772251,
2130772252,
2130772253,
2130772254,
2130772255,
2130772256};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 3
public const int <API key> = 3;
public static int[] DesignTheme = new int[] {
2130772257,
2130772258,
2130772259};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] DrawerArrowToggle = new int[] {
2130772157,
2130772158,
2130772159,
2130772160,
2130772161,
2130772162,
2130772163,
2130772164};
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 7
public const int <API key> = 7;
public static int[] <API key> = new int[] {
2130772024,
2130772222,
2130772223,
2130772260,
2130772261,
2130772262,
2130772263,
2130772264};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 7
public const int <API key> = 7;
public static int[] <API key> = new int[] {
2130772265};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] <API key> = new int[] {
16843017,
16843264,
2130772266};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] LinearLayoutCompat = new int[] {
16842927,
16842948,
16843046,
16843047,
16843048,
2130772007,
2130772165,
2130772166,
2130772167};
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 7
public const int <API key> = 7;
public static int[] <API key> = new int[] {
16842931,
16842996,
16842997,
16843137};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] ListPopupWindow = new int[] {
16843436,
16843437};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] MediaRouteButton = new int[] {
16843071,
16843072,
2130771984,
2130772155};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] MenuGroup = new int[] {
16842766,
16842960,
16843156,
16843230,
16843231,
16843232};
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] MenuItem = new int[] {
16842754,
16842766,
16842960,
16843014,
16843156,
16843230,
16843231,
16843233,
16843234,
16843235,
16843236,
16843237,
16843375,
2130772168,
2130772169,
2130772170,
2130772171};
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 16
public const int <API key> = 16;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int MenuItem_android_id = 2;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 13
public const int <API key> = 13;
public static int[] MenuView = new int[] {
16842926,
16843052,
16843053,
16843054,
16843055,
16843056,
16843057,
2130772172,
2130772173};
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 8
public const int <API key> = 8;
public static int[] NavigationView = new int[] {
16842964,
16842973,
16843039,
2130772024,
2130772267,
2130772268,
2130772269,
2130772270,
2130772271,
2130772272};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 4
public const int NavigationView_menu = 4;
public static int[] PopupWindow = new int[] {
16843126,
16843465,
2130772174};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] <API key> = new int[] {
2130772175};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] RecycleListView = new int[] {
2130772176,
2130772177};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
public static int[] RecyclerView = new int[] {
16842948,
16842993,
2130771968,
2130771969,
2130771970,
2130771971};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 5
public const int <API key> = 5;
public static int[] <API key> = new int[] {
2130772273};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] <API key> = new int[] {
2130772274};
// aapt resource value: 0
public const int <API key> = 0;
public static int[] SearchView = new int[] {
16842970,
16843039,
16843296,
16843364,
2130772178,
2130772179,
2130772180,
2130772181,
2130772182,
2130772183,
2130772184,
2130772185,
2130772186,
2130772187,
2130772188,
2130772189,
2130772190};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 9
public const int SearchView_goIcon = 9;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 4
public const int SearchView_layout = 4;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 16
public const int <API key> = 16;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 12
public const int <API key> = 12;
public static int[] SnackbarLayout = new int[] {
16843039,
2130772024,
2130772275};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] Spinner = new int[] {
16842930,
16843126,
16843131,
16843362,
2130772025};
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 4
public const int Spinner_popupTheme = 4;
public static int[] SwitchCompat = new int[] {
16843044,
16843045,
16843074,
2130772191,
2130772192,
2130772193,
2130772194,
2130772195,
2130772196,
2130772197,
2130772198,
2130772199,
2130772200,
2130772201};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int SwitchCompat_track = 5;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 7
public const int <API key> = 7;
public static int[] TabItem = new int[] {
16842754,
16842994,
16843087};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] TabLayout = new int[] {
2130772276,
2130772277,
2130772278,
2130772279,
2130772280,
2130772281,
2130772282,
2130772283,
2130772284,
2130772285,
2130772286,
2130772287,
2130772288,
2130772289,
2130772290,
2130772291};
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 4
public const int TabLayout_tabMode = 4;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 9
public const int <API key> = 9;
public static int[] TextAppearance = new int[] {
16842901,
16842902,
16842903,
16842904,
16842906,
16843105,
16843106,
16843107,
16843108,
2130772039};
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 9
public const int <API key> = 9;
public static int[] TextInputLayout = new int[] {
16842906,
16843088,
2130772292,
2130772293,
2130772294,
2130772295,
2130772296,
2130772297,
2130772298,
2130772299,
2130772300,
2130772301,
2130772302,
2130772303,
2130772304,
2130772305};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 4
public const int <API key> = 4;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 3
public const int <API key> = 3;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 13
public const int TextInputLayout_<API key> = 13;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 11
public const int <API key> = 11;
// aapt resource value: 14
public const int <API key> = 14;
// aapt resource value: 15
public const int <API key> = 15;
public static int[] Toolbar = new int[] {
16842927,
16843072,
2130771999,
2130772002,
2130772006,
2130772018,
2130772019,
2130772020,
2130772021,
2130772022,
2130772023,
2130772025,
2130772202,
2130772203,
2130772204,
2130772205,
2130772206,
2130772207,
2130772208,
2130772209,
2130772210,
2130772211,
2130772212,
2130772213,
2130772214,
2130772215,
2130772216,
2130772217,
2130772218};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 21
public const int <API key> = 21;
// aapt resource value: 23
public const int <API key> = 23;
// aapt resource value: 22
public const int <API key> = 22;
// aapt resource value: 6
public const int <API key> = 6;
// aapt resource value: 10
public const int <API key> = 10;
// aapt resource value: 7
public const int <API key> = 7;
// aapt resource value: 8
public const int <API key> = 8;
// aapt resource value: 5
public const int <API key> = 5;
// aapt resource value: 9
public const int <API key> = 9;
// aapt resource value: 4
public const int Toolbar_logo = 4;
// aapt resource value: 26
public const int <API key> = 26;
// aapt resource value: 20
public const int <API key> = 20;
// aapt resource value: 25
public const int <API key> = 25;
// aapt resource value: 24
public const int <API key> = 24;
// aapt resource value: 11
public const int Toolbar_popupTheme = 11;
// aapt resource value: 3
public const int Toolbar_subtitle = 3;
// aapt resource value: 13
public const int <API key> = 13;
// aapt resource value: 28
public const int <API key> = 28;
// aapt resource value: 2
public const int Toolbar_title = 2;
// aapt resource value: 14
public const int Toolbar_titleMargin = 14;
// aapt resource value: 18
public const int <API key> = 18;
// aapt resource value: 16
public const int <API key> = 16;
// aapt resource value: 15
public const int <API key> = 15;
// aapt resource value: 17
public const int <API key> = 17;
// aapt resource value: 19
public const int <API key> = 19;
// aapt resource value: 12
public const int <API key> = 12;
// aapt resource value: 27
public const int <API key> = 27;
public static int[] View = new int[] {
16842752,
16842970,
2130772219,
2130772220,
2130772221};
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 0
public const int View_android_theme = 0;
// aapt resource value: 3
public const int View_paddingEnd = 3;
// aapt resource value: 2
public const int View_paddingStart = 2;
// aapt resource value: 4
public const int View_theme = 4;
public static int[] <API key> = new int[] {
16842964,
2130772222,
2130772223};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 1
public const int <API key> = 1;
// aapt resource value: 2
public const int <API key> = 2;
public static int[] ViewStubCompat = new int[] {
16842960,
16842994,
16842995};
// aapt resource value: 0
public const int <API key> = 0;
// aapt resource value: 2
public const int <API key> = 2;
// aapt resource value: 1
public const int <API key> = 1;
static Styleable()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Styleable()
{
}
}
}
}
#pragma warning restore 1591 |
@font-face {
font-family:'Montserrat-Bold';
src:url('../fonts/Montserrat-Bold.otf') format('truetype');
}
@font-face {
font-family:'Montserrat-Hairline';
src:url('../fonts/Montserrat-Hairline.otf') format('truetype');
}
@font-face {
font-family:'Montserrat-Regular';
src:url('../fonts/Montserrat-Regular.otf') format('truetype');
}
@font-face {
font-family:'Montserrat-Light';
src:url('../fonts/Montserrat-Light.otf') format('truetype');
}
@font-face {
font-family:'NotoSerif-Bold';
src:url('../fonts/NotoSerif-Bold.ttf') format('truetype');
}
@font-face {
font-family:'OpenSans-Regular';
src:url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
font-family:'OpenSans-Light';
src:url('../fonts/OpenSans-Light.ttf') format('truetype');
}
@font-face {
font-family:'OpenSans-Bold';
src:url('../fonts/OpenSans-Bold.ttf') format('truetype');
}
@font-face {
font-family:'century-gothic-bold';
src:url('../fonts/century-gothic-bold.ttf') format('truetype');
}
.sl-slide-inner h2{
background: url('../../img/bottom-border.jpg') no-repeat bottom center;
}
#mainNav.inner-nav{
background-color: #262626;
padding: 0 0 10px;
}
.affix#mainNav{
background: rgba(0, 0, 0, 0.8);
padding-top: 0;
width: 100%;
}
.container>.navbar-header{
margin: 0 !important;
}
.navbar-custom .navbar-nav li.active a, .navbar-custom .navbar-nav li.active a:active, .navbar-custom .navbar-nav li.active a:focus, .navbar-custom .navbar-nav li.active a:hover{
background: none;
}
#portfolio{
background: url('../../img/portfolio-banner.jpg') no-repeat top center;
}
#portfolio h2{
background: url('../../img/bottom-border.jpg') no-repeat bottom center;
}
.inner-banner .banner-txt {
background: url(../../img/inner-pages/bottom-border.jpg) no-repeat bottom center;
}
section.cloud-inner .remote-backup.ourvalues ul li{
background: url(../../img/inner-pages/arr-black.png) no-repeat left center;
}
.blocks a.orange{
border: 1px solid #ff7225;
}
.blocks a.green{
border: 1px solid #00c895;
}
.blocks a.pink{
border: 1px solid #dc5194;
}
.blocks a.blue{
border: 1px solid #00b7da;
}
section.success#about{
background: url('../../img/image1.jpg') no-repeat top center;
background-size: cover;
}
.success h2{
background: url('../../img/10.png') no-repeat bottom center;
}
.success h4{
background: url(../../img/small-border.png) no-repeat bottom left;
padding: 20px 0;
margin-bottom: 40px;
font-size: 24px;
}
.customers h2{
background: url(../../img/21.png) no-repeat bottom center;
}
section.cloud-inner .learn-history .content-block h4 {
background: url(../../img/inner-pages/black_dot.png) no-repeat left;
}
.client-review{
display: none;
}
.thumbnail-details {
padding: 0 60px;
}
.thumbnail-details p{
font-family: 'NotoSerif-Bold';
color: #3d3f4f;
line-height: 20px;
font-size: 15px;
}
#thumbnail-slider ul li:after{
display: none !important;
}
#thumbnail-slider ul li{
height: 200px !important;
width: 200px !important;
}
#<API key>::before, #<API key>::before{
border-left: 3px solid #00c894 !important;
border-top: 3px solid #00c894 !important;
}
#<API key>::before, #<API key>::before{
top: 26px !important;
}
#<API key>, #<API key>{
background: none !important;
border: 1px solid #ccc;
height: 75px !important;
border-radius: 30px;
}
.cust-name strong{
background: url('../../img/21.png') no-repeat top center;
padding-top: 15px;
font-size: 14px;
}
.categories ul li:first-child{
color: #0087b7;
text-transform: uppercase;
}
.contact#contact{
background: url('../../img/image2.jpg') no-repeat top center;
background-size: cover;
}
.contact h2{
background: url(../../img/19.png) no-repeat bottom center;
color: #fff;
}
/* checkbox style */
.middle-box .control {
position: relative;
display: inline-block;
cursor: pointer;
padding-left: 25px;
}
.control input {
position: absolute;
z-index: -1;
opacity: 0;
}
.control__indicator {
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 16px;
background: none;
border: 1px solid #ccc;
border-radius: 2px;
}
.control input:disabled ~ .control__indicator {
pointer-events: none;
opacity: .6;
background: #e6e6e6;
}
.control__indicator:after {
position: absolute;
display: none;
content: '';
}
.control input:checked ~ .control__indicator:after {
display: block;
}
.control--checkbox .control__indicator:after {
top: 1px;
left: 4px;
width: 4px;
height: 10px;
transform: rotate(45deg);
border: solid #dc5194;
border-width: 0 2px 2px 0;
}
.control--checkbox input:disabled ~ .control__indicator:after {
border-color: #7b7b7b;
}
/* checkbox style end*/
.blog h2{
background: url(../../img/18.png) no-repeat bottom center;
}
.footer h3{
background: url(../../img/footer-head-bottom.png) no-repeat bottom left;
}
.instant-backup{
background: url(../../img/inner-pages/6.jpg) no-repeat top center;
background-size: cover;
}
.customization{
background: url(../../img/inner-pages/driving2.jpg) no-repeat top center;
background-size: cover;
}
.compliance{
background: url(../../img/inner-pages/ms5.jpg) no-repeat top center;
background-size: cover;
}
.life-cycle{
background: url(../../img/inner-pages/driving5.jpg) no-repeat top center;
background-size: cover;
}
.encrypted-data{
background: url(../../img/inner-pages/9.jpg) no-repeat top center;
background-size: cover;
}
.business-use{
background: url(../../img/inner-pages/14.jpg) no-repeat top center;
background-size: cover;
}
.prohibit{
background: url(../../img/inner-pages/health2.jpg) no-repeat top center;
background-size: cover;
}
.dedicated-hardware{
background: url(../../img/inner-pages/health5.jpg) no-repeat top center;
background-size: cover;
}
.protecting-client{
background: url(../../img/inner-pages/protecting-bg.jpg) no-repeat top center;
background-size: cover;
}
.tech-protection{
background: url(../../img/inner-pages/tech-bg.jpg) no-repeat top center;
background-size: cover;
}
.adv-analytics{
background: url(../../img/inner-pages/fleet4.jpg) no-repeat top center;
background-size: cover;
}
.decoupling .content{
background: url(../../img/inner-pages/cloud_auto5.png) no-repeat top center;
background-size: cover;
}
.deployment .content{
background: url(../../img/inner-pages/cloud_auto7.png) no-repeat top center;
background-size: cover;
}
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
position: relative;
min-height: 1px;
padding-right: 10px;
padding-left: 10px;
}
.col-xs-15 {
width: 20%;
float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
width: 20%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-15 {
width: 20%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-15 {
width: 20%;
float: left;
}
}
.demo-1{
height: 800px;
position: relative;
}
.demo-1 .sl-slide-inner p{
color: #fff;
}
.demo-1 .sl-slide-inner a{
font-family:'Montserrat-Regular';
background: #0087b7;
color: #fff;
text-decoration: none;
text-transform: uppercase;
padding: 15px 40px;
display: inline-block;
margin-top: 20px;
font-size: 11px;
border-radius: 30px;
}
.demo-1 .sl-slider-wrapper {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
}
.demo-2 .sl-slider-wrapper {
width: 100%;
height: 600px;
overflow: hidden;
position: relative;
}
.demo-2 .sl-slider h2,
.demo-2 .sl-slider blockquote {
padding: 100px 30px 10px 30px;
width: 80%;
max-width: 960px;
color: #fff;
margin: 0 auto;
position: relative;
z-index: 100;
}
.demo-2 .sl-slider h2 {
font-size: 100px;
text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}
.demo-2 .sl-slider blockquote {
font-size: 28px;
padding-top: 10px;
font-weight: 300;
text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}
.demo-2 .sl-slider blockquote cite {
font-size: 16px;
font-weight: 700;
font-style: normal;
text-transform: uppercase;
letter-spacing: 5px;
padding-top: 30px;
display: inline-block;
}
.demo-2 .bg-img {
padding: 200px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
position: absolute;
top: -200px;
left: -200px;
width: 100%;
height: 100%;
-<API key>: cover;
-moz-background-size: cover;
background-size: cover;
background-position: center center;
}
/* Custom navigation arrows */
.nav-arrows span {
position: absolute;
z-index: 2000;
top: 50%;
width: 50px;
height: 50px;
text-indent: -90000px;
margin-top: -40px;
cursor: pointer;
}
.nav-arrows span:hover {
border-color: rgba(150,150,150,0.9);
}
.nav-arrows span.nav-arrow-prev {
left: 5%;
border-right: none;
border-top: none;
}
.nav-arrows span.nav-arrow-next {
right: 5%;
border-left: none;
border-bottom: none;
}
/* Custom navigation dots */
.nav-dots {
text-align: center;
position: absolute;
bottom: 25%;
height: 30px;
width: 100%;
left: 0;
z-index: 1000;
}
.nav-dots span {
display: inline-block;
position: relative;
width: 20px;
height: 20px;
border: 3px solid #fff;
border-radius: 50%;
margin: 3px;
/*background: #ddd;
background: rgba(150,150,150,0.4);*/
cursor: pointer;
/*box-shadow:
0 1px 1px rgba(255,255,255,0.4),
inset 0 1px 1px rgba(0,0,0,0.1);*/
}
.demo-2 .nav-dots span {
background: rgba(150,150,150,0.1);
margin: 6px;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
box-shadow:
0 1px 1px rgba(255,255,255,0.4),
inset 0 1px 1px rgba(0,0,0,0.1),
0 0 0 2px rgba(255,255,255,0.5);
}
.demo-2 .nav-dots span.nav-dot-current,
.demo-2 .nav-dots span:hover {
box-shadow:
0 1px 1px rgba(255,255,255,0.4),
inset 0 1px 1px rgba(0,0,0,0.1),
0 0 0 5px rgba(255,255,255,0.5);
}
.nav-dots span.nav-dot-current:after {
content: "";
position: absolute;
width: 15px;
height: 15px;
top: 0;
left: 0;
border-radius: 50%;
background: #fff;
}
/* Content elements */
.demo-1 .deco {
width: 260px;
height: 260px;
border: 2px dashed #ddd;
border: 2px dashed rgba(150,150,150,0.4);
border-radius: 50%;
position: absolute;
bottom: 50%;
left: 50%;
margin: 0 0 0 -130px;
}
.demo-1 [data-icon]:after {
content: attr(data-icon);
font-family: 'AnimalsNormal';
color: #999;
text-shadow: 0 0 1px #999;
position: absolute;
width: 220px;
height: 220px;
line-height: 220px;
text-align: center;
font-size: 100px;
top: 50%;
left: 50%;
margin: -110px 0 0 -110px;
box-shadow: inset 0 0 0 10px #f7f7f7;
border-radius: 50%;
}
.demo-1 .sl-slide h1 {
color: #fff;
text-shadow: 0 0 1px #000;
padding: 20px;
position: absolute;
font-size: 40px;
font-weight: 700;
/*letter-spacing: 13px;*/
text-transform: uppercase;
width: 80%;
left: 10%;
text-align: center;
line-height: 50px;
bottom: 50%;
/*margin: 0 0 -120px 0;*/
}
.demo-1 .sl-slide blockquote {
position: absolute;
width: 100%;
text-align: center;
left: 0;
font-weight: 400;
font-size: 14px;
line-height: 20px;
height: 70px;
color: #8b8b8b;
z-index: 2;
bottom: 50%;
margin: 0 0 -75px 0;
padding: 0;
border: none;
}
.demo-1 .sl-slide blockquote p{
font-family:'Montserrat-Hairline';
margin: 0 auto;
width: 65%;
position: relative;
line-height: 24px;
font-size: 16px;
}
.demo-1 .sl-slide blockquote cite {
font-size: 10px;
padding-top: 10px;
display: inline-block;
font-style: normal;
text-transform: uppercase;
letter-spacing: 4px;
}
/* Custom background colors for slides in first demo */
/* First Slide */
.demo-1 .bg-1 .sl-slide-inner,
.demo-1 .bg-1 .sl-content-slice {
/*background: #fff;*/
background: url(../../img/banner.jpg) no-repeat top center;
}
/* Second Slide */
.demo-1 .bg-2 .sl-slide-inner,
.demo-1 .bg-2 .sl-content-slice {
background: url(../../img/banner1.jpg) no-repeat top center;
}
.demo-1 .bg-2 [data-icon]:after,
.demo-1 .bg-2 h2 {
color: #fff;
}
.demo-1 .bg-2 blockquote:before {
color: #222;
}
/* Third Slide */
.demo-1 .bg-3 .sl-slide-inner,
.demo-1 .bg-3 .sl-content-slice {
background: #db84ad;
}
.demo-1 .bg-3 .deco {
border-color: #fff;
border-color: rgba(255,255,255,0.5);
}
.demo-1 .bg-3 [data-icon]:after {
color: #fff;
text-shadow: 0 0 1px #fff;
box-shadow: inset 0 0 0 10px #b55381;
}
.demo-1 .bg-3 h2,
.demo-1 .bg-3 blockquote{
color: #fff;
text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
.demo-1 .bg-3 blockquote:before {
color: #c46c96;
}
/* Forth Slide */
.demo-1 .bg-4 .sl-slide-inner,
.demo-1 .bg-4 .sl-content-slice {
background: #5bc2ce;
}
.demo-1 .bg-4 .deco {
border-color: #379eaa;
}
.demo-1 .bg-4 [data-icon]:after {
text-shadow: 0 0 1px #277d87;
color: #277d87;
}
.demo-1 .bg-4 h2,
.demo-1 .bg-4 blockquote{
color: #fff;
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.demo-1 .bg-4 blockquote:before {
color: #379eaa;
}
/* Fifth Slide */
.demo-1 .bg-5 .sl-slide-inner,
.demo-1 .bg-5 .sl-content-slice {
background: #ffeb41;
}
.demo-1 .bg-5 .deco {
border-color: #ECD82C;
}
.demo-1 .bg-5 .deco:after {
color: #000;
text-shadow: 0 0 1px #000;
}
.demo-1 .bg-5 h2,
.demo-1 .bg-5 blockquote{
color: #000;
text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.demo-1 .bg-5 blockquote:before {
color: #ecd82c;
}
.demo-2 .bg-img-1 {
background-image: url(../images/1.jpg);
}
.demo-2 .bg-img-2 {
background-image: url(../images/2.jpg);
}
.demo-2 .bg-img-3 {
background-image: url(../images/3.jpg);
}
.demo-2 .bg-img-4 {
background-image: url(../images/4.jpg);
}
.demo-2 .bg-img-5 {
background-image: url(../images/5.jpg);
}
/* Animations for content elements */
.sl-trans-elems .deco{
-webkit-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
-moz-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
-o-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
-ms-animation: roll 1s ease-out both, fadeIn 1s ease-out both;
animation: roll 1s ease-out both, fadeIn 1s ease-out both;
}
.sl-trans-elems h2{
-webkit-animation: moveUp 1s ease-in-out both;
-moz-animation: moveUp 1s ease-in-out both;
-o-animation: moveUp 1s ease-in-out both;
-ms-animation: moveUp 1s ease-in-out both;
animation: moveUp 1s ease-in-out both;
}
.sl-trans-elems blockquote{
-webkit-animation: fadeIn 0.5s linear 0.5s both;
-moz-animation: fadeIn 0.5s linear 0.5s both;
-o-animation: fadeIn 0.5s linear 0.5s both;
-ms-animation: fadeIn 0.5s linear 0.5s both;
animation: fadeIn 0.5s linear 0.5s both;
}
.sl-trans-back-elems .deco{
-webkit-animation: scaleDown 1s ease-in-out both;
-moz-animation: scaleDown 1s ease-in-out both;
-o-animation: scaleDown 1s ease-in-out both;
-ms-animation: scaleDown 1s ease-in-out both;
animation: scaleDown 1s ease-in-out both;
}
.sl-trans-back-elems h2{
-webkit-animation: fadeOut 1s ease-in-out both;
-moz-animation: fadeOut 1s ease-in-out both;
-o-animation: fadeOut 1s ease-in-out both;
-ms-animation: fadeOut 1s ease-in-out both;
animation: fadeOut 1s ease-in-out both;
}
.sl-trans-back-elems blockquote{
-webkit-animation: fadeOut 1s linear both;
-moz-animation: fadeOut 1s linear both;
-o-animation: fadeOut 1s linear both;
-ms-animation: fadeOut 1s linear both;
animation: fadeOut 1s linear both;
}
@-webkit-keyframes roll{
0% {-webkit-transform: translateX(500px) rotate(360deg);}
100% {-webkit-transform: translateX(0px) rotate(0deg);}
}
@-moz-keyframes roll{
0% {-moz-transform: translateX(500px) rotate(360deg); opacity: 0;}
100% {-moz-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-o-keyframes roll{
0% {-o-transform: translateX(500px) rotate(360deg); opacity: 0;}
100% {-o-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-ms-keyframes roll{
0% {-ms-transform: translateX(500px) rotate(360deg); opacity: 0;}
100% {-ms-transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@keyframes roll{
0% {transform: translateX(500px) rotate(360deg); opacity: 0;}
100% {transform: translateX(0px) rotate(0deg); opacity: 1;}
}
@-webkit-keyframes moveUp{
0% {-webkit-transform: translateY(40px);}
100% {-webkit-transform: translateY(0px);}
}
@-moz-keyframes moveUp{
0% {-moz-transform: translateY(40px);}
100% {-moz-transform: translateY(0px);}
}
@-o-keyframes moveUp{
0% {-o-transform: translateY(40px);}
100% {-o-transform: translateY(0px);}
}
@-ms-keyframes moveUp{
0% {-ms-transform: translateY(40px);}
100% {-ms-transform: translateY(0px);}
}
@keyframes moveUp{
0% {transform: translateY(40px);}
100% {transform: translateY(0px);}
}
@-webkit-keyframes fadeIn{
0% {opacity: 0;}
100% {opacity: 1;}
}
@-moz-keyframes fadeIn{
0% {opacity: 0;}
100% {opacity: 1;}
}
@-o-keyframes fadeIn{
0% {opacity: 0;}
100% {opacity: 1;}
}
@-ms-keyframes fadeIn{
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn{
0% {opacity: 0;}
100% {opacity: 1;}
}
@-webkit-keyframes scaleDown{
0% {-webkit-transform: scale(1);}
100% {-webkit-transform: scale(0.5);}
}
@-moz-keyframes scaleDown{
0% {-moz-transform: scale(1);}
100% {-moz-transform: scale(0.5);}
}
@-o-keyframes scaleDown{
0% {-o-transform: scale(1);}
100% {-o-transform: scale(0.5);}
}
@-ms-keyframes scaleDown{
0% {-ms-transform: scale(1);}
100% {-ms-transform: scale(0.5);}
}
@keyframes scaleDown{
0% {transform: scale(1);}
100% {transform: scale(0.5);}
}
@-webkit-keyframes fadeOut{
0% {opacity: 1;}
100% {opacity: 0;}
}
@-moz-keyframes fadeOut{
0% {opacity: 1;}
100% {opacity: 0;}
}
@-o-keyframes fadeOut{
0% {opacity: 1;}
100% {opacity: 0;}
}
@-ms-keyframes fadeOut{
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut{
0% {opacity: 1;}
100% {opacity: 0;}
}
/* Inner Pages */
.cloud-inner h2{
/*background: url(../../img/bottom-border.jpg) no-repeat bottom left;*/
}
/* Media Queries for custom slider */
@media screen and (min-width: 992px) and (max-width: 1199px) {
.navbar-default .navbar-nav>li>a {
padding: 20px 10px;
}
section.cloud-inner .remote-backup .image .img-border {
left: 0;
height: 370px;
width: 370px;
}
section.cloud-inner .remote-backup .image img {
height: 330px;
width: 385px;
}
section.cloud-inner .remote-backup.breach h3 {
margin: 20px 0;
}
section.cloud-inner .cloud-storage.decoupling .content {
left: 20%;
padding: 50px 30px 20px;
}
section.cloud-inner .instant-backup.deployment .content {
padding: 100px 200px 30px;
top: -100px;
}
section.cloud-inner .remote-backup.learn-history .content-block {
padding: 20px 20px 20px 80px;
}
section.cloud-inner .remote-backup.learn-history .content-block img {
height: 55%;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.navbar-default .navbar-nav>li>a {
padding: 20px 6px;
font-size: 9px;
}
section.cloud-inner .remote-backup .image .img-border {
left: 0;
height: 250px;
width: 250px;
}
section.cloud-inner .remote-backup .image img {
height: 230px;
width: 270px;
}
section.cloud-inner .cloud-storage.decoupling .content {
left: 15%;
padding: 50px 10px 20px;
}
section.cloud-inner .cloud-storage.decoupling h3 {
font-size: 24px;
margin-bottom: 0;
}
section.cloud-inner .cloud-storage.decoupling p {
font-size: 12px;
}
section.cloud-inner .instant-backup.deployment .content {
padding: 120px 50px 50px;
top: -95px;
}
section.cloud-inner .remote-backup.breach h3 {
margin: 0 0 20px;
font-size: 20px;
}
section.cloud-inner .remote-backup.learn-history .content-block {
border: 10px solid #0086bb;
padding: 20px;
}
section.cloud-inner .remote-backup.learn-history .content-block img {
position: relative;
transform: translate(0);
top: 50%;
height: auto;
}
section.cloud-inner .remote-backup.history .year p {
position: relative;
}
section.cloud-inner .remote-backup.history .history-inner .image {
top: 0;
}
section.cloud-inner .remote-backup.history .history-inner .text {
padding: 20px 40px 20px 20px;
}
section.cloud-inner .remote-backup.history.img-left .text {
padding: 20px 20px 20px 40px;
}
.choose_slider_items .next_hidden {
left: 400px;
}
.choose_slider_items .current_item img {
width: 100%;
}
}
@media screen and (max-width: 767px) {
.row-eq-height{
display: block;
}
.navbar-custom .navbar-nav{
background: #000;
}
.demo-1 .sl-slide h2, .demo-1 .sl-slide blockquote{
bottom: 50%;
}
.scroller,.categories{
display: block;
}
.demo-1 {
height: 600px;
}
.nav-dots{
bottom: 30px;
}
#portfolio p {
padding: 0 15px;
}
.tab-box{
text-align: center;
}
.success h4 {
background: url(../../img/small-border.png) no-repeat bottom center;
}
.contact .row.control-group{
margin: 0;
}
.divider{
display: none;
}
.footer-below .col-md-6{
text-align: center !important;
}
.footer-below a {
margin-top: 20px;
}
.blog p {
font-size: 15px;
margin-bottom: 30px;
}
section.cloud-inner .inner-banner h1 {
padding-bottom: 10px;
line-height: 25px;
font-size: 20px;
margin-top: 0;
}
section.cloud-inner .inner-banner .banner-txt h2 {
font-size: 18px;
}
section.cloud-inner .inner-banner .banner-txt{
padding-bottom: 20px;
}
section.cloud-inner p, section.cloud-inner .top-statement p, section.cloud-inner ul li{
font-size: 14px;
}
section.cloud-inner .top-statement p {
line-height: 20px;
}
section.cloud-inner .top-statement p {
line-height: 20px;
}
section.cloud-inner h3 {
padding: 5px;
font-size: 15px;
line-height: 20px;
}
section.cloud-inner .remote-backup .image .img-border {
display: none;
}
section.cloud-inner .remote-backup .image img {
border: 5px solid #0086bb;
}
section.cloud-inner .cloud-storage,section.cloud-inner .remote-backup, section.cloud-inner .instant-backup {
padding: 20px 0;
}
section.cloud-inner .remote-backup.physical-protection img, section.cloud-inner .instant-backup.tech-protection img {
width: auto;
}
section.cloud-inner .cloud-storage.decoupling .content {
position: relative;
left: 0;
bottom: 0;
top: 0;
padding: 20px;
right: 0;
background: #0086ba;
}
section.cloud-inner .cloud-storage.decoupling {
background: #edf2f5;
padding-top: 0;
}
section.cloud-inner .cloud-storage.decoupling .scale {
margin-top: 0px;
}
section.cloud-inner .top-statement.middle-content {
margin: 0;
}
section.cloud-inner .instant-backup.deployment .content {
padding: 20px;
top: 0;
background: #0086ba;
}
section.cloud-inner .remote-backup.architecture .block .image img {
border: none;
}
section.cloud-inner .remote-backup.learn-history .content-block {
border: 10px solid #0086bb;
padding: 20px;
}
section.cloud-inner .remote-backup.learn-history .content-block img {
position: relative;
transform: translate(0);
top: 50%;
height: auto;
}
section.cloud-inner .remote-backup.history .history-inner .image {
position: relative;
left: 0;
right: 0;
top: 0;
width: 50%;
}
section.cloud-inner .remote-backup.history .history-inner .text {
padding: 20px;
width: 100%;
}
section.cloud-inner .remote-backup.history .year p{
position: relative;
transform: rotate(0);
right: 0;
left: 0;
}
section.cloud-inner .remote-backup.history.img-left .year p{
left: 0;
}
.year{
text-align: center;
}
.history{
border-bottom: 1px solid #00b9e8;
margin-bottom: 20px;
}
section.cloud-inner .remote-backup.changable .corner-img {
margin: 20px 0;
}
section.cloud-inner .remote-backup.changable .tabs ul {
border: none;
text-align: center;
}
section.cloud-inner .remote-backup.changable .tabs ul li {
border-bottom: 1px solid #0086bb;
box-shadow: 1px 1px 1px 1px #ccc;
padding: 10px;
}
section.cloud-inner .remote-backup.changable .text {
padding: 20px 0;
background: #fff;
margin-top: 0;
border: 1px solid #ccc;
}
.choose_slider {
height: auto!important;
}
}
@media screen and (min-width: 481px) and (max-width: 767px) {
section.cloud-inner img, section.cloud-inner .remote-backup .image img {
width: 50%;
height: auto;
}
section.cloud-inner .remote-backup .choose_slider_items img {
width: 100%;
}
section.cloud-inner .remote-backup .choose_slider_items .current_item img {
width: 50%;
}
.choose_slider_items .current_item {
display: block;
position: relative;
left: 0;
width: auto;
}
.choose_slider_items .next_hidden {
right: -50px;
left: auto;
}
.choose_slider_items .previous_hidden{
left: -50px;
}
.remote-backup.changable .tabs{
margin-top: 80px;
}
}
@media screen and (max-width: 480px) {
.demo-1 .sl-slide h2{
font-size: 30px;
}
#portfolio h2, .success h2, .customers h2, .contact h2, .blog h2, .cloud-inner h2 {
font-size: 35px;
}
section.cloud-inner .top-statement {
padding: 15px 10px;
}
.logo img{
width: 60%;
}
.blog .carousel-indicators {
bottom: -45px;
}
section.cloud-inner img, section.cloud-inner .remote-backup .image img {
width: 100%;
height: auto;
}
.current_item, .previous_hidden, .next_hidden{
position: relative !important;
left: 0 !important;
top: 0 !important;
}
}
/*slider start*/
.transparent-layer{
position: absolute;
background: rgba(0, 0, 0, 0.7);
height: 100%;
width: 91%;
}
.clicked .transparent-layer{
display: none;
}
.carousel{
margin-bottom:2%;
}
.tech-protection .carousel {
margin: 20px;
padding: 10px 0;
}
.carousel-inner {
margin-bottom:10%;
}
.carousel-indicators {
position: absolute;
bottom: -15%;
left: 50%;
z-index: 15;
width: 60%;
padding-left: 0;
margin-left: -30%;
text-align: center;
list-style: none;
}
.cust-slider .slide1{
cursor: pointer;
}
.tech-protection .carousel-indicators {
bottom: 0;
left: 0;
width: 100%;
margin-left: 0;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #fff \9;
background-color: rgba(255, 255, 255, 0);
border: 1px solid #ff0000;
border-radius: 10px;
}
.tech-protection .carousel-indicators li {
width: 15px;
height: 15px;
background-color: #ccc;
border: 1px solid #ccc;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #ff0000;
}
.tech-protection .carousel-indicators .active {
width: 15px;
height: 15px;
margin: 1px;
background-color: #fff;
border: 1px solid #fff;
}
.carousel-control{
cursor:pointer;
}
.carousel-inner .active.left{
left: -25%;
}
.carousel-inner .next{
left:25%;
}
.carousel-inner .prev{
left:-25%;
}
.carousel-control{
width:4%;
}
.carousel-control.left{
margin-left:0;
background-image:none;
}
.carousel-control.right{
margin-right:0;
background-image:none;
}
.thumb-inner .thumb2-inner{
background:#fff;
}
.cust-slider .item a{
display: block;
}
.cust-slider .item img{
display: block;
margin: auto;
height: 100%;
}
/*Display Carousel Controls on hover*/
.carousel:hover .carousel-control{
display:block;
}
#thumb-inner > .item{
position:relative;
overflow:hidden;
}
#thumb-inner > .item > a img{
position:relative;
overflow:hidden;
}
.caption{
display:none;
position:absolute;
top:0;
left:5.5%;
right:2%;
bottom:0;
background:rgba(0, 0, 0, 0.65);
color:#fff !important;
margin-top:0;
z-index:1000;
padding-left:2%;
padding-right:2%;
text-align:center;
}
.caption p{
padding:2%;
}
.carousel > .thumb-inner{
width:90%;
position:relative;
left:0;
right:0;
margin:auto;
}
.<API key>{
position:relative;
float:none;
margin:2% auto;
width:80%;
background:#444;
}
.<API key>{
position:relative;
float:none;
margin:0 auto;
width:90%;
background:#444;
text-align:center;
}
.<API key> a > img{
position:relative;
left:65%;
margin:0 auto;
float:none;
text-align:center;
border:#fff solid 1px;
}
.<API key> .active{
opacity:.5;
border:#f00 solid 1px;
}
.nav-carousel{
padding-bottom:0%;
width: 90%;
z-index:101;
-webkit-transition: all 3s ease-in-out;
transition: all 3s ease-in-out;
float:none;
margin:0 5%;
height:auto;
position:absolute;
top:100%;
bottom:0;
border-bottom: .5px #ededed solid;
border-top: .5px #ededed solid;
}
.nav-carousel li{
background:#000;
}
.nav-carousel li > a{
color:#f00;
font-weight:800;
}
.nav-carousel li > a:hover{
background:#f00;
color:#fff;
}
.carousel-border{
border-right:2px solid #fff;
}
.nav-carousel > .active > a, .nav-carousel > .active > a:hover, .nav-carousel > .active > a:focus, #carousel a:hover, #carousel a:focus{
background-color: #ff0000;
color: #fff;
outline:none;
cursor:pointer;
}
.nav-carousel.affix{
width: 100%;
position: static;
z-index:101;
height:auto;
padding-bottom:0%;
}
.nav-carousel > li{
z-index:100;
padding-bottom:0%;
}
.carousel-control{
opacity: 1;
}
.carousel-control img{
position: relative;
top: 32%;
}
/* slider end */
.heading-area h2:after{position: absolute; width:120px; height:3px;
background:#fff; bottom:-18px; margin:0 auto; content: ''; left: 0; right: 0}
.map-area{position: relative; background-size: cover;}
.map-area:before{content: ''; position: absolute; background: rgba(0, 0, 0, 0.2);
width: 100%; height: 100%; z-index: 7777; }
.contant-left h4:after{
content: '';
position: absolute;
background: #0086bb;
height: 4px;
width: 55px;
display: block;
margin-top: 10px;
}
.<API key> h2::after {
background: #fff none repeat scroll 0 0;
bottom: -11px;
content: "";
height: 2px;
left: 0;
margin: 0 auto;
position: absolute;
right: 0;
width: 60%;
}
.mobile-v{display: none;}
.contact-info-sec1{background:#007CAC; padding: 10px; margin-bottom: 25px;}
.contact-info-sec1 .<API key>{background:#0086BB; padding: 29px 0; text-align:center;}
.contact-info-sec1 .<API key> h2{color:#fff; font-family:OpenSans-Regular; font-size:21px; position:relative;}
.contact-info-main ul{margin:0; padding:0;}
.contact-info-main li{margin:0; padding:0; display:inline-block; list-style:none; width:35px;
height:35px;}
.contact-info-main img{max-width:100%;}
.team-heading{background: url(../../img/team-bg.jpg) no-repeat center; position: relative;}
.team-heading h2{z-index: 9999;}
.team-heading:after{background: rgba(0, 144, 194, 0.8); position: absolute;
width: 100%; height: 100%; content: ''; top: 0; z-index: 5;
}
.grey-graphics{position:absolute; left:0; top:54px; z-index: -1; left: 38px;}
.grey-graphics img{max-width: 80%;}
.relative{position:relative;}
.grey-box{min-height: 400px;}
.grey-box h2{font-weight: 600; text-transform: none; font-family: 'OpenSans-Regular';}
.grey-box p{font-size:14px; color:#000; font-family: 'OpenSans-Regular'}
.first-step{padding-bottom:70px;}
.teams-cabin{background: #F7F7F7; padding: 25px 0;}
.align-center{text-align: center;}
.teams-cabin h2{font-weight: 600; text-transform: none; font-family: 'OpenSans-Regular';}
.teams-cabin p{font-size: 13px; font-family: 'OpenSans-Regular'}
.two-colum{padding-top:64px;}
.blue-box{background: #0086BB; min-height: 400px; padding: 23px;}
.blue-box a{color: #41C4F2;}
.blue-box p{color: #fff; font-size: 21px;}
.white-box{background: #fff; -moz-box-shadow: 0 0 5px #e1e1e1;
-webkit-box-shadow: 0 0 5px#e1e1e1;
box-shadow: 0 0 5px #e1e1e1; margin-bottom: 20px;}
.team-person{padding-bottom: 5px; max-height: 188px;}
.team-person-info{padding: 2px 0; text-align: center;}
.team-person-info h5{font-weight: 300; margin: 0; padding: 0; text-transform: none;
font-family: 'OpenSans-Regular'; color: #000;
}
.team-person img{max-width: 100%;}
.team-person-info p{font-size: 11px;}
.arrow-lft{background: url(../../img/lft-arrow.jpg) no-repeat left; padding-left: 24px;}
.grey-box{background: #F0F0F0; padding: 25px 40px;}
.our-team-page{padding: 40px 0;}
#mainNav.blog-nav{position:absolute; width:100%; background-color:transparent;}
.blog-banner{background: url(../../img/blog-banner.jpg) no-repeat top;
background-size: cover;}
.blog-area-main h2{font-weight: 600; text-transform: none; font-family: 'OpenSans-Regular';
font-size: 27px; height: 55px;}
.blog-area-main h3{font-weight: 600; text-transform: none; font-family: 'OpenSans-Regular';
font-size: 20px; margin-bottom: 20px; font-weight: 600;}
.blog-area-main p{font-family: 'OpenSans-Regular'; font-size: 16px;}
.love{background: url(../../img/love.png) no-repeat left; padding-left: 20px;}
.chat{background: url(../../img/chat.png) no-repeat left; padding-left: 20px;}
.love1{background: url(../../img/love-white.png) no-repeat left; padding-left: 20px;}
.chat1{background: url(../../img/chat-white.png) no-repeat left; padding-left: 20px;}
.blog-box-main ul li a{color: #333;}
.blog-side-pic {margin-top: 50px; position: relative; margin-bottom: 25px;}
.blog-side-txt{position: absolute; width: 100%; bottom: 0; padding: 25px;}
.blog-side-txt p{color: #fff; font-size: 19px; }
.blog-side-pic img{max-width: 100%;}
.blog-graphics img{max-width: 100%;}
.blog-pull-area {
font-family: OpenSans-Regular;
margin-bottom: 40px;
/*min-height: 2792px;*/
/*min-height: 1050px;*/
padding: 15px;
position: relative;
width: 100%;
}
.x-recent-posts-img img{border: 1px solid #ccc;}
.blog-graphics{margin-top: 50px;}
.blog-graphics-main{margin-top: 50px; margin-bottom: 50px;}
.blog-area-main img{max-width: 100%;}
.blog-left2-pic{margin-bottom: 25px;}
.blog-left2-main p{color: #747474}
.blog-right h2{margin-top: 0;}
.testimonial-part{background: url(../../img/coma.png) no-repeat #F8F8F8 left 10px top 10px;
font-family: 'OpenSans-Regular'; font-size: 18px; color: #333333;}
.testimonial-name{font-size: 16px; color: #000; padding-top: 15px;}
.blog-share ul li{font-family: 'OpenSans-Regular'; font-weight: 600;}
.comment-sec{ padding-top:40px;}
.comment-head{text-align:center; padding-top:40px; font-family: 'OpenSans-Regular'; font-weight: 600;
font-size: 21px; font-weight: 600; padding-bottom: 30px;
}
.comment-head span{font-weight: 300;}
.comment-block{border-top: 1px solid #eee; padding: 20px; font-family: 'OpenSans-Regular';
font-size: 14px;
}
.blog-commenter{text-align: center; width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
border: 1px solid #ccc;
}
.single-block{padding: 20px 0; }
.clock{background: url(../../img/clock-icon.png) no-repeat left;
padding-left: 20px; margin-left: 30px; color: #999999;}
.blog-commenter-head{font-family: 'OpenSans-Regular'; font-size: 17px; padding-bottom: 10px;}
.reply-sec{background: #F8F8F8; overflow: hidden; padding-bottom: 50px;}
a.reply{color: #E6E6E6;}
.single-block .form-control{border: none; min-height: 100px; resize: none;}
.add-comment{background: #0087B8; color: #fff; border-radius: 5px;
padding: 8px 15px; border: none; float: right; margin-top: 15px;}
.blog-banner{text-align: center; position: relative; min-height: 616px;}
.banner-txt{position: absolute; left: 0; right: 0; top: 30%; z-index: 9999;
color: #fff; font-size: 46px; font-family:'OpenSans-Regular'; text-transform: uppercase;}
.blog-side-txt ul {
margin: 0;
padding: 0;
}
.blog-side-txt ul li {
display: inline-block;
list-style: outside none none;
margin-right: 20px;
}
.blog-side-txt ul li a {
color: #fff !important;
}
.blog-area-main{
<API key>:10px;
<API key>:10px;
}
.blog-point{margin:0; padding:0;}
.blog-point ol{margin:0; padding:13px;}
.blog-point ol li{margin-bottom: 7px; font-size: 15px;}
.blog-normal-list ul{margin: 0; padding: 10px 0 !important;}
.blog-normal-list ul li {
background: rgba(0, 0, 0, 0) url("../../img/right-arrow.png") no-repeat scroll left top 2px;
font-size: 14px;
padding: 0 0 4px 23px;
display: block !important;
}
.blog-logo{padding-top: 20px;}
pre {
border-radius: 4px;
display: block;
font-size: 1.15em;
line-height: 1.7;
margin: 20px 0;
padding: 0.786em 1.071em;
white-space: pre-wrap;
word-break: break-all;
word-wrap: break-word;
}
.put-comments{box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6)}
/*.inner-banner{height: 500px; overflow: hidden; text-align: center;}*/
.h-about-the-author {
border-bottom: 1px solid #f2f2f2;
color: #ccc;
font-size: 1.2rem;
font-weight: 300;
letter-spacing: 1px;
margin: 0 0 0.925em;
padding-bottom: 0.45em;
text-transform: uppercase;
}
.tweet-me{margin-right: 10px; margin-bottom: 15px;}
.tweet-me a{color: #0087B8}
.google-me a{color: #0087B8}
.h-feature-headline span i {
background-color: #272727;
border-radius: 100em;
color: #fff;
float: left;
font-size: 1em;
height: 2em;
line-height: 2em;
margin-right: 0.25em;
text-align: center;
width: 2em;
}
.about-author h4{margin: 0}
.related-blog img{width: 100%; margin-bottom: 4px; border: 1px solid #ccc;
padding: 2px;
}
.related-blog a{color: #0087B8}
.relative-area iframe{width: 100%; height: 415px;}
a{color: #0087B8}
.easy-table-cuscosky thead th, .easy-table-cuscosky tfoot th {
background: #e6edf5 none repeat scroll 0 0;
color: #4f76a3;
font-size: 100% !important;
text-align: center;
}
table.easy-table-cuscosky, .easy-table-cuscosky th, .easy-table-cuscosky td {
border: 1px solid #d4e0ee;
border-collapse: collapse;
color: #555;
font-family: "Trebuchet MS",Arial,sans-serif;
}
.easy-table-cuscosky td, .easy-table-cuscosky th {
padding: 4px;
}
.x-dropcap {
background-color: #ed6933;
border-radius: 4px;
color: #fff;
display: block;
float: left;
font-size: 3.3em;
font-weight: bold;
line-height: 1;
margin: 0.175em 0.215em 0 0;
padding: 0.105em 0.2em 0.135em;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.x-recent-posts a {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 3px;
box-shadow: 0 0.125em 0.275em 0 rgba(0, 0, 0, 0.075);
color: #999;
display: block;
margin: 0 4% 0 0;
overflow: hidden;
padding: 5px 5px 0;
transform: translate3d(0px, 0px, 0px);
}
.blog .blog-details ul li:first-child{border: none;}
.blog-area-main h2 span{padding-top: 12px; vertical-align: middle;}
.blog-sample-txt{/*height: 129px; */max-height: 140px !important;
overflow-y: hidden;}
.blog-sample-heading{height: 50px;}
@media screen and (max-width: 991px) {
.team-person {
max-height: 199px;
padding-bottom: 5px;
text-align: center;
}
.main-pull-area .blog-area-main{position: relative;}
.main-pull-area .blog-area-main .blog-box{margin-top: 25px;}
}
@media screen and (max-width: 767px) {
.mobile-v{display: block;}
.contact-info-sec{display: none;}
.blog-side-pic img{width: 100%;}
.blog-left2-pic img{width: 100%;}
.banner-txt{font-size: 36px;}
}
@media screen and (max-width: 480px) {
.banner-txt{font-size: 26px;}
.blog-banner{min-height: 498px;}
} |
# {%METHOD%} {%Name%} - {%OpName%}
## Description
{%Name%} represents a thing that does something.
{%OpName%} will do xyz and return something.
## Parameters
| Parameter | Type | Opt? | Description |
|
| a | Num | No | Set a |
## Filters
Filters are passes as query or post params. The following filters are allowed.
| Parameter | Description | Example |
|
| order | Sort the list by the given key. Specify - for descending, + or blank for ascending. | order=+name
| rel | True/false. Include related objects. | rel=true
## Response
Returns the following keys.
| Field | Type | Description |
|
| id | Num | |
Example response:
HTTP/1.1 200 OK
Content-type: text/json
Content-length: 000
{"{%name%}": {"a": 123}}
## Errors
Errors may be returned for missing or unexpected fields or fields with an invalid value.
Additionally the following errors may be returned:
| Field | Error | Description |
|
| id | IdentifierInUse | The given ID is not unique. | |
package net.bensdeals.util;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class StringUtil {
private static final int BUFFER_SIZE = 4096;
public static FileInputStream responseAsStream(String filename) throws IOException {
if (!filename.endsWith(".xml")) {
filename += ".xml";
}
File file = new File("test/responses", filename);
return new FileInputStream(file);
}
public static String fromStream(InputStream inputStream) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream), BUFFER_SIZE);
StringBuilder stringBuilder = new StringBuilder();
String line;
try {
while ((line = reader.readLine()) != null) {
ALog.i(line);
stringBuilder.append(line);
}
} finally {
inputStream.close();
}
return stringBuilder.toString();
}
} |
<main class="<?php echo $config['grid']['main'] ?>">
<section>
<h1>Web shop: Simple administration interface for categories and products data</h1>
<h2>
<a href="https://codeweek.eu" title="CodeWeek">CodeWeek.eu</a>
</h2>
<h3 class="text-center">October 17th - October 21st 2016</h3>
<ul class="logos-list v-align-parent">
<li class="v-align-child">
<a href="http:
<img src="images/shoutem_logo_blue.jpg" alt="www.shoutem.com"></a>
</li>
<li class="v-align-child">
<a href="http:
<img src="images/ofir-logo-bijeli.png" alt="www.ofir.hr"></a>
</li>
<li class="v-align-child">
<a href="https://inchoo.net" title="Inchoo" class="thumbnail">
<img src="images/inchoo.png" alt="inchoo.net"></a>
</li>
<li class="v-align-child">
<a href="http:
<img src="images/COBE_Logo.png" alt="www.cobeisfresh.com"></a>
</li>
<li class="v-align-child">
<a href="http://web.ffos.hr/" title="FFOS" class="thumbnail">
<img src="images/ffos.png" alt="web.ffos.hr"></a>
</li>
</ul>
</section>
</main> |
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> <?php echo $title;?></title>
<link rel="stylesheet" href="<?php echo base_url();?>application/assets/css/bootstrap.css" />
<link rel="stylesheet" href="<?php echo base_url();?>application/assets/css/font-awesome.min.css" />
<link rel="stylesheet" href="<?php echo base_url();?>application/assets/css/app.css" /> |
module Fetchable
class Fetcher
def self.deep_fetch(fetchable, url, redirect_chain, options)
headers = Hashie::Mash.new
headers['if-none-match'] = fetchable.etag if fetchable.etag.present?
headers['if-modified-since'] = fetchable.last_modified.rfc2822 if fetchable.last_modified.present?
options = Hashie::Mash.new(read_timeout: 60, connect_timeout: 10).merge(options)
resp = Excon.get url, {
headers: headers,
omit_default_port: true,
read_timeout: options.read_timeout,
connect_timeout: options.connect_timeout
}
# second chance if failed
# try without headers this time
# (particularly because there seems to be a side
# effect of headers hash -
if (400...499).include?(resp.status)
resp = Excon.get url, {
omit_default_port: true,
read_timeout: options.read_timeout,
connect_timeout: options.connect_timeout
}
end
if [301,302,303].include?(resp.status) and redirect_chain.size <= options.redirect_limit
new_url = resp.headers['location']
if URI.parse(new_url).relative?
old_url = Addressable::URI.parse(url)
port = '' if [old_url.port, old_url.scheme] == [80, 'http'] || [old_url.port, old_url.scheme] == [443, 'https']
new_url = "#{old_url.scheme}://#{old_url.host}:#{port}#{resp.headers['location']}"
end
# Use URI.parse() instead of raw URL because raw URL string includes
# unnecessary :80 and :443 port number
redirect_chain << { url: URI.parse(new_url).to_s, status_code: resp.status }
return self.deep_fetch(fetchable, new_url, redirect_chain, options)
end
[resp, options, redirect_chain]
end
end
end |
export * from './services.module';
export * from './util.service';
export * from './timelog.service';
export * from './error.service'; |
\begin{figure}
\tikzsetnextfilename{succ-triangolo}
\centering
\begin{tikzpicture}
\begin{axis}[
enlargelimits,
legend pos=outer north east,
axis x line=bottom,axis y line=middle,
xmin=0,xmax=2.2,ymin=-0.1,ymax=5,ytick={0},xtick={2}
]
\addplot [color=black!15!white] coordinates {(0,0) (1/1,1) (2/1,0)};
\addplot [color=black!30!white] coordinates {(0,0) (1/2,2) (2/2,0)};
\addplot [color=black!45!white] coordinates {(0,0) (1/3,3) (2/3,0)};
\addplot [color=black!60!white] coordinates {(0,0) (1/4,4) (2/4,0)};
\addplot [very thick,color=black,domain=0:2] {0};
\node [pin=45:{$\scriptstyle\left(\frac1{n},n\right)$}] at (axis cs:1,1) {};
\node [pin=120:{$\scriptstyle\left(\frac2{n},0\right)$}] at (axis cs:2,0) {};
\legend{$n=1$,$n=2$,$n=3$,$n=4$,$f(x)$}
\end{axis}
\end{tikzpicture}
\caption{La successione dell'esempio 3, in $[0,2]$, forma un triangolo di area 1 con l'asse delle ascisse, indipendentemente dal valore di $n$. L'altezza del triangolo aumenta infinitamente al crescere di $n$, mentre la base tende a zero.}
\label{fig:succ_triangolo}
\end{figure} |
function Assert-ROWComponent {
<
.SYNOPSIS
Ensures that the RES ONE Workspace component is installed.
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[ValidateSet('Agent','Console','RelayServer')]
[System.String] $Component
)
process {
if (-not (<API key> -Component $Component)) {
throw ($localizedData.<API key> -f $Component);
}
} #end process
} #end function Assert-ROWComponent |
<?php
namespace Lmi\Bundle\SchoolBundle\Form\Map;
use DateTime;
use Lmi\Bundle\SchoolBundle\Entity\Image;
use Lmi\Bundle\SchoolBundle\Entity\News;
use Lmi\Bundle\SchoolBundle\Form\Type\ImageType;
use Symfony\Component\HttpFoundation\File\File;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* @author Dmitry Landa <dmitry.landa@yandex.ru>
*/
class NewsMap
{
/**
* @var string
*/
private $title;
/**
* @var string
*/
private $content;
/**
* @var DateTime
*/
private $showDate;
/**
* @var array
*/
private $images;
/**
* @var string
*/
private $author;
/**
* @var array
*/
private $currentImages = array();
/**
* @param string $content
* @return NewsMap
*/
public function setContent($content)
{
$this->content = $content;
return $this;
}
/**
* @return string
*/
public function getContent()
{
return $this->content;
}
/**
* @param mixed $images
* @return NewsMap
*/
public function setImages($images)
{
$this->images = $images;
return $this;
}
/**
* @return mixed
*/
public function getImages()
{
return $this->images;
}
/**
* @return array
*/
public function getCurrentImages()
{
return $this->currentImages;
}
/**
* @param array $imageIds
* @return NewsMap
*/
public function setCurrentImages(array $imageIds)
{
$this->currentImages = $imageIds;
return $this;
}
/**
* @param \DateTime $showDate
* @return NewsMap
*/
public function setShowDate($showDate)
{
$this->showDate = $showDate;
return $this;
}
/**
* @return \DateTime
*/
public function getShowDate()
{
return $this->showDate;
}
/**
* @param string $title
* @return NewsMap
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @param string $author
* @return NewsMap
*/
public function setAuthor($author)
{
$this->author = $author;
return $this;
}
/**
* @return string
*/
public function getAuthor()
{
return $this->author;
}
/**
* @param News $news
* @return NewsMap
*/
public function fillFromModel(News $news)
{
$this->setShowDate($news->getShowDate())
->setTitle($news->getTitle())
->setContent($news->getContent())
->setAuthor($news->getAuthor())
->setCurrentImages($news->getImages());
return $this;
}
/**
* @param News $news
* @return NewsMap
*/
public function updateModel(News $news)
{
$news->setShowDate($this->getShowDate())
->setTitle($this->getTitle())
->setContent($this->getContent());
return $this;
}
} |
package ftn.e2.udd.websearch.android.service;
import android.net.http.AndroidHttpClient;
import org.apache.http.client.HttpClient;
import ftn.e2.udd.websearch.android.dto.SearchResult;
import ftn.e2.udd.websearch.android.util.SearchUtils;
public class SearchService {
private static SearchService instance;
private HttpClient httpClient;
private SearchService() {
httpClient = AndroidHttpClient.newInstance(SearchService.class.getSimpleName());
}
public static SearchService instance() {
if (instance == null) {
instance = new SearchService();
}
return instance;
}
public SearchResult getResults(String query, int pageNr) {
return SearchUtils.convertSearchResult(post(query, pageNr));
}
private String post(String query, int pageNr) {
try {
return SearchUtils.convertHttpResponse(httpClient.execute(SearchUtils.buildPost(SearchUtils.buildUrl(pageNr), query)));
} catch (Exception e) {
return SearchUtils.EMPTY_STRING;
}
}
} |
<?php
//use Illuminate\Support\Facades\Request;
//use Illuminate\Support\Facades\URL;
//use Illuminate\Html\HtmlFacade as HTML;
HTML::macro('nav', function ($list, $attributes = null) {
$nav = [];
// iterate through each element of the array and get url => link pairs
foreach ($list as $url => $val) {
// Sometimes we want to pass a condition and display link based on the condition
// (ex: dispaly login vs. logout link based on if user is logged in),
// in this case, an array will be passed instead of a string.
// The first value will be the condition, 2nd and 3rd will be the links
if (is_array($val)) {
$condition = isset($val['condition']) ? $val['condition'] : true;
$link = [
'true' => isset($val['url']) ? $val['url'] : '',
'false' => isset($val['url_false']) ? $val['url_false'] : ''
];
// check to see if condition passes
$url = $condition ? $link['true'] : $link['false'];
$val = isset($val['title']) ? $val['title'] : $url;
}
// Check to see if both url and link is passed
// Many times, both url and link name will be the same, so we can avoid typing it twice
// and just pass one value
// In this case, the key will be numeric (when we just pass a value instead of key => value pairs)
// We will have to set the url to equal the key instead
switch ($url) {
case '<none>':
$url = '';
break;
case '<front>':
$url = '/';
break;
default:
$url = is_numeric($url) ? $val : $url;
}
// If we are using controller routing (ex: HomeController@getIndex),
// then we need to use URL::action() instead of URL::to()
$url = $url ? ((strpos($url, '@') !== false) ? URL::action($url) : URL::to(strtolower($url))) : '';
// Set the active state automatically
$class['class'] = (Request::url() === $url) ? 'active' : null;
// Push the new list into the $nav array
array_push($nav, $url ? HTML::link($url, $val, $class) : $val);
}
// Generate the unordered list
// HTML::ul() performs htmlentities on the list by default,
// so we have to decode it back using HTML::decode()
return HTML::decode(HTML::ul($nav, $attributes));
}); |
module.exports = {
release: {
options: {
config: 'production',
path: '<%= path %>',
srcBasePath: 'release/',
}
}
} |
# <API key>: true
module Gitlab
module Ci
module Pipeline
module Seed
class Stage < Seed::Base
include Gitlab::Utils::StrongMemoize
delegate :size, to: :seeds
delegate :dig, to: :seeds
def initialize(pipeline, attributes)
@pipeline = pipeline
@attributes = attributes
@builds = attributes.fetch(:builds).map do |attributes|
Seed::Build.new(@pipeline, attributes)
end
end
def attributes
{ name: @attributes.fetch(:name),
position: @attributes.fetch(:index),
pipeline: @pipeline,
project: @pipeline.project }
end
def seeds
strong_memoize(:seeds) do
@builds.select(&:included?)
end
end
def included?
seeds.any?
end
def to_resource
strong_memoize(:stage) do
::Ci::Stage.new(attributes).tap do |stage|
seeds.each { |seed| stage.builds << seed.to_resource }
end
end
end
end
end
end
end
end |
class Admin::UsersController < Admin::HomeController
def index
@users = User.order('id desc').paginate(:page=>params[:page])
authorize @users
end
end |
<!
-
- @license
-
- The MIT License (MIT)
-
- Copyright (c) 2015 Intel Corporation
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
-
- Authors:
- Elliot Smith <elliot.smith@intel.com>
- Max Waterman <max.waterman@intel.com>
-
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Polymer core-tooltip</title>
<script src="../../bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/core-tooltip/core-tooltip.html">
<link rel="import" href="../../bower_components/core-icon/core-icon.html">
<link rel="import" href="../../app/elements/slv-icons-svg.html">
<style>
.list-item {
display: flex;
-webkit-display: flex;
-moz-display: flex;
flex-direction: row;
-<API key>: row;
-moz-flex-direction: row;
align-items: center;
-webkit-align-items: center;
-moz-align-items: center;
width: 50%;
height: 40px;
color: white;
}
.content {
flex: 1 0 auto;
-webkit-flex: 1 0 auto;
-moz-flex: 1 0 auto;
margin-left: 20px;
}
.tooltip-icon {
width: 40px;
}
.odd {
background-color: #333;
}
.even {
background-color: #999;
}
</style>
<style>
/* tooltip style overrides */
/* tooltip: background colour, positioning */
core-tooltip /deep/ .core-tooltip {
background-color: #313131;
margin-left: 8px;
padding: 0;
white-space: normal !important;
line-height: 20px !important;
width: 374px;
margin-top: 60px;
max-height: 300px;
}
/* prevent background peeping out from corners */
core-tooltip /deep/ .core-tooltip {
border-radius: 5px !important;
}
/* arrow styling and positioning */
core-tooltip /deep/ .core-tooltip::after {
border-width: 12px !important;
margin-top: -68px;
border-right-color: #0abcf7 !important;
}
/* background colour of the body of the tooltip, borders, padding */
[tip] {
background-color: #313131;
border: 16px solid #0abcf7;
border-radius: 4px;
padding: 4px;
overflow-y: auto;
max-height: 300px;
}
/* text inside the tooltip */
[tip] * {
color: #fefeff;
font-size: 13px;
}
/* tooltip heading */
[tip] [data-role="heading"] {
font-size: 18px;
margin-top: 0;
}
[tip] [data-role="description"] {
margin-bottom: 20px;
margin-top: -4px;
}
[tip] [data-role="ports-heading"] {
margin-top: 0;
margin-bottom: 0;
}
[tip] [data-role="ports-list"] {
list-style-type: none;
margin-left: -40px;
margin-top: 0;
margin-bottom: 0;
}
</style>
<style no-shim>
/* these styles should match the ones in the previous <style>
element, but with different selectors */
/* tooltip: background colour, positioning */
core-tooltip[data-host="slv-tooltip"] .core-tooltip {
background-color: #313131;
margin-left: 8px;
padding: 0;
white-space: normal !important;
line-height: 20px !important;
width: 374px;
margin-top: 60px;
max-height: 300px;
}
/* prevent background peeping out from corners */
core-tooltip[data-host="slv-tooltip"] .core-tooltip {
border-radius: 5px !important;
}
/* arrow styling and positioning */
core-tooltip[data-host="slv-tooltip"] .core-tooltip::after {
border-width: 12px !important;
margin-top: -68px;
border-right-color: #0abcf7 !important;
}
</style>
</head>
<body unresolved>
<h1>Because the online demo doesn't work...</h1>
<div class="list-item odd">
<div class="content">Component name 1</div>
<core-tooltip data-host="slv-tooltip" position="right">
<div class="tooltip-icon">
<core-icon icon="slv-icons-svg:clear"></core-icon>
</div>
<div tip>
<h1 data-role="heading">float/module</h1>
<p data-role="description">Arithmetic modulo operation with floats.<p>
<h2 data-role="ports-heading">Input ports:</h2>
<ul data-role="ports-list">
<li data-role="port-detail">
- IN0(float): First port of modulo operation.
</li>
<li data-role="port-detail">
- IN1(float): Second port of modulo operation.
</li>
</ul>
<h2 data-role="ports-heading">Output ports:</h2>
<ul data-role="ports-list">
<li data-role="port-detail">
- IN0(float): First port of modulo operation.
</li>
<li data-role="port-detail">
- IN1(float): Second port of modulo operation.
</li>
</ul>
</div>
</core-tooltip>
</div>
<div class="list-item even">
<div class="content">Component name 2</div>
<div class="tooltip-icon">
<core-icon icon="slv-icons-svg:clear"></core-icon>
</div>
</div>
<div class="list-item odd">
<div class="content">Component name 3</div>
<div class="tooltip-icon">
<core-icon icon="slv-icons-svg:clear"></core-icon>
</div>
</div>
</body>
</html> |
# <API key>: true
# Puma can serve each request in a thread from an internal thread pool.
# The `threads` method setting takes two numbers: a minimum and maximum.
# Any libraries that use thread pools should be configured to match
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum; this matches the default thread size of Active Record.
threads_count = ENV.fetch('RAILS_MAX_THREADS') { 5 }
threads threads_count, threads_count
port ENV.fetch('PORT') { 3000 }
# Specifies the `environment` that Puma will run in.
environment ENV.fetch('RAILS_ENV') { 'development' }
# Specifies the number of `workers` to boot in clustered mode.
# Workers are forked webserver processes. If using threads and workers together
# the concurrency of the application would be max `threads` * `workers`.
# Workers do not work on JRuby or Windows (both of which do not support
# processes).
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
# Use the `preload_app!` method when specifying a `workers` number.
# This directive tells Puma to first boot the application and load code
# before forking the application. This takes advantage of Copy On Write
# process behavior so workers use less memory. If you use this option
# you need to make sure to reconnect any threads in the `on_worker_boot`
# block.
# preload_app!
# If you are preloading your application and using Active Record, it's
# recommended that you close any connections to the database before workers
# are forked to prevent connection leakage.
# before_fork do
# ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord)
# end
# The code in the `on_worker_boot` will be called if you are using
# clustered mode by specifying a number of `workers`. After each worker
# process is booted, this block will be run. If you are using the `preload_app!`
# option, you will want to use this block to reconnect to any threads
# or connections that may have been created at application boot, as Ruby
# cannot share connections between processes.
# on_worker_boot do
# ActiveRecord::Base.<API key> if defined?(ActiveRecord)
# end
# Allow puma to be restarted by `rails restart` command.
plugin :tmp_restart |
"use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var path_1 = __importDefault(require("path"));
var glob_1 = __importDefault(require("glob"));
var karma_1 = require("karma");
var karma_config_1 = __importDefault(require("../config/karma.config"));
var build_1 = require("@vue2do/build");
var chalk_1 = __importDefault(require("chalk"));
function default_1(_a) {
var _b;
var _c = _a.projectConfig, projectConfig = _c === void 0 ? {} : _c, projectConfigPath = _a.projectConfigPath;
console.log(chalk_1.default.green('@vue2do/test') + ": starting unit testing server.");
var projectConfigDir = projectConfig.root || '';
if (projectConfigPath) {
projectConfigDir = path_1.default.dirname(projectConfigPath);
projectConfig = __assign(__assign({}, require(projectConfigPath)), projectConfig);
}
var baseWebpackChain = build_1.getConfig({
config: {
root: projectConfigDir
}
}).base;
// babel add config
// env: {
// testing: {
// plugins: [require.resolve('<API key>')]
baseWebpackChain.devtool('#inline-source-map');
baseWebpackChain.module
.rule('istanbul_js|jsx')
.test(/\.js$|\.jsx$/)
.include
.add(path_1.default.resolve('./unit/'))
.end()
.use('istanbul')
.loader('<API key>')
.end();
var baseWebpackConfig = baseWebpackChain.toConfig();
delete baseWebpackConfig.entry;
delete baseWebpackConfig.optimization;
var karmaServer = new karma_1.Server(__assign(__assign(__assign({}, karma_config_1.default), { files: glob_1.default.sync(path_1.default.resolve(projectConfigDir, '.__tests__/*.test.@(js|ts)'), {
ignore: '**/node_modules/**',
nodir: true
}), preprocessors: (_b = {},
_b[path_1.default.resolve(projectConfigDir, '.__tests__/*.test.js')] = ['webpack', 'sourcemap'],
_b[path_1.default.resolve(projectConfigDir, '.__tests__/*.test.ts')] = ['webpack', 'sourcemap'],
_b), webpack: baseWebpackConfig, webpackMiddleware: {
stats: 'minimal'
} }), projectConfig));
karmaServer.start();
}
exports.default = default_1;
//# sourceMappingURL=unit.js.map |
namespace MQTTnet.Protocol
{
public enum <API key>
{
Success = 0,
<API key> = 146
}
} |
import Ember from 'ember-metal/core';
import run from 'ember-metal/run_loop';
import compile from '<API key>/system/compile';
var Router, router, App, container;
function bootApplication() {
router = container.lookup('router:main');
run(App, 'advanceReadiness');
}
function handleURL(path) {
return run(function() {
return router.handleURL(path).then(function(value) {
ok(true, 'url: `' + path + '` was handled');
return value;
}, function(reason) {
ok(false, 'failed to visit:`' + path + '` reason: `' + QUnit.jsDump.parse(reason));
throw reason;
});
});
}
QUnit.module('Router.map', {
setup() {
run(function() {
App = Ember.Application.create({
name: 'App',
rootElement: '#qunit-fixture'
});
App.deferReadiness();
App.Router.reopen({
location: 'none'
});
Router = App.Router;
container = App.__container__;
});
},
teardown() {
run(function() {
App.destroy();
App = null;
Ember.TEMPLATES = {};
//Ember.Logger.error = originalLoggerError;
});
}
});
QUnit.test('Router.map returns an Ember Router class', function () {
expect(1);
var ret = App.Router.map(function() {
this.route('hello');
});
ok(Ember.Router.detect(ret));
});
QUnit.test('Router.map can be called multiple times', function () {
expect(4);
Ember.TEMPLATES.hello = compile('Hello!');
Ember.TEMPLATES.goodbye = compile('Goodbye!');
App.Router.map(function() {
this.route('hello');
});
App.Router.map(function() {
this.route('goodbye');
});
bootApplication();
handleURL('/hello');
equal(Ember.$('#qunit-fixture').text(), 'Hello!', 'The hello template was rendered');
handleURL('/goodbye');
equal(Ember.$('#qunit-fixture').text(), 'Goodbye!', 'The goodbye template was rendered');
}); |
<?php
/**
* Base actions for the <API key> <API key> module.
*
* @package <API key>
* @subpackage action
* @author Christian Schaefer <caefer@ical.ly>
*/
abstract class <API key> extends sfActions
{
/**
* Generates a thumbnail image
*
* @param sfWebRequest $request The symfony request object
* @return string
*/
public function executeIndex(sfWebRequest $request)
{
if(in_array('sfImageSource', stream_get_wrappers()))
{
<API key>('sfImageSource');
}
$streamwrapper = $this->getRoute()-><API key>();
<API key>('sfImageSource', $streamwrapper) or die('Failed to register protocol..');
$formats = sfConfig::get('<API key>', array());
$thumbnailer = new <API key>($formats);
$uri = $this->getRoute()->getImageSourceURI();
$thumbnail = $thumbnailer->generate($uri, $request->getParameter('format', 'default'));
$response = $this->getResponse();
$response->setContentType($thumbnail->getMIMEType());
$response->setContent($thumbnail->toString());
return sfView::NONE;
}
} |
package com.nikitakozlov.pury;
import com.nikitakozlov.pury.profile.Profiler;
import com.nikitakozlov.pury.profile.ProfilerId;
import com.nikitakozlov.pury.profile.ProfilingManager;
import com.nikitakozlov.pury.result.model.ProfileResult;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Matchers;
import org.mockito.Mock;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.eq;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.mockito.MockitoAnnotations.initMocks;
public class PuryTest {
private static final int RUNS_COUNTER_1 = 1;
private static final String PROFILER_NAME= "profilerName";
private static final int STAGE_ORDER = 1;
private static final int <API key> = 0;
private static final String STAGE_NAME = "stageName";
private static final String PLUGIN_KEY_1 = "key 1";
private static final String PLUGIN_KEY_2 = "key 2";
@Mock
Plugin plugin1;
@Mock
Plugin plugin2;
@Mock
ProfilingManager mProfilingManager;
@Mock
Profiler mProfiler;
@Before
public void setUp() {
initMocks(this);
}
@Test
public void <API key>() {
assertNotNull(Pury.getProfilingManager());
}
@Test
public void <API key>() {
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
when(mProfilingManager.getProfiler(profilerId)).thenReturn(mProfiler);
PurySetter.setProfilingManager(mProfilingManager);
Pury.startProfiling(PROFILER_NAME, STAGE_NAME, STAGE_ORDER, RUNS_COUNTER_1);
verify(mProfilingManager).getProfiler(profilerId);
verify(mProfiler).startStage(STAGE_NAME, STAGE_ORDER);
}
@Test
public void <API key>() {
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
PurySetter.setProfilingManager(mProfilingManager);
Pury.setEnabled(false);
Pury.startProfiling(PROFILER_NAME, STAGE_NAME, STAGE_ORDER, RUNS_COUNTER_1);
verify(mProfilingManager, never()).getProfiler(profilerId);
}
@Test
public void <API key>() {
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
when(mProfilingManager.getProfiler(profilerId)).thenReturn(mProfiler);
PurySetter.setProfilingManager(mProfilingManager);
Pury.stopProfiling(PROFILER_NAME, STAGE_NAME, RUNS_COUNTER_1);
verify(mProfilingManager).getProfiler(profilerId);
verify(mProfiler).stopStage(STAGE_NAME);
}
@Test
public void <API key>() {
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
PurySetter.setProfilingManager(mProfilingManager);
Pury.setEnabled(false);
Pury.stopProfiling(PROFILER_NAME, STAGE_NAME, RUNS_COUNTER_1);
verify(mProfilingManager, never()).getProfiler(profilerId);
}
//First integration test for result handlers
@Test
public void <API key>() {
Pury.addPlugin(PLUGIN_KEY_1, plugin1);
Pury.addPlugin(PLUGIN_KEY_2, plugin2);
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
Pury.startProfiling(PROFILER_NAME, STAGE_NAME, <API key>, RUNS_COUNTER_1);
Pury.stopProfiling(PROFILER_NAME, STAGE_NAME, RUNS_COUNTER_1);
verify(plugin1).handleResult(Matchers.<ProfileResult>any(), eq(profilerId));
verify(plugin2).handleResult(Matchers.<ProfileResult>any(), eq(profilerId));
}
//Second integration test for result handlers
@Test
public void <API key>() {
Pury.addPlugin(PLUGIN_KEY_1, plugin1);
Pury.addPlugin(PLUGIN_KEY_2, plugin2);
Pury.removePlugin(PLUGIN_KEY_1);
ProfilerId profilerId = new ProfilerId(PROFILER_NAME, RUNS_COUNTER_1);
Pury.startProfiling(PROFILER_NAME, STAGE_NAME, <API key>, RUNS_COUNTER_1);
Pury.stopProfiling(PROFILER_NAME, STAGE_NAME, RUNS_COUNTER_1);
verify(plugin1, never()).handleResult(Matchers.<ProfileResult>any(), eq(profilerId));
verify(plugin2).handleResult(Matchers.<ProfileResult>any(), eq(profilerId));
}
@After
public void tearDown() {
PurySetter.setProfilingManager(null);
Pury.setEnabled(true);
}
} |
#include "Control.h"
void Control::Execute() {
switch(Mode)
{
case IDLE:
State.HeadingReached = false;
State.DistanceReached = false;
// - Keep motors braked in idle mode.
State.effectors.rightMotor.MotorBrake();
State.effectors.leftMotor.MotorBrake();
// - Check for an active heading error
<API key>();
// - Check for an active distance error only once heading
// error has been closed out
if(!_headingError()){
<API key>();
}
// - Monitor for test drive command.
// Initiates open loop sequence.
if (State.DoTestDrive){
Mode = TEST_DRIVE;
}
break;
case ROTATIONAL_CTRL:
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
if (State.effectors.leftMotor.ReachedPosition() &&
State.effectors.rightMotor.ReachedPosition()) {
State.HeadingReached = true;
State.HeadingError = 0.0;
Mode = IDLE;
}
break;
case TRANSLATIONAL_CTRL:
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
if (State.effectors.leftMotor.ReachedPosition() &&
State.effectors.rightMotor.ReachedPosition()) {
State.DistanceReached = true;
State.DistanceError = 0.0;
Mode = IDLE;
}
break;
case TEST_DRIVE:
_testDrive();
if (!State.DoTestDrive){
Mode = IDLE;
_testDriveState = FWD_POS_TEST;
}
break;
default:
- invalid state - go back to IDLE
Mode = IDLE;
break;
}
}
bool Control::_headingError(){
return (abs(State.HeadingError) > abs(State.HeadingErrorTol));
}
void Control::<API key>(){
if (_headingError()){
uint16_t pos_cmd = 0;
if(State.HeadingError > 0.0){
pos_cmd = abs(State.HeadingError)*<API key>;
State.effectors.rightMotor.BwdPositionCmd(pos_cmd);
State.effectors.leftMotor.FwdPositionCmd(pos_cmd);
Mode = ROTATIONAL_CTRL;
}else{
pos_cmd = abs(State.HeadingError)*<API key>;
State.effectors.rightMotor.FwdPositionCmd(pos_cmd);
State.effectors.leftMotor.BwdPositionCmd(pos_cmd);
Mode = ROTATIONAL_CTRL;
}
}else{
State.HeadingReached = true;
}
}
void Control::<API key>(){
if (_distanceError()){
uint16_t pos_cmd = 0;
if(State.DistanceError > 0.0){
pos_cmd = abs(State.DistanceError)*MotorRotDegPerFt;
State.effectors.rightMotor.FwdPositionCmd(pos_cmd);
State.effectors.leftMotor.FwdPositionCmd(pos_cmd);
Mode = TRANSLATIONAL_CTRL;
}else{
pos_cmd = abs(State.DistanceError)*MotorRotDegPerFt;
State.effectors.rightMotor.BwdPositionCmd(pos_cmd);
State.effectors.leftMotor.BwdPositionCmd(pos_cmd);
Mode = TRANSLATIONAL_CTRL;
}
}else{
State.DistanceReached = true;
}
}
bool Control::_distanceError(){
return (abs(State.DistanceError) > abs(State.DistanceErrorTol));
}
void Control::_printHeadingDebug(){
if((millis()-_lastMilliPrint) >= 2000){
_lastMilliPrint = millis();
Serial.print("Current heading : ");
Serial.println(State.SensedHeading);
Serial.print("Desired heading : ");
Serial.println(State.ActiveWayPoint.Heading);
Serial.print("Velocity Cmd : ");
Serial.println(_velocityCmd);
}
}
void Control::_printDistanceDebug(){
Serial.print("Sensed distance : ");
Serial.println(State.SensedDistance);
Serial.print("Distance error : ");
Serial.println(State.DistanceError);
Serial.print("Position Cmd : ");
Serial.println(_positionCmd);
}
void Control::<API key>(){
float error = abs(State.HeadingError);
_velocityCmd += _Kp*error + _Kd*error;
_velocityCmd = constrain(_velocityCmd, -30, 30);
}
void Control::_testDrive(){
float <API key> = 20.0;
float maxRpm = 35.0;
float velocityCmd = 0.0;
switch(_testDriveState)
{
case FWD_POS_TEST:
if(_firstPass){
Serial.println("FWD POSITION TEST STARTING");
State.effectors.rightMotor.FwdPositionCmd(720);
State.effectors.leftMotor.FwdPositionCmd(720);
_firstPass=false;
}
- Keep running the controller until it's put back in to the IDLE
mode
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
if (State.effectors.leftMotor.ReachedPosition() &&
State.effectors.rightMotor.ReachedPosition()) {
Serial.println("FWD POSITION TEST COMPLETE");
_firstPass = true;
_testDriveState = TURN_RIGHT_TEST;
}
break;
case TURN_RIGHT_TEST:
if(_firstPass){
Serial.println("RIGHT TURN POSITION TEST STARTING");
State.effectors.rightMotor.BwdPositionCmd(305);
State.effectors.leftMotor.FwdPositionCmd(305);
_firstPass=false;
}
- Keep running the controller until it's put back in to the IDLE
mode
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
if (State.effectors.leftMotor.ReachedPosition() &&
State.effectors.rightMotor.ReachedPosition()) {
Serial.println("RIGHT TURN POSITION TEST COMPLETE");
//Serial.println("SPEED UP VELOCITY TEST STARTING");
_firstPass = true;
//_testDriveState = SPEED_UP_VEL_TEST;
_testDriveState = FWD_POS_TEST;
}
break;
case SPEED_UP_VEL_TEST:
- Used to ramp up the velocity command
<API key> = 20.0;
maxRpm = 30.0;
_numSecondsInTest += (float) cycleTimeControl/1000.0;
- Set the velocity command proportionally to the length of time
in this test velocity mode. R motor gets positive vel cmd,
L motor gets negative vel cmd
velocityCmd = _numSecondsInTest/<API key>*maxRpm;
State.effectors.rightMotor.VelocityCmd(velocityCmd);
State.effectors.leftMotor.VelocityCmd(velocityCmd);
- Run the motor controller until the end of the test
if (_numSecondsInTest < <API key>) {
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
}else{
State.effectors.rightMotor.ControlMode = Spg30MotorDriver::IDLE;
State.effectors.leftMotor.ControlMode = Spg30MotorDriver::IDLE;
Serial.println("SPEED UP VELOCITY TEST COMPLETE");
_testDriveState = SLOW_DOWN_VEL_TEST;
Serial.println("SLOW DOWN VELOCITY TEST STARTING");
_numSecondsInTest = 0.0;
}
break;
case SLOW_DOWN_VEL_TEST:
- Used to ramp up the velocity command
<API key> = 20.0;
maxRpm = 30.0;
_numSecondsInTest += (float) cycleTimeControl/1000.0;
- Set the velocity command proportionally to the length of time
in this test velocity mode. R motor gets positive vel cmd,
L motor gets negative vel cmd
velocityCmd = (1-_numSecondsInTest/<API key>)*maxRpm;
State.effectors.rightMotor.VelocityCmd(velocityCmd);
State.effectors.leftMotor.VelocityCmd(velocityCmd);
- Run the motor controller until the end of the test
if (_numSecondsInTest < <API key>) {
State.effectors.rightMotor.run();
State.effectors.leftMotor.run();
}else{
State.effectors.rightMotor.ControlMode = Spg30MotorDriver::IDLE;
State.effectors.leftMotor.ControlMode = Spg30MotorDriver::IDLE;
Serial.println("SLOW DOWN VELOCITY TEST COMPLETE");
_testDriveState = FWD_POS_TEST;
_numSecondsInTest = 0.0;
}
break;
}
} |
<!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title></title>
</head>
<body>
</body>
</html>
<script>
(function(i,s,o,g,r,a,m){i['<API key>']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.<API key>(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https:
ga('create', 'UA-98712214-1', 'auto');
ga('send', 'pageview');
</script> |
uid: SolidEdgePart.HelixProtrusion.Reorder(System.Object,System.Boolean)
summary:
remarks:
syntax:
parameters:
- id: InsertBefore
description: Specifies if the active feature object is to be placed before or after the target object. If this argument is True, the active feature object is inserted before the target object. If this argument is False, the feature object is placed after the target object.
- id: TargetFeature
description: Specifies the feature object for which the referenced feature object is to be inserted in front of or behind.
example: [*content]
[!code-vb[Main](..\snippets\SolidEdgePart.HelixProtrusion.Reorder.bas] |
#ifndef ALPS_H
#define ALPS_H
#include "experiments.h"
#include "population.h"
#include "population_state.h"
#include "graph.h"
#include <iostream>
#include <fstream>
#define ALPS_MAX_LAYERS 10
class alps {
public:
long evals;
int generation;
int scale;
int max_layers;
int clayers;
int layer_ceiling;
bool novelty;
long maxevals;
float best_fitness;
int popsize;
plot ageplot;
plot fitnessplot;
plot behaviorplot;
plot paretoplot;
noveltyarchive *protoarc;
Genome* start_genome;
population_state* layers[ALPS_MAX_LAYERS];
evaluatorfunc evalf;
const char* outname;
ofstream* logfile;
vector< vector< float > > age_record;
vector< vector< float > > fitness_record;
epochfunc generation_func;
successfunc success_func;
alps(int _layers, int _scale,Genome* sg,population_state* initial,successfunc sf, const char* outputdir,long _maxevals=1000000) {
outname=outputdir;
char logname[100];
maxevals=_maxevals;
sprintf(logname,"%s_log.txt",outputdir);
logfile=new ofstream(logname);
success_func = sf;
best_fitness=0;
start_genome =sg->duplicate(0);
scale=_scale;
max_layers=_layers;
clayers=1;
generation=0;
novelty=initial->novelty;
protoarc=new noveltyarchive(initial->archive);
protoarc->neighbors=40;
protoarc->localneighbors=40;
evalf=initial->pop->evaluator;
layers[0]=initial;
layers[0]->max_age=scale;
update_layer_cnt();
evals=0;
popsize=initial->pop->organisms.size();
vector<float> k;
age_record.push_back(k);
fitness_record.push_back(k);
}
void update_layer_cnt() {
layer_ceiling = clayers*clayers*scale;
}
Organism* reproduce(population_state* from,population_state* to) {
Organism* baby;
Population::reproduce_simple(from->measure_pop,0,to->pop);
return baby;
}
void reproduce_alps(population_state* r,population_state* bef,population_state* aft,int psize,bool onlybefore=false) {
int added=0;
r->pop->setclean(false);
vector<Organism*> to_add;
while(added<psize) {
Organism* baby;
if(!onlybefore &&(bef==NULL || randfloat()<0.5))
//baby=reproduce(r->pop->species[0],r);
baby=r->pop->species[0]->reproduce_simple(0,r->pop);
else {
//baby=reproduce(bef,r);
baby=bef->pop->species[0]->reproduce_simple(0,r->pop);
}
baby->clean=false;
evals++;
if(baby->age < r->max_age) {
added++;
to_add.push_back(baby);
}
else
{
if(r->promote!=NULL)
r->promote->measure_pop.push_back(baby);
else {
delete(baby);
}
}
}
for(vector<Organism*>::iterator it=to_add.begin(); it!=to_add.end(); it++) {
r->pop->species[0]->add_Organism((*it));
(*it)->species=r->pop->species[0]; //Point baby to its species
}
r->pop->rebuild();
}
void reproduce_layer(int i) {
population_state *before=NULL, *after=NULL;
if(i>0)
before=layers[i-1];
if(i<(clayers-1))
after=layers[i+1];
reproduce_alps(layers[i],before,after,popsize);
}
population_state* create_new_layer(int from_layer) {
int psize=layers[clayers-1]->pop->organisms.size();
noveltyarchive *new_arc =new noveltyarchive(protoarc);
Population* new_pop=new Population(start_genome,1);
new_pop->set_evaluator(evalf);
population_state* np = new population_state(new_pop,novelty,new_arc);
np->max_age=layer_ceiling;
reproduce_alps(np,layers[clayers-1],NULL,psize,true);
np->pop->evaluate_all();
cout << "POPSIZE: " << np->pop->organisms.size();
cout << "NEWLAYERAGE:" << endl;
np->pop->print_avg_age();
evals+=np->pop->organisms.size();
return np;
}
void repopulate(population_state* r) {
int psize = r->pop->organisms.size();
int added=0;
while(added<psize) {
Organism* baby;
Genome* new_genome=start_genome->duplicate(added);
//new_genome->mutate_link_weights(1.0,1.0,GAUSSIAN);
new_genome->mutate_link_weights(2.0,1.0,COLDGAUSSIAN);
new_genome-><API key>(0.01,1.0,3.0,1.0,true);
//new_genome-><API key>(3.0,1.0,4.0,1.0,true);
new_genome->randomize_traits();
baby=new Organism(0.0,new_genome,1);
r->pop->species[0]->add_Organism(baby);
baby->species=r->pop->species[0]; //Point baby to its species
added++;
}
r->pop->rebuild();
r->pop->evaluate_all();
evals+=r->pop->organisms.size();
r->reset();
}
void do_alps() {
bool success=false;
while(!success && evals<maxevals) {
cout << "alps generation " << generation << endl;
cout << "layers " << clayers << " ceiling" << layer_ceiling << endl;
//reproduce layers
for(int i=0; i<clayers; i++) {
layers[i]->best_fitness = 0;
layers[i]->evals=evals;
success=<API key>(layers[i],generation,success_func);
if (success) {
cout <<"SUCCESS" << endl;
break;
}
age_record[i].push_back(layers[i]->pop->avgage);
fitness_record[i].push_back(layers[i]->best_fitness);
if(layers[i]->best_fitness > best_fitness)
best_fitness=layers[i]->best_fitness;
reproduce_layer(i);
//layers[i]->archive->increment_age(layers[i]->max_age);
cout << "Layer " << i << ":" << layers[i]->mc_met << endl;
cout << "evals: " << evals << endl;
}
(*logfile) << evals << " " << best_fitness << endl;
vector< vector< float > > pareto;
vector< vector< float > > behaviors;
for(int i=0; i<clayers; i++) {
vector<Organism*>::iterator org;
vector<float> collect;
vector<float> pcollect;
for(org=layers[i]->measure_pop.begin(); org!=layers[i]->measure_pop.end(); org++)
{
int sz=(*org)->noveltypoint->data[0].size();
collect.push_back((*org)->noveltypoint->data[0][sz-2]);
collect.push_back((*org)->noveltypoint->data[0][sz-1]);
pcollect.push_back((*org)->noveltypoint->novelty);
pcollect.push_back((*org)->noveltypoint->genodiv);
}
pareto.push_back(pcollect);
behaviors.push_back(collect);
}
#ifdef PLOT_ON
paretoplot.plot_data_2d(pareto);
behaviorplot.plot_data_2d(behaviors);
//ageplot.plot_data(age_record,"lines");
//fitnessplot.plot_data(fitness_record,"lines");
#endif
//if time to add new layer, create if from previous layer
if(clayers<max_layers && ((generation+1)==layer_ceiling)) {
cout << "Adding layer " << clayers << endl;
//create new layer, set age limit, etc
layers[clayers]=create_new_layer(clayers);
layers[clayers-1]->promote=layers[clayers];
if(clayers==(max_layers-1))
layers[clayers]->max_age=10000000;
clayers++;
vector<float> k;
age_record.push_back(k);
fitness_record.push_back(k);
update_layer_cnt();
}
//if multiple of scale, recreate first layer from start genome
if((generation+1)%scale==0) {
cout << "regenerating first layer" << endl;
repopulate(layers[0]);
}
generation++;
}
}
};
#endif |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("WoopsaDemoClient")]
[assembly: AssemblyDescription("Client demonstration for woopsa .net")]
[assembly: ComVisible(false)]
[assembly: Guid("<API key>")] |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TicTacToe
{
class Program
{
static void Main(string[] args)
{
int numPlayers = 0;
bool validInput = false;
Console.WriteLine("Welcome to Tic-Tac-Toe!");
//get number of players
while (!validInput)
{
Console.WriteLine("Enter number of players:");
string tmpString = Console.ReadLine();
if (Int32.TryParse(tmpString, out numPlayers))
{
if (numPlayers > 0)
validInput = true;
}
else
{
Console.WriteLine("Invalid Input");
}
}
//Starts the game.
RoundManager roundManager = new RoundManager(numPlayers);
roundManager.nextRound();
}
}
} |
<?php namespace Kris\LaravelFormBuilder;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Kris\LaravelFormBuilder\Fields\FormField;
class RulesParser
{
/**
* @var FormField
*/
protected $field;
/**
* @var FormHelper
*/
protected $formHelper;
/**
* @param FormField $field
*/
public function __construct(FormField $field)
{
$this->field = $field;
$this->formHelper = $this->field->getParent()->getFormHelper();
}
/**
* Parse a rule for an input into an array of attributes.
*
* @param string|array $rules
* @return array
*/
public function parse($rules)
{
$attributes = array();
$rules = $rule = (is_string($rules)) ? explode('|', $rules) : $rules;
foreach ($rules as $rule) {
list($rule, $parameters) = $this->parseRule($rule);
if ($rule && method_exists($this, $rule)) {
$attributes += $this->$rule($parameters);
}
}
return $attributes;
}
protected function accepted()
{
return [
'required' => 'required',
'title' => $this->getTitle('accepted'),
];
}
protected function required()
{
return ['required' => 'required'];
}
/**
* Check that the input only contains alpha.
*
* alpha --> pattern="[a-zA-Z]+"
*
* @return array
*/
protected function alpha()
{
return [
'pattern' => '[a-zA-Z]+',
'title' => $this->getTitle('alpha'),
];
}
protected function alphaNum()
{
return [
'pattern' => '[a-zA-Z0-9]+',
'title' => $this->getTitle('alpha_num'),
];
}
protected function alphaDash()
{
return [
'pattern' => '[a-zA-Z0-9_\-]+',
'title' => $this->getTitle('alpha_dash'),
];
}
protected function integer()
{
if ($this->isNumeric()) {
return ['step' => 1];
}
return [
'pattern' => '\d+',
'title' => $this->getTitle('integer'),
];
}
protected function numeric()
{
if ($this->isNumeric()) {
return ['step' => 'any'];
}
return [
'pattern' => '[-+]?[0-9]*[.,]?[0-9]+',
'title' => $this->getTitle('numeric'),
];
}
protected function boolean()
{
return [
'pattern' => '0|1',
'title' => $this->getTitle('boolean'),
];
}
protected function digits($param)
{
$digits = $param[0];
if ($this->isNumeric()) {
return [
'min' => pow(10, $digits - 1),
'max' => pow(10, $digits) - 1,
];
}
return [
'pattern' => '\d{'.$digits.'}',
'title' => $this->getTitle('digits', compact('digits')),
];
}
protected function digitsBetween($param)
{
list($min, $max) = $param;
if ($this->isNumeric()) {
return [
'min' => pow(10, $min - 1),
'max' => pow(10, $max) - 1,
];
}
return [
'pattern' => '\d{'.$min.','.$max.'}',
'title' => $this->getTitle('digits_between', compact('min', 'max')),
];
}
protected function min($param)
{
$min = $param[0];
if ($this->isNumeric()) {
return ['min' => $min];
}
return [
'minlength' => $min,
];
}
protected function max($param)
{
$max = $param[0];
if ($this->isNumeric()) {
return ['max' => $max];
}
return ['maxlength' => $max];
}
protected function between($param)
{
list ($min, $max) = $param;
if ($this->isNumeric()) {
return [
'min' => $min,
'max' => $max,
];
}
return [
'minlength' => $min,
'maxlength' => $max,
];
}
protected function size($param)
{
$size = $param[0];
if ($this->isNumeric()) {
return [
'min' => $size,
'max' => $size,
'title' => $this->getTitle('size.numeric', compact('size')),
];
}
return [
'pattern' => '.{'.$size.'}',
'title' => $this->getTitle('size.string', compact('size')),
];
}
protected function in($params)
{
return [
'pattern' => implode('|', $params),
'title' => $this->getTitle('in'),
];
}
protected function notIn($params)
{
return [
'pattern' => '(?:(?!^' . join('$|^', $params) . '$).)*',
'title' => $this->getTitle('not_in'),
];
}
protected function after($params)
{
if ($date = $this->getDateAttribute($params[0])) {
return ['min' => $date];
}
return [];
}
protected function before($params)
{
if ($date = $this->getDateAttribute($params[0])) {
return ['max' => $date];
}
return [];
}
protected function image()
{
protected function mimes($param)
{
$mimes = '.' . implode(', .', $param);
return ['accept' => $mimes];
}
protected function regex($param)
{
// Remove delimiters
$pattern = substr($param[0], 1, -1);
return ['pattern' => $pattern];
}
/**
* Get the title, used for validating a rule
*
* @param string $rule
* @param array $params
* @return string
*/
protected function getTitle($rule, $params = array())
{
$params['attribute'] = $this->formHelper->formatLabel($this->field->getName());
return trans('validation.' . $rule, $params);
}
/**
* Check if the field is one of certain types.
*
* @param string|array $types
* @return bool
*/
protected function isType($types)
{
return in_array($this->field->getType(), (array) $types);
}
protected function isNumeric()
{
return $this->isType(['number', 'range']);
}
/**
* Format a date to the correct format, based on the current field.
*
* @param $dateStr
* @return bool|string
*/
protected function getDateAttribute($dateStr)
{
$format = "Y-m-d";
if ($this->isType(['datetime', 'datetime-local'])) {
$format .= '\TH:i:s';
}
return date($format, strtotime($dateStr));
}
/**
* Extract the rule name and parameters from a rule.
*
* @param array|string $rules
* @return array
*/
protected function parseRule($rules)
{
if (is_array($rules)) {
return $this->parseArrayRule($rules);
}
return $this->parseStringRule($rules);
}
/**
* Parse an array based rule.
*
* @param array $rules
* @return array
*/
protected function parseArrayRule(array $rules)
{
return [Str::studly(trim(Arr::get($rules, 0))), array_slice($rules, 1)];
}
/**
* Parse a string based rule.
*
* @param string $rules
* @return array
*/
protected function parseStringRule($rules)
{
$parameters = [];
// The format for specifying validation rules and parameters follows an
// easy {rule}:{parameters} formatting convention. For instance the
// rule "Max:3" states that the value may only be three letters.
if (strpos($rules, ':') !== false) {
list($rules, $parameter) = explode(':', $rules, 2);
$parameters = $this->parseParameters($rules, $parameter);
}
return [Str::studly(trim($rules)), $parameters];
}
/**
* Parse a parameter list.
*
* @param string $rule
* @param string $parameter
* @return array
*/
protected function parseParameters($rule, $parameter)
{
if (strtolower($rule) == 'regex') {
return [$parameter];
}
return str_getcsv($parameter);
}
} |
<?php
namespace backend\controllers;
use Yii;
use common\components\MyController;
use common\myhelpers\Debugger;
/**
* ActiveRecord controller
*/
class <API key> extends MyController
{
public function actionIndex()
{
// $primaryConnection = Yii::$app->db;
// $secondaryConnection = Yii::$app->secondDb;
// Debugger::margin();
// Debugger::debug($primaryConnection);
// Debugger::debug($secondaryConnection);
// $command = $connection->createCommand('SELECT * FROM test');
// $tests = $command->queryAll();
// Debugger::margin();
// Debugger::debug($tests);
// $command = $connection->createCommand('SELECT * FROM test WHERE id=1');
// $tests = $command->queryOne();
// Debugger::margin();
// Debugger::debug($tests);
// $command = $connection->createCommand('SELECT title FROM test');
// $titles = $command->queryColumn();
// Debugger::margin();
// Debugger::debug($titles);
// $command = $connection->createCommand('SELECT COUNT(*) FROM test');
// $testCount = $command->queryScalar();
// Debugger::margin();
// Debugger::debug($testCount);
// $command = $connection->createCommand('UPDATE test SET title="update" WHERE id=1');
// $command->execute();
// // INSERT
// $connection->createCommand()->insert('test', [
// 'title' => 'Sam',
// 'text' => 30,
// ])->execute();
// // INSERT multiple rows at once
// $connection->createCommand()->batchInsert('test', ['title', 'text'], [
// ['Tom', 30],
// ['Jane', 20],
// ['Linda', 25],
// ])->execute();
// // UPDATE
// $connection->createCommand()->update('test', ['text' => 'update text'],
// 'title = "update"')->execute();
// // DELETE
// $connection->createCommand()->delete('test', 'id = 2')->execute();
// $column = 'title';
// $table = 'test';
// $sql = "SELECT COUNT([[$column]]) FROM {{{$table}}}";
// $command = $connection->createCommand($sql);
// $rowCount = $command->queryScalar();
// Debugger::margin();
// Debugger::debug($rowCount);
// Debugger::debug($command->pdoStatement->queryString);
// $column = 'title';
// $table = 'test';
// $column = $connection->quoteColumnName($column);
// $table = $connection->quoteTableName($table);
// $sql = "SELECT COUNT($column) FROM $table";
// $command = $connection->createCommand($sql);
// $rowCount = $command->queryScalar();
// Debugger::margin();
// Debugger::debug($rowCount);
// Debugger::debug($command->pdoStatement->queryString);
// $_GET['id'] = 1;
// $command = $connection->createCommand('SELECT * FROM test WHERE id=:id');
// $command->bindValue(':id', $_GET['id']);
// $test = $command->query();
// Debugger::margin();
// Debugger::debug($test);
// Debugger::debug($command->pdoStatement->queryString);
// $command = $connection->createCommand('DELETE FROM test WHERE id=:id');
// $command->bindParam(':id', $id);
// $id = 3;
// $command->execute();
// $id = 6;
// $command->execute();
// $column = 'title';
// $table = 'test';
// $column2 = 'id';
// $sql1 = "UPDATE {{{$table}}} SET [[$column]] = 'TEST' WHERE [[$column2]] = 5";
// $sql2 = "UPDATE {{{$table}}} SET [[$column]] = 'TEST' WHERE [[$column2]] = 7";
// $transaction = $connection->beginTransaction();
// try {
// $connection->createCommand($sql1)->execute();
// $connection->createCommand($sql2)->execute();
// // ... executing other SQL statements ...
// $transaction->commit();
// } catch(Exception $e) {
// $transaction->rollBack();
// $column = 'text';
// $table = 'test';
// $column2 = 'id';
// $sql1 = "UPDATE {{{$table}}} SET [[$column]] = 'TEST' WHERE [[$column2]] = 5";
// $sql2 = "UPDATE {{{$table}}} SET [[$column]] = 'TEST' WHERE [[$column2]] = 7";
// // outer transaction
// $transaction1 = $connection->beginTransaction();
// try {
// $connection->createCommand($sql1)->execute();
// // inner transaction
// $transaction2 = $connection->beginTransaction();
// try {
// $connection->createCommand($sql2)->execute();
// $transaction2->commit();
// } catch (Exception $e) {
// $transaction2->rollBack();
// $transaction1->commit();
// } catch (Exception $e) {
// $transaction1->rollBack();
// $schema = $connection->getSchema();
// Debugger::margin();
// Debugger::debug($schema);
// $schema = $connection->getSchema();
// $tables = $schema->getTableNames();
// Debugger::margin();
// Debugger::debug($tables);
// try {
// // CREATE TABLE
// $connection->createCommand()->createTable('tbl_post', [
// 'id' => 'pk',
// 'title' => 'string',
// 'text' => 'text',
// } catch (\yii\db\Exception $e) {
// Debugger::margin();
// Debugger::debug($e);
// $schema = $connection->getSchema();
// $tables = $schema->getTableNames();
// Debugger::margin();
// Debugger::debug($tables);
return $this->render('index', [
]);
}
} |
require File.expand_path('../boot', __FILE__)
require 'rails/all'
Bundler.require
require "enju_trunk_frbr"
module Dummy
class Application < Rails::Application |
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
using System.Collections;
namespace UnityPlatformer {
// TODO this class is not useful enough to be extended
// move all logic to methods so each bit of code can be extended
<summary>
Create a player at given position
</summary>
public class PlayerStart : InstancePrefab {
<summary>
If you have your own camera, this should be false.
</summary>
public bool setupCameraFollow = true;
<summary>
true: Enable CharacterMonitor if it's found in the Prefab or Create it
false: do nothing
</summary>
public bool monitor = false;
<summary>
Character reference
</summary>
[HideInInspector]
public Character character;
<summary>
Input reference
</summary>
[HideInInspector]
public PlatformerInput input;
<summary>
Monitor
</summary>
[HideInInspector]
public CharacterMonitor mon;
<summary>
Instance the prefab, rename and attach it
To be Character must have only one Character and PlatformerInput
</summary>
<param name="notify">true -> SendMessage: OnInstancePrefab</param>
public override void OnAwake(bool notify = true) {
base.OnAwake(false); // notify below, maybe someone need mon
Character[] chars = instance.gameObject.<API key><Character>();
if (chars.Length != 1) {
Debug.LogErrorFormat("Found {0} Character(s) expected 1", chars.Length);
return;
}
PlatformerInput[] inputs = instance.gameObject.<API key><PlatformerInput>();
if (inputs.Length != 1) {
Debug.LogErrorFormat("Found {0} PlatformerInput(s) expected 1", inputs.Length);
return;
}
character = chars[0];
input = inputs[0];
mon = character.gameObject.GetOrAddComponent<CharacterMonitor>();
mon.enabled = monitor;
if (setupCameraFollow) {
var cams = Camera.allCameras;
foreach (var c in cams) {
CameraFollow cf = c.GetComponent<CameraFollow>();
if (cf) {
cf.target = character;
cf.targetInput = input;
}
}
}
// notify
SendMessage("OnInstancePrefab", this, SendMessageOptions.DontRequireReceiver);
}
}
} |
module.exports = {
dist: {
files: [{
expand: true,
cwd: '<%= config.app %>/images',
src: '{,*/}*.svg',
dest: '<%= config.dist %>/images'
}]
}
}; |
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "computer_set.h"
computer_set_t *computer_set_create(
char *_class,
int busy_executors,
list_t *computer,
char *display_name,
int total_executors
) {
computer_set_t *<API key> = malloc(sizeof(computer_set_t));
if (!<API key>) {
return NULL;
}
<API key>->_class = _class;
<API key>->busy_executors = busy_executors;
<API key>->computer = computer;
<API key>->display_name = display_name;
<API key>->total_executors = total_executors;
return <API key>;
}
void computer_set_free(computer_set_t *computer_set) {
if(NULL == computer_set){
return ;
}
listEntry_t *listEntry;
if (computer_set->_class) {
free(computer_set->_class);
computer_set->_class = NULL;
}
if (computer_set->computer) {
list_ForEach(listEntry, computer_set->computer) {
<API key>(listEntry->data);
}
list_freeList(computer_set->computer);
computer_set->computer = NULL;
}
if (computer_set->display_name) {
free(computer_set->display_name);
computer_set->display_name = NULL;
}
free(computer_set);
}
cJSON *<API key>(computer_set_t *computer_set) {
cJSON *item = cJSON_CreateObject();
// computer_set->_class
if(computer_set->_class) {
if(<API key>(item, "_class", computer_set->_class) == NULL) {
goto fail; //String
}
}
// computer_set->busy_executors
if(computer_set->busy_executors) {
if(<API key>(item, "busyExecutors", computer_set->busy_executors) == NULL) {
goto fail; //Numeric
}
}
// computer_set->computer
if(computer_set->computer) {
cJSON *computer = <API key>(item, "computer");
if(computer == NULL) {
goto fail; //nonprimitive container
}
listEntry_t *computerListEntry;
if (computer_set->computer) {
list_ForEach(computerListEntry, computer_set->computer) {
cJSON *itemLocal = <API key>(computerListEntry->data);
if(itemLocal == NULL) {
goto fail;
}
<API key>(computer, itemLocal);
}
}
}
// computer_set->display_name
if(computer_set->display_name) {
if(<API key>(item, "displayName", computer_set->display_name) == NULL) {
goto fail; //String
}
}
// computer_set->total_executors
if(computer_set->total_executors) {
if(<API key>(item, "totalExecutors", computer_set->total_executors) == NULL) {
goto fail; //Numeric
}
}
return item;
fail:
if (item) {
cJSON_Delete(item);
}
return NULL;
}
computer_set_t *<API key>(cJSON *computer_setJSON){
computer_set_t *<API key> = NULL;
// computer_set->_class
cJSON *_class = <API key>(computer_setJSON, "_class");
if (_class) {
if(!cJSON_IsString(_class))
{
goto end; //String
}
}
// computer_set->busy_executors
cJSON *busy_executors = <API key>(computer_setJSON, "busyExecutors");
if (busy_executors) {
if(!cJSON_IsNumber(busy_executors))
{
goto end; //Numeric
}
}
// computer_set->computer
cJSON *computer = <API key>(computer_setJSON, "computer");
list_t *computerList;
if (computer) {
cJSON *<API key>;
if(!cJSON_IsArray(computer)){
goto end; //nonprimitive container
}
computerList = list_createList();
cJSON_ArrayForEach(<API key>,computer )
{
if(!cJSON_IsObject(<API key>)){
goto end;
}
<API key> *computerItem = <API key>(<API key>);
list_addElement(computerList, computerItem);
}
}
// computer_set->display_name
cJSON *display_name = <API key>(computer_setJSON, "displayName");
if (display_name) {
if(!cJSON_IsString(display_name))
{
goto end; //String
}
}
// computer_set->total_executors
cJSON *total_executors = <API key>(computer_setJSON, "totalExecutors");
if (total_executors) {
if(!cJSON_IsNumber(total_executors))
{
goto end; //Numeric
}
}
<API key> = computer_set_create (
_class ? strdup(_class->valuestring) : NULL,
busy_executors ? busy_executors->valuedouble : 0,
computer ? computerList : NULL,
display_name ? strdup(display_name->valuestring) : NULL,
total_executors ? total_executors->valuedouble : 0
);
return <API key>;
end:
return NULL;
} |
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
class vw_budgets extends MY_Model {
public function __construct() {
parent::__construct();
$this->load->database();
$this->vwBugets = "vw_budgets";
}
public function get($id) {
//return $this->db->get_where($this->table_name, array($this->primary_key => $id))->row();
}
public function get_all_bymes($profile_id,$mesano='') {
$data = array();
if ($mesano=='')
$mesano = date("Ym");
$sql = "call MostraBudgets('".$mesano."','".$profile_id."')";
$Q = $this->db->query($sql);
if ($Q->num_rows() > 0) {
foreach ($Q->result_array() as $row) {
$data[] = $row;
}
}
$Q->free_result();
$Q->next_result();
return $data;
}
public function get_all($fields = '', $where = array(), $table ='vw_budgets',$limit = '', $order_by = '', $group_by = '', $or_where='') {
$data = array();
if ($fields != '') {
$this->db->select($fields);
}
$this->db->from($table);
if (count($where)) {
$this->db->where($where);
}
if ($limit != '') {
$this->db->limit($limit);
}
if ($order_by != '') {
$this->db->order_by($order_by);
}
if ($group_by != '') {
$this->db->group_by($group_by);
}
$Q = $this->db->get('');
if ($Q->num_rows() > 0) {
foreach ($Q->result_array() as $row) {
$data[] = $row;
}
}
$Q->free_result();
return $data;
}
/*
public function insert($data) {
$data['date_created'] = $data['date_updated'] = date('Y-m-d H:i:s');
$data['created_from_ip'] = $data['updated_from_ip'] = $this->input->ip_address();
$success = $this->db->insert($this->table_name, $data);
if ($success) {
return $this->db->insert_id();
} else {
return FALSE;
}
}
public function updateTransacao($data, $id) {
$data['modified'] = date('Y-m-d H:i:s');
$this->db->where($this->primary_key, $id);
return $this->db->update('transacoes', $data);
}
public function delete($id) {
$this->db->where($this->primary_key, $id);
return $this->db->delete($this->table_name);
}*/
} |
import itertools
def topological_order(graph):
global current_label
current_label = len(graph)
global label_offset
label_offset = -1
global ordered_graph
ordered_graph = {}
explored_nodes = []
for node in graph:
if node not in explored_nodes:
explored_nodes.extend(dfs(graph, node, explored_nodes=explored_nodes))
return ordered_graph
def dfs(graph, start_node, explored_nodes=None, stack=None):
"""
Given a graph as a dict of lists and a start node (a key in the graph dict)
perform a depth first search
"""
#print("dfs(g, start_node: {}, explored_nodes: {}, stack: {})".format(start_node, explored_nodes, stack))
if not explored_nodes:
explored_nodes = []
if not stack:
stack = []
stack.append(start_node)
tail = start_node
explored_nodes.append(tail)
#print("added start node {} to stack and explored nodes".format(start_node))
#print("stack: {}, en: {}".format(stack, explored_nodes))
try:
for head in graph[tail]:
#print("head: {}, en: {}".format(head, explored_nodes))
if head not in explored_nodes:
dfs(graph, head, explored_nodes, stack)
except KeyError:
# tail has no outgoing edges
pass
#print("stack pre-pop: {}".format(stack))
stack.pop()
#print("stack post-pop: {}".format(stack))
#print("start_node: {}".format(start_node))
# If current_label is set, we want to compute topological ordering
global current_label
global label_offset
global ordered_graph
if 'current_label' in globals():
#print("setting {} to {}".format(start_node, current_label))
ordered_graph[start_node] = current_label
current_label += label_offset
return explored_nodes
def reverse_graph(graph):
reversed_graph = {}
for vertex in graph:
for head in graph[vertex]:
if head not in reversed_graph:
reversed_graph[head] = []
reversed_graph[head].append(vertex)
return reversed_graph
def <API key>(graph):
reversed_graph = reverse_graph(graph)
<API key> = []
global current_label
current_label = 1
global label_offset
label_offset = 1
global ordered_graph
ordered_graph = {}
for node in reversed(list(reversed_graph.keys())):
if node not in <API key>:
<API key>.extend(
dfs(reversed_graph,
node,
explored_nodes=<API key>
)
)
return ordered_graph
def <API key>(graph):
# Kosaraju two-pass
<API key> = <API key>(graph)
rgft = dict([(v,k) for k,v in <API key>.items()])
explored_nodes = []
leader_nodes = []
for n in range(len(rgft), 0, -1):
node = rgft[n]
if node not in explored_nodes:
leader_nodes.append(node)
explored_nodes.extend(
dfs(graph,
node,
explored_nodes=explored_nodes
)
)
print(leader_nodes)
sccs = []
scc_explored_nodes = []
last_dfsr = []
for node in leader_nodes:
print("N: {}".format(node))
dfs_result = dfs(graph, node, explored_nodes=scc_explored_nodes)
print(" dfsr: {}, last_dfsr: {}".format(dfs_result, last_dfsr))
scc = list(set(dfs_result) - set(last_dfsr))
scc_explored_nodes.extend(scc)
scc_explored_nodes = list(set(scc_explored_nodes))
print(" explored: {}".format(scc_explored_nodes))
print(" scc: {}".format(scc))
last_dfsr = dfs_result
sccs.append(scc)
print(" sccs: {}".format(sccs))
return sccs |
"use strict";
require('../model/user.js');
var mongoose = require('mongoose'),
User = mongoose.model('Employee'),
_ = require('lodash');
exports.create = function(req, res){
var user = new User(req.body);
user.save(function(err){
if(err){
return res.status(400).send({message: err});
}else{
res.json(user);
}
});
};
exports.list = function(req, res) {
User.find().sort('-created').populate('user', 'username').exec(function(err, users) {
if (err) {
return res.status(400).send({
message: errorHandler.getErrorMessage(err)
});
} else {
res.json(users);
}
});
};
exports.update = function(req, res){
var id = req.body.id;
User.findById(id, function(err, user){
if(err) throw err;
user.FirstName = req.body.FirstName;
user.LastName = req.body.LastName;
user.save(function(err, result){
if(err) throw err;
res.json(result);
});
});
};
exports.delete = function (req, res) {
var id = req.body.id;
User.remove({_id: id},function (err) {
if (err) {
return res.status(400).send({
message: errorHandler.getErrorMessage(err)
});
} else {
res.json(User);
}
});
}; |
'use strict';
// Render text and html to the page.
(function(module) {
const homeView = {};
// TODO: Add any homeView logic here. Filtering, templates, handlebars.
// NOTE: homeView.doSomething = function() {};
// homeView.index = function() {
// $('#home-content').show().siblings().hide();
// Make homeView available on global scope.
module.homeView = homeView;
})(window); |
from . import services
def prep_rules(rules):
prepped = []
for rule in rules:
if rule['enabled']:
prepped.append(prep_rule(rule))
return prepped
def prep_rule(raw_rule):
rule = dict(raw_rule)
if rule['service'] != 'custom':
proto, port = services.decode_service(rule['service'])
if not (proto and port):
raise ValueError("Unknown service: {service}".format(
service=rule['service']
))
rule['proto'] = proto
rule['port'] = port
if not rule['comment']:
rule['comment'] = "{service} service ({proto}:{port})".format(
service=rule['service'],
proto=proto,
port=port
)
return rule |
import { getGreeting } from '../support/app.po';
describe('client-app', () => {
beforeEach(() => cy.visit('/'));
it('should display welcome message', () => {
// Custom command example, see `../support/commands.ts` file
cy.login('my-email@something.com', 'myPassword');
// Function helper example, see `../support/app.po.ts` file
getGreeting().contains('Welcome to client-app!');
});
}); |
package com.wt.dms.service.impl;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import java.util.UUID;
import javax.annotation.Resource;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.wicket.markup.html.form.upload.FileUpload;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.wt.dms.dao.CodeValueDao;
import com.wt.dms.exception.DmsException;
import com.wt.dms.model.CodeOBJ;
import com.wt.dms.model.CodeValue;
import com.wt.dms.model.CodeValueImport;
import com.wt.dms.model.<API key>;
import com.wt.dms.service.CodeValueService;
import com.wt.dms.util.ExcelUtils;
@Service(value = "CodeValueService")
@Transactional
public class <API key> implements CodeValueService {
@Resource
private CodeValueDao dao;
public static String objUuid;
public List<CodeValue> getAllCodeValue() {
List<CodeValue> allList = dao.getAll();
return allList;
}
public int <API key>() {
return dao.getAll().size();
}
public boolean updateCodeValue(CodeValue o, String objUuid) {
this.objUuid = objUuid;
return dao.editCodeValue(o, objUuid);
}
public List<CodeValue> <API key>(String id) {
return dao.findByIdOrName(id);
}
public List<CodeValue> <API key>(String id) {
return dao.findById(id);
}
public void deleteCodeValue(CodeValue o) {
dao.delete(o);
}
public int <API key>(String id) {
return <API key>(id).size();
}
public List<CodeValue> <API key>(String id) {
return <API key>(id);
}
public List<CodeValue> getCodeValueByMap(Map<String, String> porpertyMap,
Map<String, Object> searchMap, int firstResult, int maxResults) {
return dao.getCodeValueByMap(porpertyMap, searchMap, firstResult,
maxResults);
}
public int <API key>(Map<String, String> porpertyMap,
Map<String, Object> searchMap) {
return dao.<API key>(porpertyMap, searchMap);
}
public String checkValueExist(CodeValue v) {
return dao.checkValueExist(v);
}
public int getCount(Map<String, String> propertyMap,
Map<String, Object> searchMap) {
return dao.getCount(propertyMap, searchMap);
}
public List<Map<String, CodeValueImport>> importTemplate(CodeOBJ codeOBJ,
FileUpload fileUpload) throws RuntimeException, DmsException {
InputStream input = null;
File tempFile = null;
try {
byte[] bytes = fileUpload.getBytes();
tempFile = File
.createTempFile(UUID.randomUUID().toString(), ".tmp");
FileUtils.<API key>(tempFile, bytes);
Workbook wb = null;
try {
wb = new XSSFWorkbook(input = new FileInputStream(tempFile));
} catch (org.apache.poi.POIXMLException e) {// fileUpload.getInputStream()input
// = new
// FileInputStream(tempFile)
wb = new HSSFWorkbook(input = new FileInputStream(tempFile));
}
Sheet sheet = wb.getSheetAt(0);
int totalRowNum = sheet.<API key>();
if (totalRowNum < 2) {
throw new DmsException("!");
}
if (sheet.getRow(0).<API key>() != 7) {
throw new DmsException("!");
}
Map<String, CodeValueImport> notPass = new TreeMap();
Map<String, CodeValueImport> allRecords = new HashMap();
Map<String, String> codeValues = new HashMap();
Map<String, String> preCodeValues = new HashMap();
Map<String, String> biMap = new HashMap();// map key: value:
int emptyPreValueCount = 0;
for (int i = 1; i <= totalRowNum; i++) {
Row row = sheet.getRow(i);
if (row == null) {
continue;
}
String cValCode = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(0)));
String cValName = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(1)));
String cValShortName = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(2)));
String pCValCode = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(3)));
String cValLevel = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(4)));
String cValSn = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(5)));
String cValComment = StringUtils.trimToEmpty(ExcelUtils
.changeType(row.getCell(6)));
CodeValueImport cVal = new CodeValueImport(String.valueOf(i),
cValCode, cValName, cValShortName, pCValCode,
cValLevel, cValSn, cValComment);
if (StringUtils.isEmpty(cVal.getCValCode())) {
cVal.setMark(cVal.getMark() + " ");
notPass.put(cVal.getRowNum(), cVal);
}
if (StringUtils.isEmpty(cVal.getCValName())) {
cVal.setMark(cVal.getMark() + " ");
notPass.put(cVal.getRowNum(), cVal);
}
if (codeValues.containsValue(cVal.getCValCode())) {
String rowNum = biMap.get(cVal.getCValCode());
cVal.setMark(cVal.getMark() + " " + rowNum + "");
notPass.put(cVal.getRowNum(), cVal);
}
if (codeValues.containsValue(cVal.getCValName())) {
String rowNum = biMap.get(cVal.getCValName());
cVal.setMark(cVal.getMark() + " " + rowNum + "");
notPass.put(cVal.getRowNum(), cVal);
}
if (StringUtils.equals(cVal.getCValCode(), cVal.getPCValCode())) {
cVal.setMark(cVal.getMark() + " ");
notPass.put(cVal.getRowNum(), cVal);
}
if (StringUtils.isNotEmpty(cVal.getCValCode())) {
codeValues.put(cVal.getRowNum(), cVal.getCValCode());
biMap.put(cVal.getCValCode(), cVal.getRowNum());
}
if (StringUtils.isNotEmpty(cVal.getCValName())) {
codeValues.put(cVal.getRowNum(), cVal.getCValName());
biMap.put(cVal.getCValName(), cVal.getRowNum());
}
if (StringUtils.isNotEmpty(cVal.getPCValCode())) {
preCodeValues.put(cVal.getRowNum(), cVal.getPCValCode());
}
allRecords.put(cVal.getRowNum(), cVal);
}
// List<Map<String, CodeValueImport>> lists =
// Lists.newArrayList(notPass, allRecords);
List<Map<String, CodeValueImport>> lists = new ArrayList();
lists.add(notPass);
lists.add(allRecords);
return lists;
} catch (IOException e) {
throw new RuntimeException(e);
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (tempFile != null) {
tempFile.delete();
}
}
}
public <API key> importTemplateToDB(CodeOBJ codeOBJ,
Map<String, CodeValueImport> notPass,
Map<String, CodeValueImport> allRecords) {
Map<String, CodeValueImport> failure = new TreeMap();
failure.putAll(notPass);
for (Iterator<String> it = notPass.keySet().iterator(); it.hasNext();) {
allRecords.remove(it.next());
}
int successCount = 0;
for (Iterator<Map.Entry<String, CodeValueImport>> it = allRecords
.entrySet().iterator(); it.hasNext();) {
Map.Entry<String, CodeValueImport> e = it.next();
CodeValue codeValue = e.getValue();
codeValue.setCodeObjUuid(codeOBJ.getCodeObjUuid());
String flag = dao.checkValueExist(codeValue);
if (!StringUtils.isEmpty(flag)) {
CodeValueImport cri = e.getValue();
cri.setMark(flag);
failure.put(e.getKey(), cri);
continue;
}
if (dao.editCodeValue(e.getValue().getCodeValue(),
codeOBJ.getCodeObjUuid())) {
++successCount;
}
}
<API key> importResult = new <API key>(
successCount, failure);
return importResult;
}
} |
using System;
using System.Collections.Generic;
using System.Reflection;
namespace DvachBrowser3.TextRender
{
<summary>
Состояние атрибутов.
</summary>
public sealed class <API key> : <API key>
{
private readonly Dictionary<string, <API key>> current = new Dictionary<string, <API key>>(StringComparer.OrdinalIgnoreCase);
private readonly Dictionary<string, Stack<<API key>>> all = new Dictionary<string, Stack<<API key>>>(StringComparer.OrdinalIgnoreCase);
<summary>
Атрибуты.
</summary>
public IDictionary<string, <API key>> Attributes
{
get { return current; }
}
<summary>
Добавить атрибут.
</summary>
<param name="attribute">Атрибут.</param>
public void AddAttribute(<API key> attribute)
{
if (attribute == null || attribute.Id == null)
{
return;
}
if (!all.ContainsKey(attribute.Id))
{
all[attribute.Id] = new Stack<<API key>>();
}
all[attribute.Id].Push(attribute);
current[attribute.Id] = attribute;
}
<summary>
Удалить атрибут.
</summary>
<param name="attribute">Атрибут.</param>
public void RemoveAttribute(<API key> attribute)
{
if (attribute == null || attribute.Id == null)
{
return;
}
<API key> top = null;
if (all.ContainsKey(attribute.Id))
{
var stack = all[attribute.Id];
if (stack.Count > 0)
{
stack.Pop();
}
if (stack.Count > 0)
{
top = stack.Peek();
}
else
{
all.Remove(attribute.Id);
}
}
if (top != null)
{
current[attribute.Id] = top;
}
else
{
current.Remove(attribute.Id);
}
}
<summary>
Очистить.
</summary>
public void Clear()
{
current.Clear();
all.Clear();
}
<summary>
Получить read-only копию.
</summary>
<returns>Клон состояния.</returns>
public <API key> GetReadonlyCopy()
{
return new <API key>(this);
}
}
} |
module Frekwenza
class StopWords
attr_reader :stop_words
def initialize(sw)
if sw.kind_of?(String)
string = read(sw)
build_list(string)
else
@stop_words = sw
end
end
private
def read(file)
string = ""
File.open(file, "r") do |f|
string = f.read
end
string
end
def build_list(string)
@stop_words = string.downcase.gsub(/[^a-z0-9]/, ' ').split(' ').uniq
end
end
end |
import sys
reload(sys)
sys.setdefaultencoding("UTF8")
import os
import uuid
from flask import *
from flask.ext.socketio import SocketIO, emit
from flask_socketio import join_room, leave_room
import psycopg2
import psycopg2.extras
app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret!'
socketio = SocketIO(app)
messages = []
users = {}
def connect_to_db():
return psycopg2.connect('dbname=movie_reviews user=postgres password=Cmpgamer1 host=localhost')
loadMessagesQuery = 'SELECT username, content FROM messages INNER JOIN users ON messages.senderid = users.id WHERE messages.room_id = %s ORDER BY messages.id DESC LIMIT 10' # keep track of last 50 messages
@socketio.on('connect', namespace='/movie')
def makeConnection():
session['uuid'] = uuid.uuid1()
print ('Connected')
@socketio.on('identify', namespace='/movie')
def on_identify(user):
print('Identify: ' + user)
users[session['uuid']] = {'username' : user}
movieSearchQuery = "SELECT movie_title FROM movies WHERE movie_title LIKE %s"
@socketio.on('search', namespace='/movie')
def search(searchItem):
print("I am here")
db = connect_to_db()
cur = db.cursor(cursor_factory=psycopg2.extras.DictCursor)
searchQuery = ""
results = []
queryResults = []
searchTerm = '%{0}%'.format(searchItem)
cur.execute(mosearchQuery, (searchTerm,));
cur.execute(movieSearchQuery, (searchTerm,));
results = cur.fetchall();
#print(results)
# for i in range(len(results)):
# resultsDict = {'text' : results[i]['content'], 'name' : results[i]['username']}
# queryResults.append(resultsDict)
emit('searchResults', queryResults)
cur.close()
db.close()
# @app.route('/chat')
# def chat():
# if 'username' in session:
# return render_template('chat.html') # chat.html
# else:
# return render_template('index.html')
#TODO make new search functions displaying queries
@app.route('/', methods=['GET', 'POST'])
def index():
if 'username' in session:
return render_template('index.html')
else:
return render_template('index.html')
<API key> = 'SELECT * FROM users WHERE username = %s LIMIT 1'
registerNewUser = "INSERT INTO users VALUES (default, %s, %s, %s, crypt(%s, gen_salt('md5'))) RETURNING users.id"
@app.route('/register', methods=['GET', 'POST'])
def register():
redirectPage = 'index.html'
error = ''
if request.method == 'POST':
db = connect_to_db()
cur = db.cursor(cursor_factory=psycopg2.extras.DictCursor)
firstName = request.form['firstName']
lastName = request.form['lastName']
username = request.form['registerUsername']
password = request.form['registerPassword']
password2 = request.form['<API key>']
if username.isspace():
error += 'Username is required.\n'
if firstName.isspace():
error += 'First Name is required.\n'
if lastName.isspace():
error += 'Last Name is required.\n'
if password.isspace():
error += 'Password is required.\n'
if password2.isspace():
error += 'Password must be entered in twice.\n'
if password != password2:
error += 'Passwords do not match.\n'
if len(error) == 0:
cur.execute(<API key>, (username,)) # check whether user already exists
if cur.fetchone():
error += 'Username is already taken.\n'
else:
cur.execute(registerNewUser, (firstName, lastName, username, password)) # add user to database
cur.close()
db.close()
if len(error) != 0:
redirectPage = 'index.html'
if len(error) != 0:
pass
# flash error message
return render_template(redirectPage, error=error)
loginQuery = 'SELECT * from users WHERE username = %s AND password = crypt(%s, password)'
getRoomQuery = "SELECT * FROM room_subscriptions WHERE user_id = %s"
@app.route('/login', methods=['GET', 'POST'])
def login():
redirectPage = 'index.html'
error = ''
if request.method == 'POST':
db = connect_to_db()
cur = db.cursor(cursor_factory=psycopg2.extras.DictCursor)
username = request.form['username']
pw = request.form['password']
cur.execute(loginQuery, (username, pw))
results = cur.fetchone()
cur.close()
db.close()
if not results: # user does not exist
error += 'Incorrect username or password.\n'
else:
session['username'] = results['username']
session['id'] = results['id']
results = []
return redirect(url_for('chat'))
if len(error) != 0:
pass
# flash error
return render_template(redirectPage, error=error)
@app.route('/logout', methods=['GET', 'POST'])
def logout():
session.clear()
return redirect(url_for('index'))
# start the server
if __name__ == '__main__':
socketio.run(app, host=os.getenv('IP', '0.0.0.0'), port =int(os.getenv('PORT', 8080)), debug=True) |
// @flow
/* eslint-disable react/no-multi-comp */
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { withStyles, createStyleSheet } from 'material-ui/styles';
import Paper from 'material-ui/Paper';
import Tabs, { Tab } from 'material-ui/Tabs';
import { browserHistory } from 'react-router';
import SwipeableViews from '<API key>';
import ScrollToTop from './ScrollToTop'
const TabContainer = props =>
<div style={{ padding: 20 }}>
{props.children}
</div>;
TabContainer.propTypes = {
children: PropTypes.node.isRequired,
};
const styleSheet = createStyleSheet('<API key>', theme => ({
root: {
width: '100%',
},
appBar: {
backgroundColor: theme.palette.primary[500],
color: theme.palette.getContrastText(theme.palette.primary[500]),
},
}));
class <API key> extends Component {
state = {
index: 0,
};
handleChange = (event, index) => {
this.setState({ index });
switch (index) {
case 0:
return browserHistory.push('/');
case 1:
return browserHistory.push('/socialgame');
case 2:
return browserHistory.push('/news');
case 3:
return browserHistory.push('/sports');
case 4:
return browserHistory.push('/animegame');
case 5:
return browserHistory.push('/lives');
case 6:
return browserHistory.push('/entertainers');
// case 0:
// return browserHistory.push('/');
// case 1:
// return browserHistory.push('/counter');
default:
return browserHistory.push('/');
}
};
handleChangeIndex = index => {
this.setState({ index });
switch (index) {
case 0:
return browserHistory.push('/');
case 1:
return browserHistory.push('/socialgame');
case 2:
return browserHistory.push('/news');
case 3:
return browserHistory.push('/sports');
case 4:
return browserHistory.push('/animegame');
case 5:
return browserHistory.push('/lives');
case 6:
return browserHistory.push('/entertainers');
// case 0:
// return browserHistory.push('/');
// case 1:
// return browserHistory.push('/counter');
default:
return browserHistory.push('/');
}
};
render() {
const classes = this.props.classes;
return (
<div>
<div className={classes.appBar}>
<Tabs
index={this.state.index}
onChange={this.handleChange}
scrollable
scrollButtons="auto"
>
<Tab label="IT" />
<Tab label="" />
<Tab label="" />
<Tab label="" />
<Tab label="" />
<Tab label="" />
<Tab label="" />
{/*<Tab label="Home" />
<Tab label="Counter" />
<Tab label="Item Seven" />*/}
</Tabs>
</div>
<ScrollToTop>
<SwipeableViews index={this.state.index} onChangeIndex={this.handleChangeIndex}>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
{/*<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{this.props.children}</TabContainer>
<TabContainer>{'Item Seven'}</TabContainer>*/}
</SwipeableViews>
</ScrollToTop>
</div>
);
}
}
<API key>.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styleSheet)(<API key>); |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using <API key>.Interpreter;
namespace <API key>
{
struct ApplyContext
{
public readonly IEnumerator<Sentence> Style;
public readonly PositionStep[] Position;
public readonly Action<string, Sentence, bool, int> Write;
public readonly Func<Sentence, bool> Written;
public readonly Action<Sentence[], Sentence, bool> Spawn;
public readonly PositionStep[] SpawnerPosition;
public readonly GlobalState GlobalState;
public readonly SentenceScope SentenceScope;
public readonly ParentScope ParentScope;
public readonly ReducedsScope ReducedsScope;
public readonly WriteAsScope WriteAsScope;
public readonly bool Scan;
public readonly bool Strict;
public readonly bool SpawnerCanCopy;
public readonly Sentence Spawner;
public readonly Sentence[] Previous;
public ApplyContext(IEnumerator<Sentence> style, PositionStep[] position,
Action<string, Sentence, bool, int> write, Func<Sentence, bool> written,
Action<Sentence[], Sentence, bool> spawn, PositionStep[] spawnerPosition, GlobalState globalState,
SentenceScope sentenceScope, ParentScope parentScope, ReducedsScope reducedsScope,
WriteAsScope writeAsScope, bool scan, bool strict, bool spawnerCanCopy,
Sentence spawner, params Sentence[] previous)
{
Style = style;
Position = position;
Write = write;
Written = written;
Spawn = spawn;
SpawnerPosition = spawnerPosition;
GlobalState = globalState;
SentenceScope = sentenceScope;
ParentScope = parentScope;
ReducedsScope = reducedsScope;
WriteAsScope = writeAsScope;
Scan = scan;
Strict = strict;
SpawnerCanCopy = spawnerCanCopy;
Spawner = spawner;
Previous = previous;
}
public ApplyContext Copy(Sentence caller)
{
return this.Copy(caller: caller, style: Style, spawnerPosition: SpawnerPosition, scan: Scan,
strict: Strict, spawnerCanCopy: SpawnerCanCopy, spawner: Spawner);
}
public ApplyContext Copy(Sentence caller, IEnumerator<Sentence> style, PositionStep[] spawnerPosition,
bool scan, bool spawnerCanCopy, Sentence spawner)
{
return this.Copy(caller: caller, style: style, spawnerPosition: spawnerPosition, scan: scan,
strict: Strict, spawnerCanCopy: spawnerCanCopy, spawner: spawner);
}
public ApplyContext Copy(Sentence caller, bool strict)
{
return this.Copy(caller: caller, style: Style, spawnerPosition: SpawnerPosition, scan: Scan,
strict: strict, spawnerCanCopy: SpawnerCanCopy, spawner: Spawner);
}
ApplyContext Copy(Sentence caller, IEnumerator<Sentence> style, PositionStep[] spawnerPosition, bool scan,
bool strict, bool spawnerCanCopy, Sentence spawner)
{
return new ApplyContext(
style: style,
position: Position,
write: Write,
written: Written,
spawn: Spawn,
spawnerPosition: spawnerPosition,
globalState: GlobalState,
sentenceScope: SentenceScope,
parentScope: ParentScope,
reducedsScope: ReducedsScope,
writeAsScope: WriteAsScope,
scan: scan,
strict: strict,
spawnerCanCopy: spawnerCanCopy,
spawner: spawner,
previous: Previous.Concat(new Sentence[] { caller }).ToArray());
}
}
} |
class Solution {
public:
int <API key>(int a) {
if (a < 2) {
return a;
}
long result = 0, base = 1;
for (int i = 9; i >= 2; --i) {
while (a % i == 0) {
result += i * base;
base *= 10;
a /= i;
}
}
return (a == 1 && result <= INT_MAX) ? result : 0;
}
}; |
package ProgramControl;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import mp3agic.ID3v2;
import mp3agic.<API key>;
import mp3agic.Mp3File;
import mp3agic.<API key>;
public class FileOrganizer extends FileController {
public FileOrganizer() {
// No tasks for constructor
}
//Starting Method
public void Organize()
{
PullFilesFromSubs();
DeleteSubs(MainController.CurrentDirectory);
ArrayList<String> OrganizationOrder = MainController.OSSW.<API key>();
File[] FilesInMainDir = MainController.CurrentDirectory.listFiles();
ArrayList<File> MP3sInMainDir = new ArrayList<>();
for(File curFile : FilesInMainDir)
{
if(curFile.isFile())
{
MP3sInMainDir.add(curFile);
}
else
{
ArrayList<File> FoundFiles = new ArrayList<>();
FoundFiles = findMP3s(curFile.getAbsoluteFile());
for(File cur : FoundFiles)
{
MP3sInMainDir.add(cur);
}
}
}
for(File temp : MP3sInMainDir)
{
Mp3File tempMp3 = null;
try
{
tempMp3 = new Mp3File(temp.getAbsolutePath());
}
catch (<API key> e)
{
}
catch (<API key> e)
{
}
catch (IOException e)
{
}
ID3v2 CurTag = tempMp3.getId3v2Tag();
StringBuffer NewName = new StringBuffer();
for(int k = 0; k < OrganizationOrder.size(); k++)
{
if(OrganizationOrder.get(k).equals("Genre"))
{
NewName.append("\\" + CurTag.getGenreDescription());
}
else if(OrganizationOrder.get(k).equals("Artist"))
{
NewName.append("\\" + CurTag.getArtist());
}
else if(OrganizationOrder.get(k).equals("Album"))
{
NewName.append("\\" + CurTag.getAlbum());
}
else if(OrganizationOrder.get(k).equals("Year"))
{
NewName.append("\\" + CurTag.getYear());
}
}
NewName.append("\\" + temp.getName());
StringBuffer NewLocation = new StringBuffer();
NewLocation.append(MainController.CurrentDirectory);
if(NewLocation.charAt((NewLocation.length() - 1)) == '\\')
{
NewLocation.deleteCharAt((NewLocation.length() - 1));
}
NewLocation.append(NewName.toString());
StringBuffer TempName = new StringBuffer();
TempName.append(temp.getName());
saveFile((new File(temp.getAbsolutePath())), (new File(NewLocation.toString())), tempMp3, TempName, true);
}
}
private void PullFilesFromSubs()
{
ArrayList<File> mp3s = findMP3s(MainController.CurrentDirectory);
for(File temp : mp3s)
{
StringBuffer test = new StringBuffer();
test.append("\\" + temp.getName());
try {
saveFile((new File(temp.getAbsolutePath())), (MainController.CurrentDirectory), (new Mp3File(temp.getAbsolutePath())), test, true);
} catch (<API key> e) {
} catch (<API key> e) {
} catch (IOException e) {
}
}
}
private void DeleteSubs(File Directory)
{
File[] Files = Directory.listFiles();
for(File CurFile : Files)
{
if(CurFile.isDirectory())
{
File[] FilesInSub = CurFile.listFiles();
if(FilesInSub.length == 0)//TODO
{
for(File temp : FilesInSub)
{
DeleteSubs(temp);
}
CurFile.delete();
}
else
{
CurFile.delete();
}
}
}
}
// private ArrayList<String> FindFolders(File Directory, String OrderBy)
// File[] MP3s = Directory.listFiles();
// int CurrentOrganizer = -1;
// if(OrderBy.equals("Genre"))
// CurrentOrganizer = 0;
// else if(OrderBy.equals("Artist"))
// CurrentOrganizer = 1;
// else if(OrderBy.equals("Album"))
// CurrentOrganizer = 2;
// else if(OrderBy.equals("Year"))
// CurrentOrganizer = 3;
// ArrayList<String> FoldersToMake = new ArrayList<>();
// for(File Temp : MP3s)
// Mp3File TempMp3 = null;
// try
// TempMp3 = new Mp3File(Temp.getAbsolutePath());
// catch (<API key> e)
// catch (<API key> e)
// catch (IOException e)
// boolean InList = false;
// for(int i = 0; i < FoldersToMake.size(); i++)
// if(CurrentOrganizer == 0)
// if(TempMp3.getId3v2Tag().getGenreDescription().equals(FoldersToMake.get(i)))
// InList = true;
// else if(CurrentOrganizer == 1)
// if(TempMp3.getId3v2Tag().getArtist().equals(FoldersToMake.get(i)))
// InList = true;
// else if(CurrentOrganizer == 2)
// if(TempMp3.getId3v2Tag().getAlbum().equals(FoldersToMake.get(i)))
// InList = true;
// else if(CurrentOrganizer == 3)
// if(TempMp3.getId3v2Tag().getYear().equals(FoldersToMake.get(i)))
// InList = true;
// if(!InList)
// if(CurrentOrganizer == 0)
// FoldersToMake.add(TempMp3.getId3v2Tag().getGenreDescription());
// else if(CurrentOrganizer == 1)
// FoldersToMake.add(TempMp3.getId3v2Tag().getArtist());
// else if(CurrentOrganizer == 2)
// FoldersToMake.add(TempMp3.getId3v2Tag().getAlbum());
// else if(CurrentOrganizer == 3)
// FoldersToMake.add(TempMp3.getId3v2Tag().getYear());
// return FoldersToMake;
} |
#include <iostream>
#include <seqan/store.h>
#include <seqan/arg_parse.h>
#include <seqan/misc/misc_interval_tree.h>
#include <seqan/parallel.h>
using namespace seqan;
// define used types
typedef FragmentStore<> TStore;
typedef Value<TStore::TAnnotationStore>::Type TAnnotation;
typedef TAnnotation::TId TId;
typedef TAnnotation::TId TPos;
typedef IntervalAndCargo<TPos, TId> TInterval;
typedef IntervalTree<TPos, TId> TIntervalTree;
typedef Value<TStore::TAlignedReadStore>::Type TAlignedRead;
// define options
struct Options
{
std::string annotationFileName;
std::string alignmentFileName;
};
// 1. Parse command line and fill Options object
ArgumentParser::ParseResult parseOptions(Options & options, int argc, char const * argv[])
{
ArgumentParser parser("gene_quant");
setShortDescription(parser, "A simple gene quantification tool");
setVersion(parser, "1.0");
setDate(parser, "Sep 2012");
addArgument(parser, ArgParseArgument(ArgParseArgument::INPUTFILE));
addArgument(parser, ArgParseArgument(ArgParseArgument::INPUTFILE));
addUsageLine(parser, "[\\fIOPTIONS\\fP] <\\fIANNOTATION FILE\\fP> <\\fIREAD ALIGNMENT FILE\\fP>");
// Parse command line
ArgumentParser::ParseResult res = parse(parser, argc, argv);
if (res == ArgumentParser::PARSE_OK)
{
// Extract option values
getArgumentValue(options.annotationFileName, parser, 0);
getArgumentValue(options.alignmentFileName, parser, 1);
}
return res;
}
// 2. Load annotations and alignments from files
bool loadFiles(TStore & store, Options const & options)
{
std::ifstream alignStream(toCString(options.alignmentFileName));
std::ifstream annoStream(toCString(options.annotationFileName));
if (!alignStream.good()) {
std::cerr << "Could not open the specified SAM file " << options.annotationFileName << std::endl;
return false;
}
read(alignStream, store, Sam());
std::cout << "read " << length(store.alignedReadStore) << " aligned reads" << std::endl;
if (!annoStream.good()) {
std::cerr << "Could not open the specified GFF file " << options.annotationFileName << std::endl;
return false;
}
read(annoStream, store, Gtf());
std::cout << "read " << length(store.annotationStore) << " annotations" << std::endl;
return true;
}
// 3. Extract intervals from gene annotations (grouped by contigId)
void <API key>(String<String<TInterval> > & intervals, TStore const & store)
{
Iterator<TStore const, AnnotationTree<> >::Type it = begin(store, AnnotationTree<>());
if (!goDown(it)) {
return;
}
resize(intervals, length(store.contigStore));
do {
TPos beginPos = getAnnotation(it).beginPos;
TPos endPos = getAnnotation(it).endPos;
TId contigId = getAnnotation(it).contigId;
if (endPos < beginPos)
std::swap(beginPos, endPos);
appendValue(intervals[contigId], TInterval(beginPos, endPos, value(it)));
} while (goRight(it));
}
// 4. Construct interval trees
void <API key>(String<TIntervalTree> & intervalTrees, String<String<TInterval> > const & intervals)
{
resize(intervalTrees, length(intervals));
for (unsigned i=0; i<length(intervals); ++i) {
createIntervalTree(intervalTrees[i], intervals[i] );
}
}
// 5. Count reads per gene
void countReadsPerGene(String<unsigned> & readsPerGene, String<TIntervalTree> const & intervalTrees, TStore const & store)
{
typedef Iterator<TStore::TAlignedReadStore const, Rooted>::Type <API key>;
resize(readsPerGene, length(store.annotationStore), 0);
for (<API key> it = begin(store.alignedReadStore); !atEnd(it); goNext(it)) {
}
}
int main(int argc, char const * argv[])
{
Options options;
TStore store;
String<String<TInterval> > intervals;
String<TIntervalTree> intervalTrees;
String<unsigned> readsPerGene;
ArgumentParser::ParseResult res = parseOptions(options, argc, argv);
if (res != ArgumentParser::PARSE_OK)
return res == ArgumentParser::PARSE_ERROR;
if (!loadFiles(store, options))
return 1;
<API key>(intervals, store);
<API key>(intervalTrees, intervals);
countReadsPerGene(readsPerGene, intervalTrees, store);
return 0;
} |
Groups = Proto.clone().newSlots({
protoType: "Groups",
groups: [],
}).setSlots({
add: function(g)
{
this.groups().push(g)
},
groupWithKey: function(k)
{
for (var i = 0; i < this.groups().length; i ++)
{
var g = this.groups()[i]
if (g.key() == k)
{
return g
}
}
return null
}
})
WaveStrip = Group.clone().newSlots({
protoType: "WaveStrip",
spacing: 500,
itemXScale: 1,
itemYScale: 1,
max: 5,
orientation: "x",
key: "1",
waveGroup: null
}).setSlots({
init: function()
{
Group.init.apply(this)
this.addSquares()
},
setWaveGroup: function(w)
{
this._waveGroup = w
// var black = new THREE.Color("#000000")
var block = w.block()
if (!block.doneRendered())
{
for (var y = 0; y < w.block().current()*2 + 1; y ++)
{
var h = y
if (w.block().isTop())
{
h = this.items().length - y - 1
}
var triangle = this.items()[h]
//console.log("triangle = ", triangle.x(), ",", triangle.y())
triangle.darken()
var mover = TriangleBlockMover.clone().setBlock(block)
triangle.addMover(mover)
block.addBlockMover(mover)
}
if (w.block().isDone())
{
w.block().setDoneRendered(true)
}
}
},
setMover: function(name, m)
{
console.log('set mover')
this.setItemMover(name, m)
// this.items().forEach(function(item){
// console.log(item)
},
addXY: function(x, y, inverted)
{
var h = Math.sqrt(3)/2.0
var xoffset = 0
if (inverted)
{
xoffset = .5
}
var s = Prism.clone()
s.reset()
s._object.position.x = (x + xoffset) + y/2
s._object.position.y = y*.869
if (!inverted)
{
s._object.position.y -= h/3
}
s._object.rotation.z = Math.PI * (1-inverted) - Math.PI/2
s.setGroupX(x)
s.setGroupY(y)
s.setupColor()
this.addItem(s)
},
reset: function()
{
this.items().forEach(function(prism)
{
prism.setupColor()
prism.removeMovers()
})
},
addRowAtY: function(y, inverted)
{
var xmax = 1
for (var x = 0; x < xmax; x ++)
{
this.addXY(x, y, 0)
this.addXY(x, y, 1)
}
},
addSquares: function()
{
var ymax = 9
for (var y = 0; y < ymax; y ++)
{
var invert = Math.abs(y) % 2 == 0
this.addRowAtY(y, 0)
}
},
setupDropMover: function()
{
for (var y = 0; y < this.items().length; y ++)
{
var triangle = this.items()[y]
triangle._object.position.z = 14 - Math.floor(y/2)*1.5
triangle.setMover(triangle, TriangleDropMover.clone())
}
}
})
BlackBlock = Group.clone().newSlots({
protoType: "BlackBlock",
current: 4,
max: 4,
goingDown: true,
isDone: false,
isTop: false,
rebirthCountdown: 0,
doneRendered: false,
blockMovers: null
}).setSlots({
init: function()
{
this.setBlockMovers([])
},
addBlockMover: function(aMover)
{
this.blockMovers().push(aMover)
return this
},
startBlockMovers: function()
{
this.blockMovers().forEach(function(aMover){
aMover.begin();
});
},
reset: function()
{
this.setMax(Math.floor(3 + Math.random()*3))
this._isTop = !this._isTop
if (this.isTop())
{
Cycle.willBeginTopBlock()
this._current = 0
this._goingDown = false
}
else
{
Cycle.<API key>()
this._current = this.max()
this._goingDown = true
}
this._doneRendered = false
this.setBlockMovers([])
this._isDone = false
},
finish: function()
{
this._isDone = true
this._rebirthCountdown = Math.floor(this._max*1.5)
if (!this._isTop)
{
this._rebirthCountdown = Math.floor(this._rebirthCountdown/2)
}
},
update: function()
{
if (!this._isDone)
{
if (this._goingDown)
{
this._current
if (this._current == 0)
{
this.finish()
}
}
else
{
this._current ++
if (this._current == this._max)
{
if (this._isTop)
{
this.finish()
}
this._goingDown = true
}
}
}
if (this._rebirthCountdown)
{
this._rebirthCountdown
if (this._rebirthCountdown == 0)
{
this.reset()
}
}
}
})
WaveGroup = Group.clone().newSlots({
protoType: "WaveGroup",
spacing: 500,
itemXScale: 1,
itemYScale: 1,
max: 5,
orientation: "x",
key: "1",
currentX: 0,
//cachedStrips: null,
maxStripCount: 40,
block: BlackBlock.clone(),
rate: 4,
}).setSlots({
init: function()
{
Group.init.apply(this)
//this.setCachedStrips([])
this.addStrip()
this._object.position.y -= 3.5
for (var x = 0; x < this.maxStripCount(); x++)
{
this.addStrip()
}
Visual.cycle().position().x += this.maxStripCount() - 16
this.block().reset()
},
removeStrip: function()
{
var item = this.items().first()
if (item && this.items().length > this.maxStripCount())
{
//this.cachedStrips().push(item)
this.removeItem(item)
}
},
newStrip: function()
{
//var strip = this.cachedStrips().pop()
//if (strip == null)
strip = WaveStrip.clone()
return strip
},
addStrip: function()
{
this._currentX ++
var strip = this.newStrip()
strip.setX(this._currentX)
this.removeStrip()
this.addItem(strip)
/*
var firstStrip = this._items[0]
if (firstStrip)
{
strip.copyMoversFrom(firstStrip)
}
*/
return strip
},
update: function()
{
Group.update.apply(this)
this._t ++
var rate = this.rate()
//Visual.camera().position.x += 1/rate;
Visual.cycle().position().x += 1/rate;
if (this._t % rate == 0)
{
var strip = this.addStrip()
strip.setupDropMover()
this._block.update()
strip.setWaveGroup(this)
//Visual.cycle().position().x = strip.x();
}
}
})
Groups.add(WaveGroup) // for 0 key
Groups.add(WaveGroup) |
// MessageCenter.h
// Auto
#import <Foundation/Foundation.h>
#import "NSObject+SingletoneObject.h"
@class BaseModel;
@interface MessageCenter : NSObject
/**
* Shows message view to user
*
* @param message Message text
*/
+ (void)showMessage:(NSString*)message;
/**
* Shows error message to user if 'error' exist
* Calls +showErrorIfExist:error:otherwisePerform: internally
*
* @param error Error object for generating a message
*/
+ (void)showError:(NSError*)error;
/**
* Shows error message to user if 'error' exist, otherwise invoke 'block'
* Calls +showErrorIfExist:error:otherwisePerform: internally
*
* @param error Error object for generating a message
* @param block Handler if error is nil
*/
+ (void)showErrorIfExist:(NSError*)error otherwisePerform:(void (^)(void))block;
/**
* Shows error message to user if 'error' exist and invoke 'errorBlock', otherwise invoke 'block'
*
* @param error Error object for generating a message
* @param errorBlock Handler if error is exist
* @param block Handler if error is nil
*/
+ (void)showErrorIfExist:(NSError*)error error:(void (^)(void))errorBlock otherwisePerform:(void (^)(void))block;
@end |
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the GamesHelper. For example:
# describe GamesHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# expect(helper.concat_strings("this","that")).to eq("this that")
# end
# end
# end
RSpec.describe GamesHelper, :type => :helper do
fixtures :nonograms
context '#stage_message' do
it 'i have no idea ow to test this'
end
context '#top_players' do
it 'i have no idea how to test this either'
end
end |
import { test, moduleFor } from 'ember-qunit';
moduleFor('controller:lookup-refund', '<API key>', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
// Replace this with your real tests.
test('it exists', function() {
var controller = this.subject();
ok(controller);
}); |
# Entity-Resolution
Data Science: Text Analysis and Entity Resolution in F
Entity resolution is a common, yet difficult problem in data cleaning and integration.
Entity Resolution (ER) refers to the task of finding records in a dataset that refer to the same entity across different
data sources (e.g., data files, books, websites, databases). ER is necessary when joining datasets based on entities that
may or may not share a common identifier (e.g., database key, URI, National identification number), as may be the case due
to differences in record shape, storage location, and/or curator style or preference. A dataset that has undergone ER may
be referred to as being cross-linked.
Used data science techniques: Bag-of-Words, Term-Frequency/<API key> TF-IDF, Cosine Similarity.
Programming language: F |
import logging
import json
import redis
import sys
import urllib
import os
from urlparse import urlparse
from pylons import request, response, session, tmpl_context as c, url
from pylons.decorators import jsonify
from pylons.controllers.util import abort, redirect
from mapofinnovation.lib.base import BaseController, render
log = logging.getLogger(__name__)
class UifuncController(BaseController):
def index(self):
# Return a rendered front page template
markers = []
indices = {
"name": "name",
"city": "city",
"country": "country",
"website": "primary_website",
"primarytype": "primary_type",
"multitypes": "types_multiple",
"description": "description",
"latitude": "latitude",
"longitude":"longitude",
"services": "services"
}
if os.environ.get("REDIS_URL") :
redis_url = os.environ.get("REDIS_URL")
else:
redis_url = "localhost"
r = redis.from_url(redis_url)
i = 0
for key in r.scan_iter():
marker = {}
row = r.hgetall(key)
for header in indices.keys():
marker[header] = unicode(row[str(indices[header])], errors='replace')
markers.append(marker)
c.markers = json.dumps(markers)
return render('/makermap.html')
def wikipage(self,id=None):
#Return a wiki for the given space
if os.environ.get("REDIS_URL") :
redis_url = os.environ.get("REDIS_URL")
else:
redis_url = "localhost"
r = redis.from_url(redis_url)
if id is None :
return 'Provide a valid space id'
elif r.exists(id):
data = r.hgetall(id)
addresstext = str(data['street_address']).decode("ISO-8859-1")
websitetext = urllib.unquote(data['primary_website']).decode('utf8')
return render('/wikipage.html',extra_vars={'last_updated':str(data['last_updated']),'name':str(data['name']),'status':str(data['status']),'website_url':websitetext,'primarytype':str(data['primary_type']),'secondarytype':'','space_description':str(data['description']),'address':addresstext})
else :
return 'There is no space with this id. Please recheck and submit'
def about(self):
return render('/about.html')
def goals(self):
return render('/goals.html')
def userDocs(self):
return render('/user-documentation.html')
def devDocs(self):
return render('/<API key>.html') |
package persistence
import (
"log"
"superstellar/backend/pb"
"strconv"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/dynamodb"
)
type ScoreBoardReader struct {
adapter *DynamoDbAdapter
}
func NewScoreBoardReader(adapter *DynamoDbAdapter) *ScoreBoardReader {
return &ScoreBoardReader{
adapter: adapter,
}
}
func (reader *ScoreBoardReader) ReadScoreBoard() *pb.ScoreBoard {
queryInput := &dynamodb.QueryInput{
TableName: aws.String("<API key>"),
IndexName: aws.String("game-score-index"),
<API key>: aws.String("game = :game AND score > :min_score"),
<API key>: map[string]*dynamodb.AttributeValue{
":game": {S: aws.String("superstellar")},
":min_score": {N: aws.String("0")},
},
ScanIndexForward: aws.Bool(false),
Limit: aws.Int64(10),
}
resp, error := reader.adapter.dynamodb.Query(queryInput)
if error != nil {
log.Println("Cannot get items from DynamoDB", error)
return nil
}
<API key> := make([]*pb.ScoreBoardItem, 0, *resp.Count)
protoScoreBoard := &pb.ScoreBoard{Items: <API key>}
for i := range resp.Items {
item := resp.Items[i]
score, err := strconv.Atoi(*item["score"].N)
if err == nil {
scoreBoardItem := &pb.ScoreBoardItem{Name: *item["name"].S, Score: uint32(score)}
protoScoreBoard.Items = append(protoScoreBoard.Items, scoreBoardItem)
}
}
return protoScoreBoard
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace Microsoft.AspNetCore.Mvc
{
<summary>
This class contains extension methods for rapidly working with Core MVC objects.
</summary>
public static class <API key>
{
<summary>
This extension method allows multiple errors in a ModelState to be quickly synthesized into a single error message string.
Useful for returning error message after a validation failure from an web service endpoint.
</summary>
<param name="modelstate"></param>
<returns></returns>
public static string JoinErrorMessages(this <API key> modelstate)
{
var errors = modelstate.Values.SelectMany(Q => Q.Errors).Select(Q => Q.ErrorMessage);
return string.Join("\r\n", errors);
}
}
} |
const expect = require('chai').expect
const date = require('../../../lib/validator/custom-formats/date')
describe('validator/custom-formats/date', () => {
it('returns false when value is undefined', () => {
expect(date(undefined)).to.be.equal(false)
})
it('returns false when value is null', () => {
expect(date(null)).to.be.equal(false)
})
it('returns false when value is an object', () => {
expect(date({})).to.be.equal(false)
})
it('returns false when value is an array', () => {
expect(date([])).to.be.equal(false)
})
it('returns false when value is a float', () => {
expect(date(0.5)).to.be.equal(false)
})
it('returns false when value is NaN', () => {
expect(date(NaN)).to.be.equal(false)
})
it('returns false when value is Infinity', () => {
expect(date(Infinity)).to.be.equal(false)
})
it('returns true when value is in format MMMM DD YYYY', () => {
expect(date('August 03 2015')).to.be.equal(true)
})
it('returns true when value is in format MMMM D YYYY', () => {
expect(date('August 3 2015')).to.be.equal(true)
})
/* FIXME: this test passes in Chrome but fails in Firefox
it('returns true when value is in format MMMM DD YY', () => {
expect(date('August 03 15')).to.be.equal(true)
})
*/
/* FIXME: this test passes in Chrome but fails in Firefox
it('returns true when value is in format MMMM D YY', () => {
expect(date('August 3 15')).to.be.equal(true)
})
*/
it('returns true when value is in format MMM DD YYYY', () => {
expect(date('Aug 03 2015')).to.be.equal(true)
})
it('returns true when value is in format MMM D YYYY', () => {
expect(date('Aug 3 2015')).to.be.equal(true)
})
/* FIXME: this test passes in Chrome but fails in Firefox
it('returns true when value is in format MMM DD YY', () => {
expect(date('Aug 03 15')).to.be.equal(true)
})
*/
/* FIXME: this test passes in Chrome but fails in Firefox
it('returns true when value is in format MMM D YY', () => {
expect(date('Aug 3 15')).to.be.equal(true)
})
*/
it('returns true when value is in format MM DD YYYY', () => {
expect(date('08 03 2015')).to.be.equal(true)
})
it('returns true when value is in format MM D YYYY', () => {
expect(date('08 3 2015')).to.be.equal(true)
})
it('returns true when value is in format MM DD YY', () => {
expect(date('08 03 15')).to.be.equal(true)
})
it('returns true when value is in format MM D YY', () => {
expect(date('08 3 15')).to.be.equal(true)
})
it('returns true when value is in format M DD YYYY', () => {
expect(date('8 03 2015')).to.be.equal(true)
})
it('returns true when value is in format M D YYYY', () => {
expect(date('8 3 2015')).to.be.equal(true)
})
it('returns true when value is in format M DD YY', () => {
expect(date('8 03 15')).to.be.equal(true)
})
it('returns true when value is in format M D YY', () => {
expect(date('8 3 15')).to.be.equal(true)
})
it('returns true when value is in format MM/DD/YYYY', () => {
expect(date('08/03/2015')).to.be.equal(true)
})
it('returns true when value is in format MM/D/YYYY', () => {
expect(date('08/3/2015')).to.be.equal(true)
})
it('returns true when value is in format MM/DD/YY', () => {
expect(date('08/03/15')).to.be.equal(true)
})
it('returns true when value is in format MM/D/YY', () => {
expect(date('08/3/15')).to.be.equal(true)
})
it('returns true when value is in format M/DD/YYYY', () => {
expect(date('8/03/2015')).to.be.equal(true)
})
it('returns true when value is in format M/D/YYYY', () => {
expect(date('8/3/2015')).to.be.equal(true)
})
it('returns true when value is in format M/DD/YY', () => {
expect(date('8/03/15')).to.be.equal(true)
})
it('returns true when value is in format M/D/YY', () => {
expect(date('8/3/15')).to.be.equal(true)
})
}) |
Airbrake.configure do |config|
config.async do |notice|
MicroAwesomeService::Queue.add('normal', "<API key>", notice.to_xml)
end
end |
<!DOCTYPE HTML PUBLIC "-
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_60) on Wed Sep 17 11:35:51 EEST 2014 -->
<title>A-Index</title>
<meta name="date" content="2014-09-17">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="A-Index";
}
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="topNav"><a name="navbar_top">
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-1.html" target="_top">Frames</a></li>
<li><a href="index-1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip-navbar_top">
</a></div>
<div class="contentContainer"><a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">V</a> <a href="index-21.html">W</a> <a href="index-22.html">Y</a> <a href="index-23.html">Z</a> <a name="_A_">
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#abc_action_bar_home">abc_action_bar_home</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#abc_action_bar_tab">abc_action_bar_tab</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#abc_action_mode_bar">abc_action_mode_bar</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#abc_fade_in">abc_fade_in</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#abc_fade_out">abc_fade_out</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#abc_ic_clear">abc_ic_clear</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#abc_ic_clear_normal">abc_ic_clear_normal</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#abc_ic_go">abc_ic_go</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#abc_ic_search">abc_ic_search</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#abc_ic_voice_search">abc_ic_voice_search</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.integer.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.integer.html" title="class in com.github.nrudenko.spottracker">R.integer</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.color.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.color.html" title="class in com.github.nrudenko.spottracker">R.color</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.color.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.color.html" title="class in com.github.nrudenko.spottracker">R.color</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.color.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.color.html" title="class in com.github.nrudenko.spottracker">R.color</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.color.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.color.html" title="class in com.github.nrudenko.spottracker">R.color</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#abc_search_view">abc_search_view</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#abc_simple_decor">abc_simple_decor</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#abc_slide_in_bottom">abc_slide_in_bottom</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#abc_slide_in_top">abc_slide_in_top</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.anim.html#abc_slide_out_top">abc_slide_out_top</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.anim.html" title="class in com.github.nrudenko.spottracker">R.anim</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.bool.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.bool.html" title="class in com.github.nrudenko.spottracker">R.bool</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.drawable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.drawable.html" title="class in com.github.nrudenko.spottracker">R.drawable</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#about">about</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#about">about</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#about_text_size">about_text_size</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><a href="../com/github/nrudenko/spottracker/fragment/AboutFragment.html" title="class in com.github.nrudenko.spottracker.fragment"><span class="strong">AboutFragment</span></a> - Class in <a href="../com/github/nrudenko/spottracker/fragment/package-summary.html">com.github.nrudenko.spottracker.fragment</a></dt>
<dd>
<div class="block">A placeholder fragment containing a simple view.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/fragment/AboutFragment.html#AboutFragment()">AboutFragment()</a></span> - Constructor for class com.github.nrudenko.spottracker.fragment.<a href="../com/github/nrudenko/spottracker/fragment/AboutFragment.html" title="class in com.github.nrudenko.spottracker.fragment">AboutFragment</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_bar">action_bar</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_bar_root">action_bar_root</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_bar_subtitle">action_bar_subtitle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_bar_title">action_bar_title</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_context_bar">action_context_bar</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#action_example">action_example</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_menu_divider">action_menu_divider</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_settings">action_settings</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#action_settings">action_settings</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#action_update">action_update</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#action_update">action_update</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar">ActionBar</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActionBar.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_divider">ActionBar_divider</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_height">ActionBar_height</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_icon">ActionBar_icon</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_logo">ActionBar_logo</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_subtitle">ActionBar_subtitle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBar_title">ActionBar_title</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionBarDivider">actionBarDivider</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarLayout">ActionBarLayout</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActionBarLayout.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.layout_gravity</code>
attribute's value can be found in the <a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarLayout"><code>R.styleable.ActionBarLayout</code></a> array.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionBarSize">actionBarSize</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionBarSplitStyle">actionBarSplitStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionBarStyle">actionBarStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionBarTabStyle">actionBarTabStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarWindow">ActionBarWindow</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActionBarWindow.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>com.github.nrudenko.ft.R.attr#windowActionBar</code>
attribute's value can be found in the <a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarWindow"><code>R.styleable.ActionBarWindow</code></a> array.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>com.github.nrudenko.ft.R.attr#<API key></code>
attribute's value can be found in the <a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarWindow"><code>R.styleable.ActionBarWindow</code></a> array.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>com.github.nrudenko.ft.R.attr#<API key></code>
attribute's value can be found in the <a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionBarWindow"><code>R.styleable.ActionBarWindow</code></a> array.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionButtonStyle">actionButtonStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionDropDownStyle">actionDropDownStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Default ActionBar dropdown style.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionLayout">actionLayout</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">An optional layout to be used as an action view.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionMenuItemView">ActionMenuItemView</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActionMenuItemView.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">This symbol is the offset where the <code>R.attr.minWidth</code>
attribute's value can be found in the <a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionMenuItemView"><code>R.styleable.ActionMenuItemView</code></a> array.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionMenuTextColor">actionMenuTextColor</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionMenuView">ActionMenuView</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Size of padding on either end of a divider.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionMode">ActionMode</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActionMode.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActionMode_height">ActionMode_height</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionModeStyle">actionModeStyle</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionProviderClass">actionProviderClass</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#actionViewClass">actionViewClass</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">The name of an optional View class to instantiate and use as an
action view.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.layout.html#activity_main">activity_main</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.layout.html" title="class in com.github.nrudenko.spottracker">R.layout</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.dimen.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.dimen.html" title="class in com.github.nrudenko.spottracker">R.dimen</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#ActivityChooserView">ActivityChooserView</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a ActivityChooserView.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#<API key>"><API key></a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#AdsAttrs">AdsAttrs</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dd>
<div class="block">Attributes that can be used with a AdsAttrs.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#AdsAttrs_adSize">AdsAttrs_adSize</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#AdsAttrs_adSizes">AdsAttrs_adSizes</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.styleable.html#AdsAttrs_adUnitId">AdsAttrs_adUnitId</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.styleable.html" title="class in com.github.nrudenko.spottracker">R.styleable</a></dt>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#adSize">adSize</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">The size of the ad.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#adSizes">adSizes</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">A comma-separated list of the supported ad sizes.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.attr.html#adUnitId">adUnitId</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.attr.html" title="class in com.github.nrudenko.spottracker">R.attr</a></dt>
<dd>
<div class="block">The ad unit ID.</div>
</dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.id.html#always">always</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.id.html" title="class in com.github.nrudenko.spottracker">R.id</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.string.html#app_name">app_name</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.string.html" title="class in com.github.nrudenko.spottracker">R.string</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="../com/github/nrudenko/spottracker/R.style.html#AppTheme">AppTheme</a></span> - Static variable in class com.github.nrudenko.spottracker.<a href="../com/github/nrudenko/spottracker/R.style.html" title="class in com.github.nrudenko.spottracker">R.style</a></dt>
<dd>
<div class="block">Customize your theme here.</div>
</dd>
</dl>
<a href="index-1.html">A</a> <a href="index-2.html">B</a> <a href="index-3.html">C</a> <a href="index-4.html">D</a> <a href="index-5.html">E</a> <a href="index-6.html">F</a> <a href="index-7.html">G</a> <a href="index-8.html">H</a> <a href="index-9.html">I</a> <a href="index-10.html">L</a> <a href="index-11.html">M</a> <a href="index-12.html">N</a> <a href="index-13.html">O</a> <a href="index-14.html">P</a> <a href="index-15.html">Q</a> <a href="index-16.html">R</a> <a href="index-17.html">S</a> <a href="index-18.html">T</a> <a href="index-19.html">U</a> <a href="index-20.html">V</a> <a href="index-21.html">W</a> <a href="index-22.html">Y</a> <a href="index-23.html">Z</a> </div>
<div class="bottomNav"><a name="navbar_bottom">
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="<API key>">
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-1.html" target="_top">Frames</a></li>
<li><a href="index-1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip-navbar_bottom">
</a></div>
</body>
</html> |
package com.issueTracker.constants;
public interface Constants {
String EXISTING_USER = "Error! User with this username already exists.";
String NON_EXISTING_USER = "Error! User with this username and password not exists.";
String <API key> = "Error! Username must be between 5 and 30 symbols.";
String <API key> = "Error! Full Name must be at least 5 symbols.";
String <API key> = "Error! Password must be at least 8 symbols.";
String WRONG_<API key> = "Error! Password should contain a capital letter, a number and a sign: [!@
String MISSMATCH_PASSWORDS = "Error! Passwords are not matching.";
} |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login extends CI_Controller {
public function index()
{
$this->load->view('login');
}
} |
#ifndef <API key>
#define <API key>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
namespace moveit_msgs
{
static const char LOADMAP[] = "moveit_msgs/LoadMap";
class LoadMapRequest : public ros::Msg
{
public:
typedef const char* _filename_type;
_filename_type filename;
LoadMapRequest():
filename("")
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
uint32_t length_filename = strlen(this->filename);
varToArr(outbuffer + offset, length_filename);
offset += 4;
memcpy(outbuffer + offset, this->filename, length_filename);
offset += length_filename;
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
uint32_t length_filename;
arrToVar(length_filename, (inbuffer + offset));
offset += 4;
for(unsigned int k= offset; k< offset+length_filename; ++k){
inbuffer[k-1]=inbuffer[k];
}
inbuffer[offset+length_filename-1]=0;
this->filename = (char *)(inbuffer + offset-1);
offset += length_filename;
return offset;
}
const char * getType(){ return LOADMAP; };
const char * getMD5(){ return "<API key>"; };
};
class LoadMapResponse : public ros::Msg
{
public:
typedef bool _success_type;
_success_type success;
LoadMapResponse():
success(0)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
union {
bool real;
uint8_t base;
} u_success;
u_success.real = this->success;
*(outbuffer + offset + 0) = (u_success.base >> (8 * 0)) & 0xFF;
offset += sizeof(this->success);
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
union {
bool real;
uint8_t base;
} u_success;
u_success.base = 0;
u_success.base |= ((uint8_t) (*(inbuffer + offset + 0))) << (8 * 0);
this->success = u_success.real;
offset += sizeof(this->success);
return offset;
}
const char * getType(){ return LOADMAP; };
const char * getMD5(){ return "<API key>"; };
};
class LoadMap {
public:
typedef LoadMapRequest Request;
typedef LoadMapResponse Response;
};
}
#endif |
import getProjection from '../utils/get-projection';
export default function _getDetail(dbModel, params, fieldASTs) {
const projection = getProjection(fieldASTs);
return dbModel
.findById(params.id)
.select(projection)
.lean()
.exec();
} |
#!/usr/bin/env bash
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/Transcode:/usr/local/Transcode/Library export PATH # export PATH to Transcode libraries
# set -xv; exec 1>>/tmp/<API key> 2>&1
# updateTranscode
# This script checks to see if Transcode or Ruby Gems need to be udpated and logs the results to the system log
function define_Constants () {
local versStamp="Version 1.4.2, 03-24-2017"
loggerTag="transcode.update"
local DIR=""
local SOURCE="${BASH_SOURCE[0]}"
while [[ -h "${SOURCE}" ]]; do # resolve ${SOURCE} until the file is no longer a symlink
DIR="$( cd -P "$( dirname "${SOURCE}" )" && pwd )"
SOURCE="$(readlink "${SOURCE}")"
updateFiles_a=( "${UPDATERPATH}/${downloadedZipFile%.*}"/* ) # get a list of filenames with path to convert
for i in "${updateFiles_a[@]}"; do
# get the file extension and file name
fileType="${i##*.}"
fileName="${i##*/}"
case "${fileType}" in
sh|app|command )
# is this file in /usr/local/Transcode
transcode2Replace=$(find "${APPSCRIPTSPATH}" -name "${fileName}")
if [[ -z "${transcode2Replace}" ]]; then
if [[ "${transcode2Replace}" != *"_"* ]]; then
# is this file in /Transcode
transcode2Replace=$(find "${APPSCRIPTSPATH}" -name "${fileName}")
else
# is this file in /Transcode/Library
transcode2Replace=$(find "${LIBSCRIPTSPATH}" -name "${fileName}")
fi
fi
;;
workflow )
# file is in ~/Library/Services
transcode2Replace="${LIBDIR}/Services"
;;
esac
case "${fileType}" in
sh|app|command )
if [[ "${fileName}" != "updateTranscode.sh" && "${fileName}" != "updateTranscodeGems.sh" ]]; then
# move to the update location
ditto "${i}" "${transcode2Replace}"
. "_echoMsg.sh" "==> Updated ${fileName}" ""
# this script needs to be updated later, move to /tmp for the moment
elif [[ "${fileName}" == "updateTranscode.sh" ]]; then
ditto "${i}" "/tmp"
. "_echoMsg.sh" "==> Moved ${fileName} to /tmp" ""
fi
;;
workflow )
cp -R -p "${i}" "${transcode2Replace}"
. "_echoMsg.sh" "==> Updated ${fileName}" ""
;;
esac
done
. "_echoMsg.sh" "Update complete." ""
. "_sendNotification.sh" "Transcode Update" "Updated from ${VERSCURRENT} to ${versUpdate}"
else
# remove the full update flag
fullUpdate="false"
. "_echoMsg.sh" "SHA256 checksums do not match, update skipped." ""
fi
elif [[ -e "${waitingPlist}" || -e "${onHoldPlist}" || -e "${workingPlist}" ]]; then
. "_echoMsg.sh" "Update deferred." ""
else
. "_echoMsg.sh" "Already up-to-date." ""
fi
}
function clean_Up () {
# delete the auto-update files from /tmp
rm -rf "${UPDATERPATH}"
# make sure everything can execute
find "${APPSCRIPTSPATH}/" -name "*.sh" -exec chmod +x {} \;
find "${APPSCRIPTSPATH}/" -name "*.command" -exec chmod +x {} \;
}
function __main__ () {
define_Constants
<API key>
update_Transcode
. "${SH_UPDATEPOST}" # executing this way to run an updated version if available
}
# Execute
trap clean_Up INT TERM EXIT # always run clean_Up regardless of how the script terminates
trap '. "_ifError.sh" ${LINENO} $?' ERR # trap errors
__main__
exit 0 |
const { pathOr, is } = require('ramda')
// the default React Native version for this boilerplate
const <API key> = '0.49.5'
// where the version lives under gluegun
const pathToVersion = ['parameters', 'options', '<API key>']
// accepts the context and returns back the version
const <API key> = pathOr(<API key>, pathToVersion)
/**
* Gets the React Native version to use.
*
* Attempts to read it from the command line, and if not there, falls back
* to the version we want for this boilerplate. For example:
*
* $ ignite new Custom --<API key> 0.44.1
*
* @param {*} context - The gluegun context.
*/
const <API key> = (context = {}) => {
const version = <API key>(context)
return is(String, version) ? version : <API key>
}
module.exports = {
<API key>,
<API key>
} |
<!DOCTYPE html>
<html>
<head>
<title>Linux Foundation – – </title>
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
<meta name="description" content="Linux Foundation
" />
<meta property="og:description" content="Linux Foundation
" />
<meta name="author" content="" />
<meta property="og:title" content="Linux Foundation" />
<meta property="twitter:title" content="Linux Foundation" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]
<link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="alternate" type="application/rss+xml" title=" - " href="/feed.xml" />
</head>
<body>
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<a href="/" class="site-avatar"><img src="http://blog.fff.io/img/top/arukakan.png" /></a>
<div class="site-info">
<h1 class="site-name"><a href="/"></a></h1>
<p class="site-description"></p>
</div>
<nav>
<a href="/">Blog</a>
<a href="/about">About</a>
</nav>
</header>
</div>
</div>
<div id="main" role="main" class="container">
<article class="post">
<h1>Linux Foundation</h1>
<div class="entry">
<p><a href="http:
<div class="highlighter-rouge"><pre class="highlight"><code>>
The Linux Foundation :
Linux.com email -
The Linux Foundation T
Linux.com "Briefing Book" ()
Linux Foundation The Linux Foundation
Linux Foundation
:
Dell Lenovo - 40%
LinuxCon 20%
Linux Foundation 10% - $100
O'Reilly
</code></pre>
</div>
<p>99$Dell4O’Reillywww
linux.com
linuxWin-Win
</p>
</div>
<div class="date">
Written on September 7, 2012
</div>
</article>
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
<a href="https:
</footer>
</div>
</div>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['<API key>']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.<API key>(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','
ga('create', 'UA-50632658-1', 'auto');
ga('send', 'pageview', {
'page': '/linux-foundation/',
'title': 'Linux Foundation'
});
</script>
<!-- End Google Analytics -->
</body>
</html> |
# Module Documentation
## Module Main
# `body`
purescript
body :: forall e. Request e -> Wai e String
# `echoApplication`
purescript
echoApplication :: forall e. Application e
# `countApplication`
purescript
countApplication :: forall e. AVar Number -> Application (trace :: Trace | e)
# `main`
purescript
main :: forall e. WaiEff (trace :: Trace | e)
## Module Network.Wai.Handler.Swai
# `run`
purescript
run :: forall e. Number -> Application e -> WaiEff e
## Module Network.Wai.Handler.Swai.Request
# `makeRequest`
purescript
makeRequest :: forall e. NodeRequest -> Wai e (Request e)
## Module Network.Wai.Handler.Swai.Response
# `<API key>`
purescript
<API key> :: forall e. NodeResponse -> ResponseCallback e
## Module Network.Wai.Handler.Swai.Types
# `NodeRequest`
purescript
data NodeRequest :: *
# `NodeResponse`
purescript
data NodeResponse :: *
# `SwaiError`
purescript
data SwaiError
= InvalidMethod
# `invalidMethod`
purescript
invalidMethod :: Error
# `string2Error`
purescript
string2Error :: String -> Maybe SwaiError
# `showSwaiError`
purescript
instance showSwaiError :: Show SwaiError
## Module Network.Wai
# `Application`
purescript
type Application e = Request e -> ResponseCallback e -> Wai e ResponseReceived
# `ResponseReceived`
purescript
data ResponseReceived
= ResponseReceived
# `ResponseCallback`
purescript
type ResponseCallback e = Response e -> Wai e ResponseReceived
# `MiddleWare`
purescript
type MiddleWare e f = Application e -> Application f
# `readHeader`
purescript
readHeader :: String -> RequestHeaders -> Maybe String
# `readQueryItem`
purescript
readQueryItem :: String -> QueryString -> Maybe String
## Module Network.Wai.Internal
# `WAI`
purescript
data WAI :: !
# `Wai`
purescript
type Wai e a = Aff (avar :: AVAR, wai :: WAI | e) a
# `WaiEff`
purescript
type WaiEff e = Eff (avar :: AVAR, wai :: WAI | e) Unit
# `QueryString`
purescript
data QueryString :: *
# `RequestHeaders`
purescript
data RequestHeaders :: *
# `Request`
purescript
type Request e = { body :: Wai e (Maybe String), headers :: RequestHeaders, queryString :: QueryString, pathInfo :: [String], rawQueryString :: String, rawPathInfo :: String, method :: Verb }
# `ResponseHeaders`
purescript
type ResponseHeaders = [Header]
# `Response`
purescript
data Response e
= ResponseString StatusCode ResponseHeaders String
| ResponseStream StatusCode ResponseHeaders (StreamingBody e)
# `StreamingBody`
purescript
type StreamingBody e = (String -> Wai e Unit) -> Wai e Unit -> Wai e Unit |
package edu.galileo.android.photofeed.domain;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.HashMap;
import java.util.Map;
public class FirebaseHelper {
private DatabaseReference dataReference;
private final static String SEPARATOR = "___";
private final static String CHATS_PATH = "chats";
private final static String USERS_PATH = "users";
public final static String CONTACTS_PATH = "contacts";
private static class SingletonHolder {
private static final FirebaseHelper INSTANCE = new FirebaseHelper();
}
public static FirebaseHelper getInstance() {
return SingletonHolder.INSTANCE;
}
public FirebaseHelper(){
dataReference = FirebaseDatabase.getInstance().getReference();
}
public DatabaseReference getDataReference() {
return dataReference;
}
public String getAuthUserEmail() {
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
String email = null;
if (user != null) {
email = user.getEmail();
}
return email;
}
public DatabaseReference getUserReference(String email){
DatabaseReference userReference = null;
if (email != null) {
String emailKey = email.replace(".", "_");
userReference = dataReference.getRoot().child(USERS_PATH).child(emailKey);
}
return userReference;
}
public DatabaseReference getMyUserReference() {
return getUserReference(getAuthUserEmail());
}
public DatabaseReference <API key>(String email){
return getUserReference(email).child(CONTACTS_PATH);
}
public DatabaseReference <API key>(){
return <API key>(getAuthUserEmail());
}
public DatabaseReference <API key>(String mainEmail, String childEmail){
String childKey = childEmail.replace(".","_");
return getUserReference(mainEmail).child(CONTACTS_PATH).child(childKey);
}
public DatabaseReference getChatsReference(String receiver){
String keySender = getAuthUserEmail().replace(".","_");
String keyReceiver = receiver.replace(".","_");
String keyChat = keySender + SEPARATOR + keyReceiver;
if (keySender.compareTo(keyReceiver) > 0) {
keyChat = keyReceiver + SEPARATOR + keySender;
}
return dataReference.getRoot().child(CHATS_PATH).child(keyChat);
}
public void <API key>(boolean online) {
if (getMyUserReference() != null) {
Map<String, Object> updates = new HashMap<String, Object>();
updates.put("online", online);
getMyUserReference().updateChildren(updates);
<API key>(online);
}
}
public void <API key>(final boolean online, final boolean signoff) {
final String myEmail = getAuthUserEmail();
<API key>().<API key>(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot snapshot) {
for (DataSnapshot child : snapshot.getChildren()) {
String email = child.getKey();
DatabaseReference reference = <API key>(email, myEmail);
reference.setValue(online);
}
if (signoff){
FirebaseAuth.getInstance().signOut();
}
}
@Override
public void onCancelled(DatabaseError firebaseError) {
}
});
}
public void <API key>(boolean online) {
<API key>(online, false);
}
public void signOff(){
FirebaseAuth.getInstance().signOut();
}
} |
import CoInputNumber from './input-number';
export default CoInputNumber; |
package ru.lanbilling.webservice.wsdl;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"flt"
})
@XmlRootElement(name = "getSbssStatuses")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2015-10-25T05:29:34+06:00", comments = "JAXB RI v2.2.11")
public class GetSbssStatuses {
@Generated(value = "com.sun.tools.xjc.Driver", date = "2015-10-25T05:29:34+06:00", comments = "JAXB RI v2.2.11")
protected SoapFilter flt;
/**
* Gets the value of the flt property.
*
* @return
* possible object is
* {@link SoapFilter }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2015-10-25T05:29:34+06:00", comments = "JAXB RI v2.2.11")
public SoapFilter getFlt() {
return flt;
}
/**
* Sets the value of the flt property.
*
* @param value
* allowed object is
* {@link SoapFilter }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2015-10-25T05:29:34+06:00", comments = "JAXB RI v2.2.11")
public void setFlt(SoapFilter value) {
this.flt = value;
}
} |
<!DOCTYPE html PUBLIC "-
<html xmlns="http:
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.6"/>
<title>VSCP framework: Modules</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">VSCP framework
 <span id="projectnumber">v0.4.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">Modules</div> </div>
</div><!--header
<div class="contents">
<div class="textblock">Here is a list of all modules:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP Level 1 classes</a></td><td class="desc">VSCP Level 1 classes </td></tr>
<tr id="row_1_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP Level 1 classes over level 2.</a></td><td class="desc">VSCP Level 1 classes over level 2 </td></tr>
<tr id="row_2_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__config.html" target="_self">VSCP default configuration</a></td><td class="desc">The default configuration of VSCP handles the default features of the framework and its default constant parameters </td></tr>
<tr id="row_3_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP configuration base</a></td><td class="desc">This module contains the base configuation switches, which are used in configuration files to enable/disable features </td></tr>
<tr id="row_4_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__core.html" target="_self">The VSCP core functionality.</a></td><td class="desc">The VSCP core functionality </td></tr>
<tr id="row_5_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP data coding</a></td><td class="desc">Data coding functionality as specified by VSCP specification </td></tr>
<tr id="row_6_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP device data</a></td><td class="desc">This module contains device specific data access </td></tr>
<tr id="row_7_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Device default data configuration</a></td><td class="desc">The device default data configuration moves all device specific data to the persistent memory and set some default values </td></tr>
<tr id="row_8_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__dm.html" target="_self">Decision matrix</a></td><td class="desc">The decision matrix </td></tr>
<tr id="row_9_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__dm__ng.html" target="_self">VSCP decision matrix next generation</a></td><td class="desc">The decision matrix next generation (DM-NG) is from the idea similar to the standard decision matrix and the decision matrix extension </td></tr>
<tr id="row_10_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__logger.html" target="_self">VSCP logger</a></td><td class="desc">The logger handles all kind of log messages, which are sent directly to the VSCP transport layer </td></tr>
<tr id="row_11_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__ps.html" target="_self">Persistent memory driver</a></td><td class="desc">The core uses the persistent memory driver to store important data in non-volatile RAM, e.g </td></tr>
<tr id="row_12_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Transport layer</a></td><td class="desc">The transport layer adapts VSCP to the underlying physical transport medium, e.g </td></tr>
<tr id="row_13_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__util.html" target="_self">VSCP utilities</a></td><td class="desc">Utility functions, which are used in different VSCP framework modules </td></tr>
<tr id="row_14_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__action.html" target="_self">VSCP actions</a></td><td class="desc">This module contains the user specific decision matrix (standard, extension and next generation) actions </td></tr>
<tr id="row_15_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP application registers</a></td><td class="desc">This module provides the access to the application registers </td></tr>
<tr id="row_16_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP configuration overwrite</a></td><td class="desc">This module contains the configuration preferred by the user </td></tr>
<tr id="row_17_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP device data configuration overwrite</a></td><td class="desc">This module contains the device specific data configuration preferred by the user </td></tr>
<tr id="row_18_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">VSCP platform specific stuff</a></td><td class="desc">This header file contains platform specific header files, types and etc </td></tr>
<tr id="row_19_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Portable stuff</a></td><td class="desc">Here is all application depended stuff, which can be handled different in any system </td></tr>
<tr id="row_20_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Persistent memory access driver</a></td><td class="desc">The persistent memory driver uses the access driver to really access the persistent memory </td></tr>
<tr id="row_21_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__timer.html" target="_self">Timer</a></td><td class="desc">The timer interface is used only by the core, except the processing function <a class="el" href="group__vscp__timer.html#<API key>" title="This function process all timers and has to be called cyclic. ">vscp_timer_process()</a> </td></tr>
<tr id="row_22_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Transport driver adapter</a></td><td class="desc">The transport layer adapter adapts the transport layer of VSCP to the underlying physical transport medium, e.g </td></tr>
<tr id="row_23_"><td class="entry"><img id="arr_23_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('23_')"/><a class="el" href="group__vscp__l1.html" target="_self">Level 1 Events</a></td><td class="desc">All level 1 events </td></tr>
<tr id="row_23_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Alarm class types</a></td><td class="desc">Level 1 alarm class types </td></tr>
<tr id="row_23_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Control class types</a></td><td class="desc">Level 1 control class types </td></tr>
<tr id="row_23_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Display class types</a></td><td class="desc">Level 1 display class types </td></tr>
<tr id="row_23_3_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Information class types</a></td><td class="desc">Level 1 information class types </td></tr>
<tr id="row_23_4_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Log class types</a></td><td class="desc">Level 1 log class types </td></tr>
<tr id="row_23_5_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Measurement class types</a></td><td class="desc">Level 1 measurement class types </td></tr>
<tr id="row_23_6_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Measurement with zone class types</a></td><td class="desc">Level 1 measurement with zone class types </td></tr>
<tr id="row_23_7_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Phone class types</a></td><td class="desc">Level 1 phone class types </td></tr>
<tr id="row_23_8_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Protocol class types</a></td><td class="desc">Level 1 protocol class types </td></tr>
<tr id="row_23_9_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Remote class types</a></td><td class="desc">Level 1 remote class types </td></tr>
<tr id="row_23_10_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Security class types</a></td><td class="desc">Level 1 security class types </td></tr>
<tr id="row_23_11_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Weather class types</a></td><td class="desc">Level 1 weather class types </td></tr>
<tr id="row_23_12_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Weather forecast class types</a></td><td class="desc">Level 1 weather forecast class types </td></tr>
<tr id="row_24_"><td class="entry"><img id="arr_24_" src="ftv2mlastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('24_')"/><a class="el" href="<API key>.html" target="_self">Level 1 Events Abstraction</a></td><td class="desc">All level 1 events abstracted from VSCP event structure </td></tr>
<tr id="row_24_0_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__alarm.html" target="_self">Alarm events abstraction</a></td><td class="desc">Level 1 alarm events abstraction </td></tr>
<tr id="row_24_1_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Control events abstraction</a></td><td class="desc">Level 1 control events abstraction </td></tr>
<tr id="row_24_2_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Information events abstraction</a></td><td class="desc">Level 1 information events abstraction </td></tr>
<tr id="row_24_3_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="group__vscp__log.html" target="_self">Log events abstraction</a></td><td class="desc">Level 1 log events abstraction </td></tr>
<tr id="row_24_4_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Security events abstraction</a></td><td class="desc">Level 1 security events abstraction </td></tr>
<tr id="row_24_5_"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Weather events abstraction</a></td><td class="desc">Level 1 weather events abstraction </td></tr>
<tr id="row_24_6_" class="even"><td class="entry"><img src="ftv2blank.png" alt=" " width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="<API key>.html" target="_self">Weather forecast events abstraction</a></td><td class="desc">Level 1 weather forecast events abstraction </td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu Sep 10 2015 22:19:52 for VSCP framework by &
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html> |
title: links for 2008-01-19 through 2008-01-25
author: alba
layout: post
permalink: /2008/01/25/<API key>/
categories:
- asides
tags:
- design
- film
* [Disney Dream Portrait Series][1] more from photos added by Annie Leibovitz. (I love that Tina Fey is Tinkerbell)
* [Motion Tracking: The Motion Picture][2]
* [Atta Kim Long-Exposure Photographs][3] Real Time Is the Most Surreal of All (NY Times)
* [EveryBlock][4] Keep track of whatâAeos happening on your block, in your neighborhood – like restaurant inspections in Chinatown, crimes in the Loop, etc. Available for NYC, SF, CHI
* [YouTube – How camera lenses are made][5]
* [Bat For Lashes – Whats a Girl To Do][6] music video – think Donnie Darko meets Feist
* [List of Pixar in-jokes and self-references][7] in their feature and short films
[1]: http://disneyparks.disney.go.com/disneyparks/en_US/index?name=Gallery&bhcp=1
[2]: http:
[3]: http:
[4]: http:
[5]: http:
[6]: http:
[7]: http://jimhillmedia.com/blogs/jim_hill/archive/2007/12/09/<API key>.aspx |
# fill out the method below, then run the tests with
# $ rake 1:2
# Given two numbers, a and b, return half of whichever is smallest, as a float
# arithmetic2(1, 2) # => 0.5
# arithmetic2(19, 10) # => 5.0
# arithmetic2(-6, -7) # => -3.5
def arithmetic2(a, b)
if a <= b; return a.to_f / 2 else return b.to_f / 2 end
end |
<!DOCTYPE html>
<html lang="en">
<style type="text/css">
.btn{
color: white;
padding:
background-color: #18BC9C;
border-radius: 0px;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
#register{
padding-top: 30px;
}
</style>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Up Pharma Down - Drug Database</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/freelancer.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]
</head>
<body id="page-top" class="index">
<div id="skipnav"><a href="#maincontent">Skip to main content</a></div>
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#<API key>">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand pull-center" href="#page-top">Up Pharma Down</a>
</div>
<!-- <div>
<ul class="nav navbar-nav">
<li class=""><a href="#">View Drugs</a></li>
<li></li>
</ul>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- <div class="collapse navbar-collapse" id="<API key>">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="#portfolio">Portfolio</a>
</li>
<li class="page-scroll">
<a href="#about">About</a>
</li>
<li class="page-scroll">
<a href="#contact">Contact</a>
</li>
<li class="page-scroll">
<a href="#">View Drugs</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<!-- <header>
<div class="container" id="maincontent" tabindex="-1">
<div class="row">
<div class="col-lg-12">
<img class="img-circle" src="img/updlogo.png" alt="">
<div class="intro-text">
<h1 class="name">Up Pharma Down</h1>
<hr class="star-light">
<span class="skills">Point of Sales, Inventory and Delivery System</span>
</div>
<br><br>
<br><br>
<br>
</div>
</div>
</div>
</header>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>Admin<br>Sign Up</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-lg-12 ">
<!-- To configure the contact form email address, go to mail/contact_me.php and update the email address in the PHP file on line 19. -->
<!-- The form should work on most web servers, but if the form is not working you may need to configure your web server differently. -->
<form method="post" action="register.php"> <!-- logincheck.php -->
<br>
<div class="control-group col-lg-6">
<div class="form-group <API key> controls">
<label for="name">Full Name</label>
<input type="text" class="form-control" placeholder="Name" name="name" required <API key>="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class=" control-group col-lg-6">
<div class="form-group <API key> controls">
<label for="email">Email Address</label>
<input type="email" class="form-control" placeholder="Email Address" name="email" required <API key>="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class=" control-group col-lg-6">
<div class="form-group <API key> controls">
<label for="phone">Password</label>
<input type="password" class="form-control" placeholder="Enter a Password" name="password" required <API key>="Please enter your password.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class=" control-group col-lg-6">
<div class="form-group <API key> controls">
<label for="phone">Retype Password</label>
<input type="password" class="form-control" placeholder="Retype Password" name="password2" required <API key>="Please enter your password again.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class=" control-group col-lg-6">
<div class="form-group <API key> controls">
<label for="phone">Contact Number</label>
<input type="tel" class="form-control" placeholder="Cellphone Number" name="contact_no" required <API key>="Please enter your phone number.">
<p class="help-block text-danger"></p>
<input type="hidden" name="type" value="admin">
</div>
</div>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<br><br>
<button type="submit" class="btn btn-success btn-lg">Sign Up</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- About Section -->
<!-- <section class="success" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2>About</h2>
<hr class="star-light">
</div>
</div>
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<p>Up Pharma Down is a website designed to store information related to the drugs served at your nearby pharmacy. In addition it gives you the option of buying your medicine online and having it delivered to your respected home for you to pay on delivery.</p>
<p></p>
</div>
<div class="col-lg-4">
<p></p>
</div>
<div class="col-lg-8 col-lg-offset-2 text-center">
<a href="#" class="btn btn-lg btn-outline">
<i class="fa fa-download"></i> Download Theme
</a>
</div>
</div>
</div>
</section>
<!-- <section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<br><br>
<h2>Sign Up</h2>
<hr class="star-primary">
</div>
</div>
<div class="row">
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/cabin.png" class="img-responsive" alt="Cabin">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/cake.png" class="img-responsive" alt="Slice of cake">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/circus.png" class="img-responsive" alt="Circus tent">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/game.png" class="img-responsive" alt="Game controller">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/safe.png" class="img-responsive" alt="Safe">
</a>
</div>
<div class="col-sm-4 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="caption">
<div class="caption-content">
<i class="fa fa-search-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/submarine.png" class="img-responsive" alt="Submarine">
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h3>Location</h3>
<p>3481 Melrose Place
<br>Beverly Hills, CA 90210</p>
</div>
<div class="footer-col col-md-4">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="#" class="btn-social btn-outline"><span class="sr-only">Facebook</span><i class="fa fa-fw fa-facebook"></i></a>
</li>
<li>
<a href="#" class="btn-social btn-outline"><span class="sr-only">Google Plus</span><i class="fa fa-fw fa-google-plus"></i></a>
</li>
<li>
<a href="#" class="btn-social btn-outline"><span class="sr-only">Twitter</span><i class="fa fa-fw fa-twitter"></i></a>
</li>
<li>
<a href="#" class="btn-social btn-outline"><span class="sr-only">Linked In</span><i class="fa fa-fw fa-linkedin"></i></a>
</li>
<li>
<a href="#" class="btn-social btn-outline"><span class="sr-only">Dribble</span><i class="fa fa-fw fa-dribbble"></i></a>
</li>
</ul>
</div>
<div class="footer-col col-md-4">
<h3>About Freelancer</h3>
<p>Freelance is a free to use, open source Bootstrap theme created by <a href="http://startbootstrap.com">Start Bootstrap</a>.</p>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Up Pharma Down 2016
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll hidden-sm hidden-xs hidden-lg hidden-md">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/<API key>.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/freelancer.min.js"></script>
</body>
</html> |
const { Client, Server } = require(`<API key>`)
let memoizedValue
module.exports = (() => options => {
if (!memoizedValue) {
let instance
if (typeof window !== `undefined` && window.document.createElement) {
const styleElements = document.<API key>(
`_styletron_hydrate_`
)
instance = new Client({ hydrate: styleElements, ...options })
} else {
instance = new Server(options)
}
memoizedValue = {
instance,
}
}
return memoizedValue
})() |
<!DOCTYPE HTML PUBLIC "-
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_131) on Tue Oct 03 13:59:46 PDT 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>gov.nasa.jpl.mudrod.discoveryengine Class Hierarchy (Mudrod :: Parent 0.0.1-SNAPSHOT API)</title>
<meta name="date" content="2017-10-03">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="gov.nasa.jpl.mudrod.discoveryengine Class Hierarchy (Mudrod :: Parent 0.0.1-SNAPSHOT API)";
}
}
catch(err) {
}
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="topNav"><a name="navbar.top">
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li><a href="../../../../../gov/nasa/jpl/mudrod/driver/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?gov/nasa/jpl/mudrod/discoveryengine/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip.navbar.top">
</a></div>
<div class="header">
<h1 class="title">Hierarchy For Package gov.nasa.jpl.mudrod.discoveryengine</h1>
<span class="<API key>">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/MudrodAbstract.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink">MudrodAbstract</span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/<API key>.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink"><API key></span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/<API key>.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink"><API key></span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)</li>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/<API key>.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink"><API key></span></a></li>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/RecommendEngine.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink">RecommendEngine</span></a></li>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/<API key>.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink"><API key></span></a></li>
</ul>
</li>
<li type="circle">gov.nasa.jpl.mudrod.discoveryengine.<a href="../../../../../gov/nasa/jpl/mudrod/discoveryengine/<API key>.html" title="class in gov.nasa.jpl.mudrod.discoveryengine"><span class="typeNameLink"><API key></span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="bottomNav"><a name="navbar.bottom">
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li><a href="../../../../../gov/nasa/jpl/mudrod/driver/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?gov/nasa/jpl/mudrod/discoveryengine/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="<API key>">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!
allClassesLink = document.getElementById("<API key>");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
</script>
</div>
<a name="skip.navbar.bottom">
</a></div>
<p class="legalCopy"><small>Copyright &
</body>
</html> |
// <API key>.h
// ZJZ
#import "<API key>.h"
@interface <API key> : <API key>
@end |
<html><head>
<title>Perl Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
<link rel="stylesheet" title="black with blue on white" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="black with magenta on white" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="black with cyan on white" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="white with purple on black" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="white with navy blue on black" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="grey with green on black" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="white with green on grey" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="black with green on grey" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="grey with green on white" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="indexless black with blue on white" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="indexless white with purple on black" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="indexless white with green on grey" type="text/css" href="<API key>.css" media="all" >
<link rel="alternate stylesheet" title="indexless grey with green on white" type="text/css" href="<API key>.css" media="all" >
<script type="text/javascript" src="_podly.js"></script>
</head>
<body class='contentspage'>
<h1>Perl Documentation</h1>
<dl class='superindex'>
<dt><a name="inca">Inca</a></dt>
<dd>
<a href="./Inca/Reporter.html">Inca::Reporter</a>
<a href="./Inca/Reporter/GlobusUnit.html">Inca::Reporter::GlobusUnit</a>
<a href="./Inca/Reporter/GridProxy.html">Inca::Reporter::GridProxy</a>
<a href="./Inca/Reporter/Performance.html">Inca::Reporter::Performance</a>
<a href="./Inca/Reporter/Performance/Benchmark.html">Inca::Reporter::Performance::Benchmark</a>
<a href="./Inca/Reporter/SimpleUnit.html">Inca::Reporter::SimpleUnit</a>
<a href="./Inca/Reporter/Usage.html">Inca::Reporter::Usage</a>
<a href="./Inca/Reporter/Version.html">Inca::Reporter::Version</a>
</dd>
<dt><a name="incpack">incpack</a></dt>
<dd>
<a href="./incpack.html">incpack</a>
</dd>
</dl>
<p class='contentsfooty'>Generated by Pod::Simple::HTMLBatch v3.02 under Perl v5.008005
<br >At Wed Apr 9 20:44:00 2008 GMT, which is Wed Apr 9 13:44:00 2008 local time.</p>
</body></html> |
package evergarden.violet;
import java.io.OutputStream;
import charlotte.tools.ArrayTools;
import charlotte.tools.FileTools;
import charlotte.tools.HTTPResponse;
import charlotte.tools.IntTools;
import charlotte.tools.MathTools;
import charlotte.tools.SockClient;
import charlotte.tools.StringTools;
public class HTTPChunkedClient {
public static void main(String[] args) {
try {
//test01();
test02();
System.out.println("OK!");
}
catch(Throwable e) {
e.printStackTrace();
}
}
private static void test01() throws Exception {
perform(
"localhost",
80,
"/",
FileTools.readAllBytes("C:/var/<API key>.txt")
);
}
private static void test02() throws Exception {
chunkOfDeath(
"localhost",
80,
"/"
);
}
private static void perform(String domain, int portNo, String path, byte[] body) throws Exception {
SockClient client = null;
try {
client = new SockClient(domain, portNo, 20000, 20000);
OutputStream ws = client.getOutputStream();
write(ws, "POST " + path + " HTTP/1.1\r\n");
write(ws, "Host " + domain + ":" + portNo + "\r\n");
write(ws, "Content-Type: text/plain; charset=Shift_JIS\r\n");
write(ws, "Transfer-Encoding: chunked\r\n");
write(ws, "\r\n");
int rPos = 0;
while(rPos < body.length) {
int nextSize = MathTools.random(1, body.length - rPos);
System.out.println("nextSize: " + nextSize); // test
if(MathTools.random(2) == 0) {
write(ws, chunkSz2String(nextSize) + "\r\n");
}
else {
write(ws, chunkSz2String(nextSize) + "; <API key>; dummy-chunke-key = 'dummy-chunked-value'\r\n");
}
ws.write(ArrayTools.getBytes(body, rPos, nextSize));
write(ws, "\r\n");
rPos += nextSize;
}
if(MathTools.random(2) == 0) {
write(ws, "0\r\n");
}
else {
write(ws, "0; <API key>; dummy-chunke-key = 'dummy-chunked-value'\r\n");
}
while(MathTools.random(2) == 0) {
write(ws, "<API key>: <API key>\r\n");
}
write(ws, "\r\n");
HTTPResponse res = new HTTPResponse(client.getInputStream());
System.out.println("resBody: " + new String(res.getBody(), StringTools.CHARSET_ASCII));
}
finally {
FileTools.close(client);
}
}
private static String chunkSz2String(int size) {
return IntTools.toHex(size);
//return "" + size;
}
private static void write(OutputStream ws, String str) throws Exception {
write(ws, str, StringTools.CHARSET_ASCII);
}
private static void write(OutputStream ws, String str, String charset) throws Exception {
ws.write(str.getBytes(charset));
}
private static void chunkOfDeath(String domain, int portNo, String path) throws Exception {
SockClient client = null;
try {
client = new SockClient(domain, portNo, 20000, 20000);
OutputStream ws = client.getOutputStream();
write(ws, "POST " + path + " HTTP/1.1\r\n");
write(ws, "Host " + domain + ":" + portNo + "\r\n");
write(ws, "Content-Type: text/plain; charset=US-ASCII\r\n");
write(ws, "Transfer-Encoding: chunked\r\n");
write(ws, "\r\n");
int nextSizeMax = 1000;
for(; ; ) {
int nextSize = MathTools.random(1, nextSizeMax);
System.out.println("nextSize: " + nextSize + " (nextSizeMax: " + nextSizeMax + ")"); // test
nextSizeMax = Math.min((int)(nextSizeMax * 1.1), IntTools.IMAX);
if(MathTools.random(2) == 0) {
write(ws, chunkSz2String(nextSize) + "\r\n");
}
else {
write(ws, chunkSz2String(nextSize) + "; <API key>; dummy-chunked-key = 'dummy-chunked-value'\r\n");
}
for(int c = 0; c < nextSize; c++) {
ws.write(nextDummyChar());
}
write(ws, "\r\n");
}
}
finally {
FileTools.close(client);
}
}
private static String _dummyChrs = StringTools.ASCII + "\r\n";
private static int _dummyChrIndex = -1;
private static int nextDummyChar() {
_dummyChrIndex++;
_dummyChrIndex %= _dummyChrs.length();
return _dummyChrs.charAt(_dummyChrIndex);
}
} |
ZUTOOLS.Button = function ( settings ) {
var self = this;
this.onclick = settings.onclick;
this.domNode = document.createElement( 'div' );
this.domNode.setAttribute( 'class', 'button action corners small' );
this.domNode.innerHTML = settings.text;
this.domNode.addEventListener( 'click', onClick, false );
function onClick ( event ) {
self.onclick();
}
};
ZUTOOLS.Button.prototype = {
constructor: ZUTOOLS.Button,
select: function ( b ) {
b = ( b === undefined ) ? true : b;
this.domNode.setAttribute( 'class', 'button action corners small' + ( b ? ' selected' : '' ) );
}
}; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.