text stringlengths 4 1.04M |
|---|
package Ankama_Admin
{
import com.ankamagames.berilia.api.UiApi;
import com.ankamagames.dofus.uiApi.DataApi;
import com.ankamagames.dofus.uiApi.FileApi;
import com.ankamagames.dofus.uiApi.PlayedCharacterApi;
import com.ankamagames.dofus.uiApi.SystemApi;
public class Api
{
... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package kabam.rotmg.packages.services {
import com.company.assembleegameclient.util.TimeUtil;
import com.company.util.MoreObjectUtil;
import kabam.lib.tasks.BaseTask;
import kabam.rotmg.account.core.Account;
import kabam.rotmg.appengine.api.AppEngineClient;
import kabam.rotmg.language.model.LanguageMo... |
#include "Map.as"
Map@ map;
MapSyncer@ mapSyncer;
MapManager@ mapManager;
void onInit(CRules@ this)
{
this.addCommandID("sync block");
this.addCommandID("place block");
this.addCommandID("revert block");
this.addCommandID("set block health");
this.addCommandID("sync map");
onRestart(this);
}
void onRestart(CR... |
/*
* Copyright 2014 Mozilla Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... |
package com
{
import com.adobe.serialization.json.JSON;
import com.errors.RuntimeError;
import com.events.OErrorEvent;
import com.events.OProgressEvent;
import com.utils.Buffer;
import com.utils.URLStreamProgress;
import com.utils.Utils;
import flash.events.DataEvent;
import flash.events.Event;
import flash.e... |
/*
* Copyright (c) 2012 the original author or authors
*
* Permission is hereby granted to use, modify, and distribute this file
* in accordance with the terms of the license agreement accompanying it.
*/
package org.swiftsuspenders.dependencyproviders
{
public class LocalOnlyProvider extends ForwardingProvider
... |
// /usr/bin/makeswf -s 200x150 -o empty-stack.swf empty-stack.as
trace ("Check that the empty stack is treated as unlimited undefined values");
asm {
pop
trace
};
|
package edu.isi.bmkeg.friesWorkbench.services.serverInteraction
{
import mx.rpc.AbstractOperation;
public interface IExtendedBigMechIndexCardServer {
// ~~~~~~~~~~~~~~~
// functions
// ~~~~~~~~~~~~~~~
function get listIndexCardsByArticleId():AbstractOperation;
}
} |
/*
* Copyright (c) 2011 the original author or authors
*
* Permission is hereby granted to use, modify, and distribute this file
* in accordance with the terms of the license agreement accompanying it.
*/
package org.swiftsuspenders.support.injectees
{
import org.swiftsuspenders.support.types.Clazz;
public cla... |
package editor.ui
{
import editor.Value;
import flash.display.Sprite;
public class ValueModifier extends Sprite
{
public var valueObject:Value;
public function set value( to:* ):void { }
public function get value():* { }
public function giveValue():void { }
public function takeValue():void { }
... |
package GameConsole.core
{
public interface IConsole
{
function get isOpened():Boolean;
function set isOpened(value:Boolean):void;
/**
* 热键ID
* @return
*
*/
function hotkeyId():uint;
}
} |
package awaybuilder.view.components.controls
{
import flash.events.FocusEvent;
import spark.components.Scroller;
public class CrutchScroller extends Scroller
{
override protected function focusInHandler(event:FocusEvent):void
{
if(focusManager != null) {
super.focusInHandler(event);
}
}
}
} |
/**
* Copyright 2011 The original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applic... |
package devoron.sdk.server
{
import flash.net.Socket;
/**
* ...
* @author Devoron
*/
public class ServerSocket extends Socket
{
public function ServerSocket()
{
}
}
} |
package utils.color
{
public function toGrayscale(hex:uint):uint
{
var color:Object = getARGB(hex);
var c:Number = 0;
c += color.r * .3;
c += color.g * .59;
c += color.b * .11;
color.r = color.g = color.b = c;
return setARGB(color.a, color.r, color.g, color.b);
}
} |
package com.appfw
{
import com.appfw.ctrl.cmds.StartupAppCmd;
import com.fw.AppFacade;
public class FpFacade extends AppFacade
{
private static var _instance:FpFacade;
public function FpFacade()
{
super();
}
public static function get instance():FpFacade
{
return _instance ||= new FpFacade... |
package com.worker
{
import com.demonsters.debugger.MonsterDebugger;
import flash.display.LoaderInfo;
import flash.display.Sprite;
import flash.events.Event;
import flash.net.URLLoader;
import flash.net.URLLoaderDataFormat;
import flash.net.URLRequest;
import flash.system.Security;
import flash.utils.ByteArr... |
package SJ.Game.moneytree
{
import SJ.Game.data.CJDataManager;
import SJ.Game.data.CJDataOfRole;
import SJ.Game.data.config.CJDataOfMoneyTreeProperty;
import engine_starling.SApplication;
import engine_starling.display.SImage;
import engine_starling.display.SLayer;
import feathers.controls.Button;
import fe... |
package aerys.minko.example.core.blendingEffect
{
import aerys.minko.render.RenderTarget;
import aerys.minko.render.geometry.stream.format.VertexComponent;
import aerys.minko.render.material.basic.BasicShader;
import aerys.minko.render.shader.SFloat;
public class BlendingShader extends BasicShader
{
public fu... |
package com.huawei.sdnc.controller.ipCoreController
{
import com.huawei.sdnc.controller.SaveTopoLocation;
import com.huawei.sdnc.event.SdncEvt;
import com.huawei.sdnc.model.Data;
import com.huawei.sdnc.model.Device;
import com.huawei.sdnc.model.QosListCalculate;
import com.huawei.sdnc.service.SdnService;
... |
/**
* This class shows characte bio information. The character image and text is handled by
* the CharacterBioPane class.
*
* @langversion ActionScript 3.0
* @playerversion Flash 9.0
* @author David Cary
* @since 04.09.2010
*/
package com.neopets.games.marketing.destination.capriSun.disrespectoids.widget... |
/*
* Copyright 2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... |
package com.google.protobuf {
public class CodedOutputStream {
private var _buffer:ByteArray;
public function CodedOutputStream(output:ByteArray) {
_buffer = output;
}
//-------------------------------------------------------------------------
public function writeTag(fieldNumber:int, w... |
/*
* ______ _____ _______
* .-----..--.--..----..-----.| __ \ \| ___|
* | _ || | || _|| -__|| __/ -- | ___|
* | __||_____||__| |_____||___| |_____/|___|
* |__|
* $Id: BadPdfFormatError.as 238 2010-01-31 10:49:33Z alessandro.crugnola $
* $Author Alessandro Cr... |
package com.codeazur.as3swf.data
{
import com.codeazur.as3swf.SWFData;
import com.codeazur.utils.StringUtils;
public class SWFShapeRecordStyleChange extends SWFShapeRecord
{
public var stateNewStyles:Boolean = false;
public var stateLineStyle:Boolean = false;
public var stateFillStyle1:Boolean = f... |
package com.xgame.godwar.core.initialization
{
import com.xgame.godwar.common.parameters.ServerListParameter;
import com.xgame.godwar.configuration.SocketContextConfig;
import com.xgame.godwar.core.center.CommandCenter;
import com.xgame.godwar.core.loading.mediators.LoadingIconMediator;
import com.xgame.godwar.cor... |
// =================================================================================================
//
// Created by Rodrigo Lopez [roipeker™] on 22/06/2018.
//
// =================================================================================================
package com.roipeker.utils.adl.collections.brands {
impo... |
/**
* VERSION: 12.01
* DATE: 2012-07-28
* AS2
* UPDATES AND DOCS AT: http://www.greensock.com
**/
import com.iequip.TweenLite;
import com.iequip.plugins.TweenPlugin;
/**
* <p><strong>See AS3 files for full ASDocs</strong></p>
*
* <p><strong>Copyright 2008-2014, GreenSock. All rights reserved.</strong> This wo... |
package
{
public class Signals
{
public static const NONE :int = 0;
// system
public static const FATAL_ERROR :int = 1000;
public static const CONTROLLER_DISCONNECT :int = 1001;
public static const NETWORK_DISCONNECT :int = 1002;
public static const DEVICE_LOST :int = 1003;
public stati... |
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import InternalClassPackage.*;
import com.adobe.test.Assert;
// var SECTION = "Definitions"; ... |
////////////////////////////////////////////////////////////////////////////////
// Copyright 2010 Michael Schmalle - Teoti Graphix, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
/... |
package kabam.rotmg.account.core.signals {
import org.osflash.signals.Signal;
public class OpenAccountPaymentSignal extends Signal {
}
}
|
/*
* Copyright (c) 2018 Marcel Piestansky
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... |
package starlingbuilder.editor.ui
{
import feathers.controls.Alert;
import feathers.controls.Button;
import feathers.controls.Header;
import feathers.controls.Label;
import feathers.controls.LayoutGroup;
import feathers.controls.List;
import feathers.controls.renderers.DefaultListItemRendere... |
/*
* Copyright 2010 (c) Renaun Erickson - renaun.com
*
* 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, mo... |
package chuckle_fla
{
import flash.display.*;
dynamic public class MainTimeline extends MovieClip
{
public var theUpper:MovieClip;
public function MainTimeline()
{
return;
}// end function
}
}
|
//THIS FILE IS AUTO GENERATED, DO NOT MODIFY!!
//THIS FILE IS AUTO GENERATED, DO NOT MODIFY!!
//THIS FILE IS AUTO GENERATED, DO NOT MODIFY!!
package com.gamesparks.api.messages
{
import com.gamesparks.api.types.*;
import com.gamesparks.*;
/**
* A message indicating that the challenge has been accepted.
*/
... |
package com.leapmotion.leap
{
/**
* The Config class provides access to Leap Motion system configuration information.
*
* <p>You can get and set gesture configuration parameters using the Config
* object obtained from a connected Controller object. The key strings
* required to identify a configuration para... |
/*
* Copyright (C) 2003-2012 Igniterealtime Community Contributors
*
* Daniel Henninger
* Derrick Grigg <dgrigg@rogers.com>
* Juga Paazmaya <olavic@gmail.com>
* Nick Velloff <nick.velloff@gmail.com>
* Sean Treadway <seant@oncotype.dk>
* Sean Voisen <sean@voisen.org>
* Mark Walters <... |
package
{
import com.fw.view.comps.IRenderClickHandler;
import feathers.controls.ImageLoader;
import feathers.controls.List;
import feathers.controls.renderers.IListItemRenderer;
import feathers.data.ListCollection;
import feathers.layout.VerticalLayout;
import lzm.starling.STLMainClass;
import starling.e... |
/*
* Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any pu... |
intrinsic class flash.geom.ColorTransform {
var rgb : Number;
var blueOffset : Number;
var greenOffset : Number;
var redOffset : Number;
var alphaOffset : Number;
var blueMultiplier : Number;
var greenMultiplier : Number;
var redMultiplier : Number;
var alphaMultiplier : Number;
function ColorTr... |
package com.bojinx.test
{
import com.bojinx.message.TestMessageOne;
import com.bojinx.message.TestMessageTwo;
import flash.events.Event;
import flash.events.EventDispatcher;
import flash.utils.setTimeout;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
public class TestCommandTwo extends Ev... |
package SJ.Game.friends
{
import SJ.Common.Constants.ConstMainUI;
import SJ.Common.Constants.ConstNetCommand;
import SJ.Game.SocketServer.SocketCommand_role;
import SJ.Game.SocketServer.SocketManager;
import SJ.Game.SocketServer.SocketMessage;
import SJ.Game.data.config.CJDataHeroProperty;
import SJ.Game.data.co... |
package org.bigbluebutton.lib.main.commands {
import org.osflash.signals.Signal;
public class MuteAllUsersSignal extends Signal {
public function MuteAllUsersSignal() {
/**
* @1 mute
*/
super(Boolean);
}
}
}
|
package System.Diagnostics
{
import Shared.AS3.BSButtonHintBar;
import Shared.AS3.BSButtonHintData;
import Shared.AS3.BSScrollingList;
import Shared.AS3.BSScrollingListEntry;
import Shared.AS3.BSUIComponent;
import Shared.IMenu;
import System.Diagnostics.Debug;
import System.UI.MenuType;
import flash.display.D... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package fl.transitions
{
import flash.events.*;
import flash.display.*;
import flash.utils.*;
/**
* @eventType fl.transitions.TweenEvent.MOTION_CHANGE
*
* @playerversion Flash 9
* @langversion 3.0
*/
[Event(name="motionChange", type="fl.transitions.TweenEvent")]
/**
* @eventType fl.transiti... |
/*
Copyright aswing.org, see the LICENCE.txt.
*/
import GUI.fox.aswing.awml.AbstractParser;
/**
* Parses list item.
*
* @author Igor Sadovskiy
*/
class GUI.fox.aswing.awml.component.list.ListItemParser extends AbstractParser {
private static var ATTR_VALUE:String = "value";
private static var ATTR_TYPE:St... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package com.zehfernando.display.components.text {
/**
* @author Zeh
*/
public class TextSpriteAlign {
// Constants
public static const TOP:String = "top";
public static const MIDDLE:String = "middle";
public static const BOTTOM:String = "bottom";
public static const BASELINE:String = "baseline";
pu... |
/**
* Starling Builder
* Copyright 2015 SGN Inc. All Rights Reserved.
*
* This program is free software. You can redistribute and/or modify it in
* accordance with the terms of the accompanying license agreement.
*/
package starlingbuilder.editor.history
{
import flash.geom.Point;
import starling.dis... |
/**
* Copyright (c) 2014-present, ErZhuan(coco) Xie
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package coco.helper
{
import coco.component.IScrollView;
/**
* 滚动辅助接口
*/
public interface IScrollHelper
{
/**
* 开始... |
class flipTo extends TextField
{
public var s:String;
public var rot:Number;
private var T:MovieClip;
//
function flipTo (s:String, rot:Number)
{
this.init ();
this.flip ();
}
private function flip (s:String, rot:Number)
{
if (s == undefined)
{
s = "";
}
if (this.text == "")
{
this.text = ... |
package asunit.framework
{
import asunit.errors.UsageError;
import asunit.util.ArrayIterator;
import asunit.util.Iterator;
import p2.reflect.Reflection;
import p2.reflect.ReflectionMethod;
public class TestIterator implements Iterator
{
private var _readyToTearDown:Boolean;
private var afterClassMethods:It... |
package org.yellcorp.lib.layout.properties
{
public const HCENTER:String = "hcenter";
}
|
package away3d.hacks
{
import away3d.core.managers.Stage3DProxy;
import away3d.textures.Texture2DBase;
import flash.display3D.textures.Texture;
import flash.display3D.textures.TextureBase;
public class NativeTexture extends Texture2DBase
{
private var _texture : TextureBase;
public function NativeTexture(t... |
table bed
"Browser extensible data"
(
string chrom; "Reference sequence chromosome or scaffold"
uint chromStart; "Start position in chromosome"
uint chromEnd; "End position in chromosome"
string name; "Name of item"
)
|
package serverProto.warWorship
{
import com.netease.protobuf.Message;
import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_MESSAGE;
import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_SINT32;
import com.netease.protobuf.WireType;
import serverProto.inc.ProtoRetInfo;
import c... |
package kabam.rotmg.arena.service {
import kabam.lib.tasks.BaseTask;
import kabam.rotmg.account.core.Account;
import kabam.rotmg.appengine.api.AppEngineClient;
import kabam.rotmg.arena.model.BestArenaRunModel;
public class GetBestArenaRunTask extends BaseTask {
private static const REQUEST:String = "/arena/getPe... |
package com.playata.application.ui.effects
{
public interface IEffect
{
function update(param1:Number) : Boolean;
function dispose() : void;
function shutDown() : void;
}
}
|
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
package kabam.rotmg.core.signals {
import flash.display.Sprite;
import org.osflash.signals.Signal;
public class SetScreenWithValidDataSignal extends Signal {
public function SetScreenWithValidDataSignal() {
super(Sprite);
}
}
}
|
/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.2.0
*/
package com.yahoo.webapis.upcoming {
import flash.net.URLRequest;
import flash.net.URLRequestMethod;
import flash.net.URLLoader;
import flash.net.URLVariables;
... |
package kabam.rotmg.messaging.impl.data {
import flash.utils.IDataInput;
public class GroundTileData {
public var x_:int;
public var y_:int;
public var type_:uint;
public function GroundTileData() {
super();
}
public function par... |
/*
Copyright (c) 2006. Adobe Systems Incorporated.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
/*
* Copyright 2009 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law o... |
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF license... |
package swift.core.shell
{
use namespace shell_internal;
public final class ExecutorEnum
{
shell_internal static const DEFAULT:ExecutorEnum = new ExecutorEnum();
shell_internal static const COMMAND:ExecutorEnum = new ExecutorEnum();
public function ExecutorEnum()
{
}
}
}
internal names... |
package GameObjects.Mobile.Obstacles.Zones
{
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import Events.ObstacleEvent;
import GameObjects.EditRegions.EditRect;
import GameObjects.HitRegions.HitRegion;
import GameObjects.HitRegions.HollowHitBox;
public class BlackZ... |
/*
* Tencent is pleased to support the open source community by making Fanvas available.
* Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the Lice... |
package com.zcup.core.net.remote
{
/**
*
* @atuhor: mldongs
* @qq: 25772076
* @time: Aug 11, 2011 8:49:40 PM
**/
public class ZResponder implements IResponder
{
private var _onResult:Function;
private var _onFault:Function;
/**
* 构造函数
* @param onResult 成功处理函数
* @param onFault 失败处理函数
... |
package feathers.examples.weather.services
{
import feathers.examples.weather.events.ForecastEventType;
import feathers.examples.weather.model.ForecastModel;
import org.robotlegs.starling.mvcs.Actor;
import starling.core.Starling;
/**
* This class is used for testing purposes. It uses mock data to avoid
* c... |
package com.greensock.easing
{
public final class ElasticInOut extends Ease
{
private static const _2PI:Number = Math.PI * 2;
public static var ease:ElasticInOut = new ElasticInOut();
public function ElasticInOut(param1:Number = 1, param2:Number = 0.3)
{
... |
package com.ankamagames.dofus.logic.game.fight.frames
{
import com.ankamagames.atouin.Atouin;
import com.ankamagames.atouin.managers.InteractiveCellManager;
import com.ankamagames.berilia.Berilia;
import com.ankamagames.berilia.components.Label;
import com.ankamagames.berilia.managers.KernelEventsM... |
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at... |
package a24.tween.core.updaters.colors
{
import a24.tween.core.updaters.abstracts.AbstractDisplayObjectUpdater;
import a24.tween.core.updaters.abstracts.AbstractUpdater;
import flash.display.DisplayObject;
public final class ColorReversalUpdater extends AbstractDisplayObjectUpdater
{
... |
package starlingdemo {
import Box2D.Dynamics.Contacts.b2Contact;
import citrus.core.starling.StarlingState;
import citrus.objects.platformer.box2d.Coin;
import citrus.objects.platformer.box2d.Enemy;
import citrus.objects.platformer.box2d.Hero;
import citrus.objects.platformer.box2d.Platform;
import citrus.phys... |
/**
* Author: Alessandro Bianco
* Website: http://alessandrobianco.eu
* Twitter: @alebianco
* Created: 06/05/13 18.56
*
* Copyright © 2013 Alessandro Bianco
*/
package robotlegs.starling.bundles.mvcs {
import robotlegs.bender.extensions.directCommandMap.DirectCommandMapExtension;
import robotlegs.bender.exte... |
/**
* Created with IntelliJ IDEA.
* User: mobitile
* Date: 8/29/14
* Time: 12:36 PM
* To change this template use File | Settings | File Templates.
*/
package feathersx.controls.pulltorefresh
{
public class HeaderState
{
/**
* Indicates normal state.
*/
public static const PULL:String = "pull";
... |
package org.aswing.plaf{
import org.aswing.Component;
public class DefaultsDecoratorBase implements DefaultsDecorator{
protected var defaultsOwner:ComponentUI;
public function DefaultsDecoratorBase(){
}
public function setDefaultsOwner(owner:ComponentUI):void{
defaultsOwner = owner;
}
public funct... |
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
... |
/*
Copyright (c) 2008, Adobe Systems Incorporated
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright notice,
this list of ... |
package com.axis.rtmpclient {
import com.axis.ClientEvent;
import com.axis.NetStreamClient;
import com.axis.ErrorManager;
import com.axis.IClient;
import com.axis.Logger;
import flash.events.AsyncErrorEvent;
import flash.events.EventDispatcher;
import flash.events.IOErrorEvent;
import flash.events.Ne... |
package com.deleidos.rtws.alertviz.expandgraph.graph
{
import com.deleidos.rtws.alertviz.expandgraph.graph.properties.Properties;
public class Edge
{
private var _from:Node;
/** What node the edge comes from */
public function get from():Node{
return _from;
}
private var _to:Node;
/** What node t... |
package com.hurlant.util.asn1.type {
import flash.net.registerClassAlias;
import flash.utils.ByteArray;
public class StringType extends ASN1Type {
registerClassAlias("com.hurlant.util.asn1.StringType", StringType);
public var size1:int, size2:int;
public function StringType(tag:int, size1:int=int.MAX_V... |
package maryfisher.framework.command.loader {
/**
* ...
* @author mary_fisher
*/
public class FileLoaderCommand extends LoaderCommand {
public function FileLoaderCommand(id:String) {
super(id);
}
}
} |
/**
* (c) VARIANTE <http://variante.io>
*
* This software is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*/
package io.variante.events
{
import flash.events.Event;
import flash.events.KeyboardEvent;
/**
* Extended flash.events.MouseEvent wit... |
/*
Feathers
Copyright 2012-2014 Joshua Tynjala. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls.text
{
import feathers.core.FeathersControl;
import feathers.core.IMultilineTextEd... |
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import com.adobe.test.Assert;
gTes... |
/**
* Created by varadig on 15/07/16.
*/
package plugins.mxml.feathers {
import core.base.CoreBaseClassFactory;
import core.base.CoreCallback;
import core.context.CoreContext;
import core.service.CoreServiceContainer;
import feathers.controls.WebView;
import feathers.skins.IStyleProvider;
public class GuiWebView ex... |
/**
* Apache License
* Version 2.0, January 2004
* http://www.apache.org/licenses/
*
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
*
* 1. Definitions.
*
* "License" shall mean the terms and conditio... |
package kabam.rotmg.account.transfer.view {
import com.company.assembleegameclient.account.ui.Frame;
import com.company.assembleegameclient.account.ui.TextInputField;
import com.company.assembleegameclient.ui.DeprecatedClickableText;
import com.company.util.KeyCodes;
import flash.events.Event;
import flash.events.Key... |
package views.client {
import com.tuarua.torrent.TorrentInfo;
import com.tuarua.torrent.TorrentStateCodes;
import com.tuarua.torrent.TorrentStatus;
import events.InteractionEvent;
import starling.animation.Transitions;
import starling.animation.Tween;
import starling.core.Starling;
import starling.display.Q... |
package com.greensock.core
{
import flash.display.Shape;
import flash.events.Event;
import flash.utils.getTimer;
public class Animation
{
public static const version:String = "12.1.1";
public static var ticker:Shape = new Shape();
public static var _rootTimeline... |
package away3d.loaders.parsers
{
import away3d.arcane;
import away3d.core.base.CompactSubGeometry;
import away3d.materials.utils.DefaultMaterialManager;
import away3d.containers.ObjectContainer3D;
import away3d.core.base.Geometry;
import away3d.core.base.SubGeometry;
import away3d.entities.Mesh;
import away3d.l... |
#include "engine/asset_manager.as"
class Lighting
{
void InitializeLighting()
{
//Sun();
ReflectiveShadowMap();
//FlashLight();
}
Entity& GetSunFront()
{
return sun_front;
}
Entity& GetSunBack()
{
return sun_back;
}
Entity& GetFlashLight()
{
retur... |
package com.rockdot.plugin.state.model.vo {
import com.rockdot.core.RockdotVO;
/**
* @author Nils Doehring (nilsdoehring(at)gmail.com)
*/
public class StateVO extends RockdotVO {
public var view_id : String;
public var property_key : String;
public var substate : String;
public var tree_order : uint;
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.