亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.java

?? emacs的一個非常有用的插件,叫xrefactory,可以實現source insight里的那種函數跳轉.和cscope(跳回來不方便)配合使用,非常的不錯.
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
package com.xrefactory.jedit;import java.util.*;import java.io.*;import javax.swing.*;class Options {	public static final int OPT_GENERAL 	= 0;	public static final int OPT_COMMON 		= 1;	public static final int OPT_PROJECT 	= 2;	public static final int OPT_BOTH 		= 3;	static public class OptionDescription {		String 		name;		int			nameLen;		int 		arity;		boolean		compact;		String		shortDescription;		String		longDescription;		boolean     interactive;		int			kind;		// OPT_...		boolean 	addAtBeginning;		boolean		recreateTagsIfModified;		//   'bd' - browse directories		//   'bf' - browse files		//   'bfd' - browse files and directories		String		fileSystemBrowseOptions;				OptionDescription(String name, boolean interactive,						  int kind, int arity, boolean compact,						  String shortDescription,						  String longDescription,						  String fileSystemBrowseOptions,						  boolean addAtBeginning, // not needed anymore						  boolean recreateTagsIfModified			) {			this.interactive = interactive;			this.name = name;			this.nameLen = name.length();			this.arity = arity;			this.kind = kind;			this.compact = compact;			this.shortDescription = shortDescription;			this.longDescription = longDescription;			this.fileSystemBrowseOptions = fileSystemBrowseOptions;			this.addAtBeginning = false; //addAtBeginning;			this.recreateTagsIfModified = recreateTagsIfModified;		}	}	public static OptionDescription optFilesCaseUnSensitive = new OptionDescription(		"-filescaseunsensitive", false, OPT_GENERAL, 1, true, 		"File names are considered case unsensitive", 		"File names are considered case unsensitive", 		null,false,true);	public static OptionDescription optJavaVersion = new OptionDescription(		"-source", true, OPT_BOTH, 2, false, 		"Sources are written in Java: ", 		"Java version in which sources are written.", 		null, false,true);	public static OptionDescription optCSuffixes = new OptionDescription(		"-csuffixes=", false, OPT_BOTH, 2, true, 		"Suffixes determining C sources: ", 		"Identify files with those suffixes as C sources", 		null, true,true);	public static OptionDescription optJavaSuffixes = new OptionDescription(		"-javasuffixes=", false, OPT_BOTH, 2, true, 		"Suffixes determining Java sources: ", 		"Identify files with those suffixes as Java sources", 		null, true,true);	public static OptionDescription optProjectMarker = new OptionDescription( 		"[",true, OPT_PROJECT, 2, true, 		"Project auto detection directories: ", 		"Project auto detection directories", 		"p",false,false);	public static OptionDescription optInputFile = new OptionDescription(		"",	true,OPT_PROJECT, 2, true, 		"Source files & directories: ", 		"Source files & directories", 		"p",false,true);	public static OptionDescription optPruneDirs = new OptionDescription(		"-prune", true,OPT_PROJECT, 2, false, 		"Prune directories: ", 		"Prune directories", 		"p",false,true);	public static OptionDescription optRecurseDirs = new OptionDescription(		"--r",	false, OPT_PROJECT, 1, true, 		"Do not descent into subdirectories when looking for input files", 		"Do not descent into subdirectories when looking for input files", 		null, true,true);	public static OptionDescription optXrefsFile = new OptionDescription(		"-refs",true,OPT_PROJECT, 2, false, 		"Place to store Tags: ",		"Place to store Tag",		"fd",false,true);	public static OptionDescription optXrefNum = new OptionDescription(		"-refnum=",false,OPT_PROJECT, 2, true,		"Number of Tag files: ",		"Number of Tag files",		null,false,true);	public static OptionDescription optCommentOption = new OptionDescription(		"//",false,OPT_BOTH, 0, true, 		"Comment",		"Comment",		null,false,false);	public static OptionDescription optClassPath = new OptionDescription(		"-classpath",true,OPT_BOTH, 2, false, 		"Classpath: ",		"Top directories with .class files (classpath)",		"p",false,true);	public static OptionDescription optSourcePath = new OptionDescription(		"-sourcepath",true,OPT_BOTH, 2, false, 		"Sourcepath: ",		"Top directories with source code (sourcepath)",		"p",false,true);	public static OptionDescription optJavaDocPath = new OptionDescription(		"-javadocpath",true,OPT_BOTH, 2, false, 		"Javadocpath: ",		"Top directories with javadoc documentation (javadocpath)",		"p",false,false);	public static OptionDescription optJdkClassPath = new OptionDescription(		"-jdkclasspath",true,OPT_BOTH, 2, false, 		"Jdk runtime library (rt.jar): ",		"Jdk runtime library (rt.jar)",		"p",false,true);	public static OptionDescription optLicense = new OptionDescription(		"-license=",true,OPT_COMMON, 2, true, 		"License string: ",		"License string",		null,false,false);	public static OptionDescription[] allOptions = {		optInputFile,	// must be first!		// regular options		optPruneDirs,		optRecurseDirs,		optCSuffixes,		optJavaSuffixes,		optLicense,		optClassPath,		optSourcePath,		optJavaDocPath,		optJavaVersion,		optXrefNum,		optProjectMarker,		optXrefsFile,		optJdkClassPath,//&		new OptionDescription("-include",true,OPT_BOTH, 2, false, //&							  "Include option file",//&							  "Include option file",//&							  "f", false),		// not interactive options		optCommentOption,		new OptionDescription("-set",false,OPT_BOTH, 3, false, 							  "Set a user defined variable: ",							  "Set a user defined variable",							  "fd",false,false),		new OptionDescription("-refs=",false,OPT_PROJECT, 2, true, 							  "Place to store Tags: ",							  "Place to store Tags",							  "fd",false,true),	};	// --------------------- ClassPathIterator ------------------------	public static class PathIterator {		String 		ss;		int 		sslen;		int 		i;		String 		separator;		public String next( ) {			String res;			int j = ss.indexOf(separator, i);			if (j == -1) {				res = ss.substring(i);				i = sslen+1;			} else {				res = ss.substring(i, j);				i = j+1;			}			return(res);		}		public boolean hasNext( ) {			return(i<sslen);		}		public void remove( ) {		}		PathIterator(String ss, String separator) {			this.ss = ss;			this.separator = separator;			sslen = ss.length();			i = 0;		}	}	// ------------------------- Option -------------------------------	static class Option {		OptionDescription 	option;		String[]			fulltext;		// includes option name		Option(OptionDescription desc) {			option = desc;			fulltext = new String[] {desc.name};		}		Option(OptionDescription desc, String optval) {			option = desc;			fulltext = new String[] {desc.name, optval};		}		Option(OptionDescription desc, String[] optvals) {			option = desc;			fulltext = new String[optvals.length+1];			fulltext[0] = desc.name;			for(int i=0; i<optvals.length; i++) {				fulltext[i+1] = optvals[i];			}		}		Option(Option o) {			int i;			this.option = o.option;			this.fulltext = new String[o.fulltext.length];			for(i=0; i<o.fulltext.length; i++) {				this.fulltext[i] = o.fulltext[i];			}		}	}	// ------------------------- OptionParser ---------------------------	static class OptionParser {		XrefCharBuffer 	ss;		int 			sslen;		int 			ind;		private static OptionDescription getOptionDescription(String opt) {			int i;			// options must be tested in reverse order, because of source files!!!			for(i=allOptions.length-1; i>=0; i--) {				OptionDescription o = allOptions[i];				if ((o.compact					 && opt.length() >= o.nameLen					 && opt.substring(0, o.nameLen).equals(o.name))					|| (!o.compact) && opt.equals(o.name)) {					return(o);				}			}			return(null);		}		String parseOptItem() {			String 		opt;			int 		b,j;			b = ind = s.skipBlank(ss, ind, sslen);			if (ind<sslen && ss.buf[ind]=='"') {				ind++;				while (ind<sslen && ss.buf[ind]!='"') ind++;				opt = ss.substring(b+1, ind);				ind++;			} else {				while (ind<sslen && !Character.isWhitespace(ss.buf[ind])) ind++;				opt = ss.substring(b,ind);			}			// following is useless, but it looks better			while ((j=opt.indexOf("${dq}"))!=-1) {				opt = opt.substring(0,j) + "\"" + opt.substring(j+5);			}			return(opt);		}		private Option parseOption() throws XrefErrorException {			String opt;			Option res=null;			int b;			b = ind = s.skipBlank(ss, ind, sslen);			if (ind<sslen && ss.buf[ind]=='[') {				while (ind<sslen && ss.buf[ind]!=']') ind++;				opt = ss.substring(b+1, ind);				ind++;				return(new Option(optProjectMarker, opt));			} else {				opt = parseOptItem();			}			OptionDescription desc = getOptionDescription(opt);			if (desc==null) throw new XrefErrorException("unknown option "+opt);			if (desc.name.equals("//")) {				// comment				b = ind;				while (ind<sslen && ss.buf[ind]!='\n') ind++;				String oval = opt.substring(2) + ss.substring(b,ind);				return(new Option(desc, oval));			}						if (desc.compact) {				return(new Option(desc, opt.substring(desc.nameLen)));			}			String[] vals = new String[desc.arity-1];			for(int i=1; i<desc.arity; i++) {				vals[i-1] = parseOptItem();			}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
偷拍日韩校园综合在线| 久久久国产精华| 色综合色狠狠综合色| 成人爱爱电影网址| www.日韩在线| 91麻豆国产福利在线观看| 99视频精品在线| 色综合久久综合网欧美综合网| proumb性欧美在线观看| 91视频91自| 欧洲一区在线观看| 日韩一级大片在线观看| 日韩欧美卡一卡二| 欧美极品xxx| 一区二区在线电影| 五月天国产精品| 国产在线精品视频| 99久久国产免费看| 欧美日韩国产一二三| 精品国产乱码久久久久久蜜臀 | 91精品在线麻豆| 精品成人在线观看| 中文字幕一区在线观看| 午夜电影久久久| 国产成人综合在线播放| 日本国产一区二区| 精品久久人人做人人爽| 亚洲麻豆国产自偷在线| 香蕉久久夜色精品国产使用方法| 久久成人久久爱| 成人深夜在线观看| 欧美高清视频不卡网| 国产亚洲视频系列| 午夜精品123| 高清视频一区二区| 日韩欧美综合在线| 亚洲午夜久久久久久久久电影院| 极品少妇xxxx精品少妇| 色天使色偷偷av一区二区 | 国内精品写真在线观看| 91网站最新网址| 欧美成人激情免费网| 亚洲欧美一区二区三区国产精品| 免费黄网站欧美| 91传媒视频在线播放| 久久综合九色综合97婷婷| 一区二区三区加勒比av| 国产在线不卡视频| 欧美一卡二卡三卡| 亚洲一区在线免费观看| www.欧美日韩| 国产欧美精品区一区二区三区| 日韩精品成人一区二区三区| 一本大道综合伊人精品热热| 久久久久99精品一区| 亚洲最大色网站| 91最新地址在线播放| 国产精品美女久久福利网站| 精品在线观看免费| 欧美一区二区三区四区在线观看| 1000部国产精品成人观看| 国产一区二区三区在线看麻豆| 884aa四虎影成人精品一区| 一区二区在线电影| 色美美综合视频| 亚洲精品国产a| 色天天综合色天天久久| 亚洲视频一区二区在线观看| 成人av网站在线| 国产拍欧美日韩视频二区| 国内久久精品视频| 久久精品亚洲麻豆av一区二区| 国产在线精品一区二区不卡了 | 91亚洲资源网| 国产精品成人在线观看| 成人app在线观看| 中文字幕制服丝袜成人av| 国产精品1024| 国产精品久久久久久久久搜平片| 成人综合在线网站| ...xxx性欧美| 欧美亚洲动漫制服丝袜| 午夜电影久久久| 精品免费一区二区三区| 国产精品一区二区久激情瑜伽 | 91麻豆精品国产91久久久久久久久| 一区二区三区丝袜| 777亚洲妇女| 久久精品国产亚洲一区二区三区| 欧美电视剧免费观看| 国产精品一区二区你懂的| 国产精品大尺度| 欧美日韩亚洲国产综合| 秋霞电影网一区二区| 精品区一区二区| 成人99免费视频| 亚洲sss视频在线视频| 日韩欧美激情一区| 成人精品视频一区二区三区| 亚洲人成电影网站色mp4| 欧美日韩国产成人在线91| 久久机这里只有精品| 国产精品久久久久久久久搜平片| 在线观看免费亚洲| 美国av一区二区| 亚洲精品国产精华液| 91精品国产入口在线| 丰满少妇在线播放bd日韩电影| 亚洲影视在线观看| 久久麻豆一区二区| 欧美写真视频网站| 激情五月激情综合网| 亚洲伊人色欲综合网| 国产欧美中文在线| 欧美日韩国产综合一区二区三区| 国产精品66部| 秋霞午夜av一区二区三区| 亚洲色图一区二区| 久久综合九色综合97婷婷| 欧美日韩一区高清| 成人精品免费网站| 国产在线精品一区二区 | 精品国产一区二区三区av性色| av亚洲精华国产精华| 久久99精品久久久久久国产越南| 日韩毛片精品高清免费| 国产嫩草影院久久久久| 91精品国产91综合久久蜜臀| 色综合久久久久综合99| 粗大黑人巨茎大战欧美成人| 精品一区二区成人精品| 三级在线观看一区二区| 一区二区三区**美女毛片| 欧美激情综合五月色丁香小说| 欧美tickling挠脚心丨vk| 欧美日韩不卡一区二区| 在线免费观看日本一区| 99久久精品免费看国产免费软件| 国产一区欧美二区| 久久99九九99精品| 久久成人久久爱| 久久99热这里只有精品| 免费日韩伦理电影| 美女一区二区视频| 九九精品视频在线看| 免费成人小视频| 美女脱光内衣内裤视频久久影院| 亚洲成人av资源| 亚洲国产一区二区三区青草影视 | 麻豆免费精品视频| 美女mm1313爽爽久久久蜜臀| 免费国产亚洲视频| 九九**精品视频免费播放| 免费观看成人鲁鲁鲁鲁鲁视频| 日本人妖一区二区| 免费成人av在线| 国产毛片精品视频| 福利一区在线观看| 91丝袜呻吟高潮美腿白嫩在线观看| 成人av电影在线| 色999日韩国产欧美一区二区| 欧美系列日韩一区| 欧美一级片免费看| 国产亚洲女人久久久久毛片| 欧美激情在线看| 亚洲人成影院在线观看| 亚洲一区二区三区四区五区黄| 亚洲成人激情自拍| 精品无码三级在线观看视频| 国产一区二区中文字幕| 波多野结衣视频一区| 欧美色爱综合网| 精品人伦一区二区色婷婷| 中文文精品字幕一区二区| 中文字幕日韩av资源站| 五月天国产精品| 国产成人免费视频精品含羞草妖精| 99久久精品免费看国产| 欧美高清dvd| 国产精品乱码妇女bbbb| 亚洲综合精品自拍| 国内精品国产成人| 色婷婷综合久久久久中文一区二区 | 日韩av高清在线观看| 国产jizzjizz一区二区| 欧美午夜片在线看| 国产亚洲综合在线| 一区二区三区国产精品| 国产综合久久久久久久久久久久| eeuss鲁片一区二区三区在线观看| 欧美日韩综合在线免费观看| 久久夜色精品一区| 午夜精品久久久| 成人午夜av电影| 91麻豆精品国产91久久久 | 国产亚洲女人久久久久毛片| 亚洲在线视频一区| 懂色av一区二区夜夜嗨| 在线播放91灌醉迷j高跟美女| 国产精品九色蝌蚪自拍|