code
string
repo_name
string
path
string
language
string
license
string
size
int64
/* * copyright (c) 2007 Michael Niedermayer <michaelni@gmx.at> * * some optimization ideas from aes128.c by Reimar Doeffinger * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the F...
123linslouis-android-video-cutter
jni/libavutil/aes.c
C
asf20
8,277
/* * principal component analysis (PCA) * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; ei...
123linslouis-android-video-cutter
jni/libavutil/pca.c
C
asf20
6,507
/* * Copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or...
123linslouis-android-video-cutter
jni/libavutil/mathematics.c
C
asf20
6,722
LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) include $(LOCAL_PATH)/../av.mk LOCAL_SRC_FILES := $(FFFILES) LOCAL_C_INCLUDES := \ $(LOCAL_PATH) \ $(LOCAL_PATH)/.. LOCAL_CFLAGS += $(FFCFLAGS) LOCAL_STATIC_LIBRARIES := $(FFLIBS) LOCAL_MODULE := $(FFNAME) include $(BUILD_STATIC_LIBRARY)
123linslouis-android-video-cutter
jni/libavutil/Android.mk
Makefile
asf20
292
/* * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or...
123linslouis-android-video-cutter
jni/libavutil/log.h
C
asf20
3,749
/* * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the ...
123linslouis-android-video-cutter
jni/libavutil/random_seed.h
C
asf20
1,057
/* * linear least squares model * * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either ...
123linslouis-android-video-cutter
jni/libavutil/lls.c
C
asf20
3,812
/* * copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or...
123linslouis-android-video-cutter
jni/libavutil/mathematics.h
C
asf20
3,099
/* * a very simple circular buffer FIFO implementation * Copyright (c) 2000, 2001, 2002 Fabrice Bellard * Copyright (c) 2006 Roman Shaposhnik * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as pu...
123linslouis-android-video-cutter
jni/libavutil/fifo.c
C
asf20
3,498
/* * Lagged Fibonacci PRNG * Copyright (c) 2008 Michael Niedermayer * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the Licen...
123linslouis-android-video-cutter
jni/libavutil/lfg.c
C
asf20
2,523
/* * Copyright (C) 2007 Marc Hoffman * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any late...
123linslouis-android-video-cutter
jni/libavutil/bfin/bswap.h
C
asf20
1,341
/* * Copyright (C) 2007 Marc Hoffman * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any late...
123linslouis-android-video-cutter
jni/libavutil/bfin/timer.h
C
asf20
1,216
/* * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed...
123linslouis-android-video-cutter
jni/libavutil/intreadwrite.h
C
asf20
14,308
/* * portable IEEE float/double read/write functions * * Copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Softwar...
123linslouis-android-video-cutter
jni/libavutil/intfloat_readwrite.c
C
asf20
2,929
APP_MODULES := takepics avformat
123linslouis-android-video-cutter
jni/Application.mk
Makefile
asf20
38
#include <jni.h> #include "include/net_avc_video_cutter_natives_Natives.h" #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" void log_message(char* message) { FILE *pFile; char szFilename[32]; int y; // Open file sprintf(szFilename, "/sdcard/log.txt"); pFile = fopen(szFilename, "a"); if (pFile...
123linslouis-android-video-cutter
jni/takepics.c
C
asf20
3,017
MY_PATH:=$(call my-dir) LOCAL_PATH:= $(MY_PATH)/libavutil include $(CLEAR_VARS) LOCAL_MODULE := libavutil include $(LOCAL_PATH)/../av.mk LOCAL_SRC_FILES := $(FFFILES) LOCAL_C_INCLUDES := $(LOCAL_PATH) $(LOCAL_PATH)/.. LOCAL_CFLAGS += $(FFCFLAGS) include $(BUILD_STATIC_LIBRARY) LOCAL_PATH:= $(MY_PATH)/libavcodec inclu...
123linslouis-android-video-cutter
jni/Android.mk
Makefile
asf20
1,115
#!/bin/sh #http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Java14Development/03-JavaDeployment/JavaDeployment.html #http://stackoverflow.com/questions/96882/how-do-i-create-a-nice-looking-dmg-for-mac-os-x-using-command-line-tools set -o verbose #echo onset +o verbose #echo off # Note: this must ...
07pratik-androidui
design-preview/mac/package_mac.sh
Shell
asf20
2,768
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/android/src/com/google/android/apps/proofer/SystemUiHider.java
Java
asf20
1,706
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/android/src/com/google/android/apps/proofer/DesktopViewerActivity.java
Java
asf20
7,493
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/Config.java
Java
asf20
854
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/ControllerForm.java
Java
asf20
9,438
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/Proofer.java
Java
asf20
11,218
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/Util.java
Java
asf20
4,401
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/ProoferException.java
Java
asf20
995
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/os/OSBinder.java
Java
asf20
1,810
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/os/MacBinder.java
Java
asf20
1,285
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/os/DefaultBinder.java
Java
asf20
776
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/RegionSelector.java
Java
asf20
10,422
/* * Copyright 2011 Google Inc. * * 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 agreed to...
07pratik-androidui
design-preview/desktop/src/com/google/android/desktop/proofer/AdbRunner.java
Java
asf20
4,113
#!/usr/bin/env python # Copyright 2010 Google Inc. # # 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 la...
07pratik-androidui
stencils/pencil/stengen/shape_from_9patch.py
Python
asf20
2,932
#!/usr/bin/env python # Copyright 2010 Google Inc. # # 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 la...
07pratik-androidui
stencils/pencil/stengen/shape_from_png.py
Python
asf20
1,265
#!/usr/bin/env python # Copyright 2010 Google Inc. # # 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 la...
07pratik-androidui
stencils/pencil/stengen/stencil_generator.py
Python
asf20
1,691
#!/usr/bin/env python # Copyright 2010 Google Inc. # # 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 la...
07pratik-androidui
stencils/pencil/stengen/datauri.py
Python
asf20
1,011
#!/bin/sh # Copyright 2010 Google Inc. # # 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 agreed ...
07pratik-androidui
stencils/pencil/make-rawshapes.sh
Shell
asf20
889
#!/bin/sh # Copyright 2010 Google Inc. # # 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 agreed ...
07pratik-androidui
stencils/pencil/make.sh
Shell
asf20
944
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/includes.js
JavaScript
asf20
629
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/_header.js
JavaScript
asf20
602
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/drawing.js
JavaScript
asf20
17,043
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/util.js
JavaScript
asf20
2,697
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/_footer.js
JavaScript
asf20
603
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/imagelib/imagelib.js
JavaScript
asf20
1,721
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/browsersupport.js
JavaScript
asf20
1,393
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/includes.js
JavaScript
asf20
670
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/_header.js
JavaScript
asf20
600
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/imagefield.js
JavaScript
asf20
20,069
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/hash.js
JavaScript
asf20
4,556
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/fields.js
JavaScript
asf20
11,888
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/util.js
JavaScript
asf20
1,039
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/_footer.js
JavaScript
asf20
599
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/ui.js
JavaScript
asf20
1,665
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/zip.js
JavaScript
asf20
2,353
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/studio/forms.js
JavaScript
asf20
3,135
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/src/globals.js
JavaScript
asf20
591
// A modified version of bitmap.js from http://rest-term.com/archives/2566/ var Class = { create : function() { var properties = arguments[0]; function self() { this.initialize.apply(this, arguments); } for(var i in properties) { self.prototype[i] = properties[i]; } if(!self.proto...
07pratik-androidui
asset-studio/src/js/lib/filter.js
JavaScript
asf20
2,024
/* Base.js, version 1.1 Copyright 2006-2007, Dean Edwards License: http://www.opensource.org/licenses/mit-license.php */ var Base = function() { // dummy }; Base.extend = function(_instance, _static) { // subclass var extend = Base.prototype.extend; // build the prototype Base._prototyping = true; var proto...
07pratik-androidui
asset-studio/src/js/lib/base.js
JavaScript
asf20
3,914
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/lib/license-header.js
JavaScript
asf20
559
<html> <head> <!-- Copyright 2010 Google Inc. 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 agreed to in writ...
07pratik-androidui
asset-studio/src/js/lib/test/test-runner.html
HTML
asf20
1,623
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/lib/test/test-runner.js
JavaScript
asf20
6,968
/* Copyright 2010 Google Inc. 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 agreed to in writing, software di...
07pratik-androidui
asset-studio/src/js/lib/test/test-runner.css
CSS
asf20
1,723
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/icons-actionbar.html
HTML
asf20
9,358
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/index.html
HTML
asf20
3,050
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/icons-notification.html
HTML
asf20
10,593
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/icons-launcher.html
HTML
asf20
14,665
<!DOCTYPE html> <html> <!-- Copyright 2011 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/nine-patches.html
HTML
asf20
18,086
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/icons-menu.html
HTML
asf20
11,226
<!DOCTYPE html> <html> <!-- Copyright 2011 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/device-frames.html
HTML
asf20
10,151
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <title>Android Asset Studio - Icon Generator - Launcher icons</title> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"><...
07pratik-androidui
asset-studio/src/html/_fxtest.html
HTML
asf20
7,639
<!DOCTYPE html> <html> <!-- Copyright 2010 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/icons-tab.html
HTML
asf20
11,794
<!DOCTYPE html> <html> <!-- Copyright 2011 Google Inc. 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 ...
07pratik-androidui
asset-studio/src/html/attribution.html
HTML
asf20
2,607
/* Copyright 2010 Google Inc. 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 agreed to in writing,...
07pratik-androidui
asset-studio/src/css/studio.css
CSS
asf20
5,992
/** * * Color picker * Author: Stefan Petre www.eyecon.ro * * Dual licensed under the MIT and GPL licenses * */ (function ($) { var ColorPicker = function () { var ids = {}, inAction, charMin = 65, visible, tpl = '<div class="colorpicker"><div class="colorpicker_color"><div><di...
07pratik-androidui
asset-studio/src/lib/colorpicker/js/colorpicker.js
JavaScript
asf20
17,175
.colorpicker { width: 356px; height: 176px; overflow: hidden; position: absolute; background: url(../images/colorpicker_background.png); font-family: Arial, Helvetica, sans-serif; display: none; } .colorpicker_color { width: 150px; height: 150px; left: 14px; top: 13px; position: absolute; ba...
07pratik-androidui
asset-studio/src/lib/colorpicker/css/colorpicker.css
CSS
asf20
3,181
/** * A class to parse color values * @author Stoyan Stefanov <sstoo@gmail.com> * @link http://www.phpied.com/rgb-color-parser-in-javascript/ * @license Use it if you like it */ function RGBColor(color_string) { this.ok = false; // strip any leading # if (color_string.charAt(0) == '#') { ...
07pratik-androidui
asset-studio/src/lib/canvg/rgbcolor.js
JavaScript
asf20
9,042
/* * canvg.js - Javascript SVG parser and renderer on Canvas * MIT Licensed * Gabe Lerner (gabelerner@gmail.com) * http://code.google.com/p/canvg/ * * Requires: rgbcolor.js - http://www.phpied.com/rgb-color-parser-in-javascript/ */ if(!window.console) { window.console = {}; window.console.log = func...
07pratik-androidui
asset-studio/src/lib/canvg/canvg.js
JavaScript
asf20
71,341
/* Downloadify: Client Side File Creation JavaScript + Flash Library Version: 0.2 Copyright (c) 2009 Douglas C. Neiner 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 res...
07pratik-androidui
asset-studio/src/lib/downloadify/src/downloadify.js
JavaScript
asf20
6,460
/* Copyright (c) 2006 Steve Webster 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, ...
07pratik-androidui
asset-studio/src/lib/downloadify/src/com/dynamicflash/util/tests/Base64Test.as
ActionScript
asf20
2,400
/* Base64 - 1.1.0 Copyright (c) 2006 Steve Webster 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, publi...
07pratik-androidui
asset-studio/src/lib/downloadify/src/com/dynamicflash/util/Base64.as
AngelScript
asf20
4,715
/* Downloadify: Client Side File Creation JavaScript + Flash Library Version: 0.2 Copyright (c) 2009 Douglas C. Neiner 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 restr...
07pratik-androidui
asset-studio/src/lib/downloadify/src/Downloadify.as
ActionScript
asf20
5,588
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Downloadify</title> <style type="text/css" media="screen"> body {background: #fff; width: 500px; margin: 20px auto;} ...
07pratik-androidui
asset-studio/src/lib/downloadify/test.html
HTML
asf20
3,001
/** JSZip - A Javascript class for generating Zip files <http://jszip.stuartk.co.uk> (c) 2009 Stuart Knightley <stuart [at] stuartk.co.uk> Licenced under the GPLv3 and the MIT licences Usage: zip = new JSZip(); zip.add("hello.txt", "Hello, World!").add("tempfile", "nothing"); zip.folder("images").add("smile...
07pratik-androidui
asset-studio/src/lib/jszip/jszip.js
JavaScript
asf20
13,515
/* * Port of a script by Masanao Izumo. * * Only changes : wrap all the variables in a function and add the * main function to JSZip (DEFLATE compression method). * Everything else was written by M. Izumo. * * Original code can be found here: http://www.onicos.com/staff/iz/amuse/javascript/expert/inflate.txt *...
07pratik-androidui
asset-studio/src/lib/jszip/jszip-deflate.js
JavaScript
asf20
54,215
<!DOCTYPE html> <html> <head> <title>JavaScript Zip Testing</title> <link media="screen" href="qunit.css" type="text/css" rel="stylesheet"> <script type="text/javascript" src="../jszip.js"></script> <script type="text/javascript" src="../jszip-deflate.js"></script> <script type="text/javascript" src="qunit.js"></script...
07pratik-androidui
asset-studio/src/lib/jszip/test/index.html
HTML
asf20
9,640
/* * QUnit - A JavaScript Unit Testing Framework * * http://docs.jquery.com/QUnit * * Copyright (c) 2009 John Resig, Jörn Zaefferer * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. */ (function(window) { var QUnit = { // Initialize the configuration options init: funct...
07pratik-androidui
asset-studio/src/lib/jszip/test/qunit.js
JavaScript
asf20
26,759
h1#qunit-header { padding: 15px; font-size: large; background-color: #06b; color: white; font-family: 'trebuchet ms', verdana, arial; margin: 0; } h1#qunit-header a { color: white; } h2#qunit-banner { height: 2em; border-bottom: 1px solid white; background-color: #eee; margin: 0; font-family: 'trebuchet ms', verdana, ...
07pratik-androidui
asset-studio/src/lib/jszip/test/qunit.css
CSS
asf20
1,094
#!/bin/sh # Copyright 2010 Google Inc. # # 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 agreed ...
07pratik-androidui
asset-studio/make.sh
Shell
asf20
1,230
using System; using System.Collections.Generic; using System.Linq; using System.Text; using DAO; using System.Data; namespace BUS { public class QUAYBUS { public DataTable LoadDsQuay() { QUAYDAO quayDAO = new QUAYDAO(); DataTable dt = new DataTable(); ...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/QUAYBUS.cs
C#
asf20
402
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; namespace BUS { public class LOAISPBUS { public DataTable LoadDsLoaiSP() { LOAISPDAO LoaispDao = new LOAISPDAO(); DataTable dt = new DataTab...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/LOAISPBUS.cs
C#
asf20
416
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; using DTO; namespace BUS { public class THAMSOBUS { public DataTable LoadThamSo() { THAMSODAO tsDAO = new THAMSODAO(); DataTable dt = new D...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/THAMSOBUS.cs
C#
asf20
1,303
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; using DTO; namespace BUS { public class SANPHAMBUS { public DataTable LoadDsSanPham() { SANPHAMDAO spDAO = new SANPHAMDAO(); DataTable dt =...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/SANPHAMBUS.cs
C#
asf20
1,587
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using DAO; using DTO; namespace BUS { public class KHACHHANGBUS { KHACHHANGDAO khDAO= new KHACHHANGDAO(); KHACHHANGDTO khDTO= new KHACHHANGDTO()...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/KHACHHANGBUS.cs
C#
asf20
1,252
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using DAO; using DTO; namespace BUS { public class TAIKHOANBUS { public DataTable LoadDSTaiKhoan() { TAIKHOANDAO DAO = new TAIKHOANDA...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/TAIKHOANBUS.cs
C#
asf20
1,172
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; namespace BUS { public class XUATXUBUS { public DataTable LoadDsXuatXu() { XUATXUDAO xxDAO = new XUATXUDAO(); DataTable dt = new DataTable()...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/XUATXUBUS.cs
C#
asf20
408
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; namespace BUS { public class LOAINHANVIENBUS { public DataTable LoadDSLoaiNV() { LOAINHANVIENDAO lnvDao = new LOAINHANVIENDAO(); DataTable d...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/LOAINHANVIENBUS.cs
C#
asf20
428
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTi...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/Properties/AssemblyInfo.cs
C#
asf20
1,418
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using DAO; namespace BUS { public class KHOBUS { public DataTable LoadDsKho() { KHODAO khoDAO = new KHODAO(); DataTable dt = new DataTable(); ...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/KHOBUS.cs
C#
asf20
395
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BUS { public class Class1 { } }
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/Class1.cs
C#
asf20
155
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using DAO; using DTO; namespace BUS { public class NHANVIENBUS { public DataTable LoadDSNhanVien() { NHANVIENDAO nvDao = new NHANVIEN...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/BUS/NHANVIENBUS.cs
C#
asf20
460
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DTO { class LOAINHANVIENDTO { private int _maloainv; public int MaLoaiNV { get { return _maloainv; } set { _maloainv = value; } } pri...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/DTO/LOAINHANVIENDTO.cs
C#
asf20
495
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DTO { class CHITIETHOADONDTO { private int _mahd; public int MaHD { get { return _mahd; } set { _mahd = value; } } private int _masp;...
10650931065130doan
trunk/1065093_1065130_1065120_DoAn/DTO/CHITIETHOADONDTO.cs
C#
asf20
782