HomeSort by relevance Sort by last modified time
    Searched defs:scriptName (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptProcess.java 32 String scriptName = script.getName();
33 setName(scriptName);
34 Interpreter interpreter = configuration.getInterpreterForScript(scriptName);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
GDEFWriter.java 21 String scriptName;
23 public GDEFWriter(String scriptName, ClassTable classTable, ClassTable markClassTable)
28 this.scriptName = scriptName;
33 System.out.println("Writing " + scriptName + " GDEF table...");
61 output.print(scriptName);
GSUBWriter.java 21 private String scriptName;
31 scriptName = theScriptName;
36 System.out.println("writing " + scriptName + " GSUB table...");
58 output.print(scriptName);
  /external/icu/icu4c/source/samples/layout/
FontMap.cpp 40 char *c, *scriptName, *fontName, *line, buffer[BUFFER_SIZE];
65 scriptName = strip(line);
67 if (strcmp(scriptName, "DEFAULT") == 0) {
73 le_int32 fillCount = uscript_getCode(scriptName, &scriptCode, 1, &scriptStatus);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ScriptProvider.java 113 String scriptName = script.getName().toLowerCase();
114 if (!scriptName.contains(query)) {
117 Interpreter interpreter = mConfiguration.getInterpreterForScript(scriptName);
121 { index, scriptName, secondLine, icon, scriptName,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScript.java 291 String scriptName = UScript.getName(testCodes[i]);
292 if(!expectedNames[i].equals(scriptName)){
293 logln("Error getting abbreviations Got: " +scriptName +" Expected: "+expectedNames[i]);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
AnyScriptTest.java 67 String scriptName = UScript.getName(script); // long name
68 ULocale locale = new ULocale(scriptName);
77 t = Transliterator.getInstance("any-" + scriptName);
80 logln("Skipping unavailable: " + scriptName);
83 logln("Checking: " + scriptName);
91 errln("Transliterator.getInstance() worked for \"any-" + scriptName +
  /external/icu/icu4c/source/i18n/
scriptset.cpp 201 const char *scriptName = uscript_getShortName((UScriptCode(i)));
202 dest.append(UnicodeString(scriptName, -1, US_INV));
coll.cpp 375 char *scriptName = value;
381 char *limit = scriptName;
386 if ((limit - scriptName) == 4) {
388 code = u_getPropertyValueEnum(UCHAR_SCRIPT, scriptName);
390 code = getReorderCode(scriptName);
398 scriptName = limit + 1;
transreg.cpp 230 UnicodeString scriptName;
265 scriptName = UnicodeString(uscript_getName(script[0]), -1, US_INV);
276 } else if (scriptName.length() != 0) {
278 top = scriptName;
307 // to the scriptName.
312 nextSpec = scriptName; // scriptName may be empty
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScript.java 287 String scriptName = UScript.getName(testCodes[i]);
288 if(!expectedNames[i].equals(scriptName)){
289 logln("Error getting abbreviations Got: " +scriptName +" Expected: "+expectedNames[i]);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
AnyScriptTest.java 63 String scriptName = UScript.getName(script); // long name
64 ULocale locale = new ULocale(scriptName);
73 t = Transliterator.getInstance("any-" + scriptName);
76 logln("Skipping unavailable: " + scriptName);
79 logln("Checking: " + scriptName);
87 errln("Transliterator.getInstance() worked for \"any-" + scriptName +
  /external/jetty/src/java/org/eclipse/jetty/servlets/
CGI.java 178 // pathInContext may actually comprises scriptName/pathInfo...We will
220 String scriptName = req.getRequestURI().substring(0,req.getRequestURI().length() - pathInfo.length());
221 String scriptPath = getServletContext().getRealPath(scriptName);
273 env.set("SCRIPT_NAME", scriptName);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ApiBrowser.java 94 String scriptName = getIntent().getStringExtra(Constants.EXTRA_SCRIPT_PATH);
95 mIsLanguageSupported = SupportedLanguages.checkLanguageSupported(scriptName);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
LocaleDisplayNamesImpl.java 438 String scriptName = langData.get("Scripts%short", script);
439 if (!scriptName.equals(script)) {
440 return adjustForUsageAndContext(CapitalizationContextUsage.SCRIPT, scriptName);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Collator.java 728 String scriptName = value.substring(scriptNameStart, limit);
730 if (scriptName.length() == 4) {
732 code = UCharacter.getPropertyValueEnum(UProperty.SCRIPT, scriptName);
734 code = getReorderCode("colReorder", scriptName);
    [all...]
TransliteratorRegistry.java 95 private String scriptName; // script name equivalent of top, if != top
103 scriptName = null;
112 scriptName = UScript.getName(s[0]);
114 if (scriptName.equalsIgnoreCase(top)) {
115 scriptName = null;
133 // that protects an invalid scriptName
134 scriptName = null;
159 // to the scriptName.
164 nextSpec = scriptName; // scriptName may be nul
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
Collator.java 758 String scriptName = value.substring(scriptNameStart, limit);
760 if (scriptName.length() == 4) {
762 code = UCharacter.getPropertyValueEnum(UProperty.SCRIPT, scriptName);
764 code = getReorderCode("colReorder", scriptName);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
LocaleDisplayNamesImpl.java 434 String scriptName = langData.get("Scripts%short", script);
435 if (!scriptName.equals(script)) {
436 return adjustForUsageAndContext(CapitalizationContextUsage.SCRIPT, scriptName);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorRegistry.java 94 private String scriptName; // script name equivalent of top, if != top
102 scriptName = null;
111 scriptName = UScript.getName(s[0]);
113 if (scriptName.equalsIgnoreCase(top)) {
114 scriptName = null;
132 // that protects an invalid scriptName
133 scriptName = null;
158 // to the scriptName.
163 nextSpec = scriptName; // scriptName may be nul
    [all...]
  /external/icu/icu4c/source/test/intltest/
transtst.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 
  /external/guice/extensions/struts2/lib/
jetty-util-6.1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 

Completed in 1437 milliseconds

1 2 3 4