Searched refs:resourceName (Results 1 - 25 of 37) sorted by relevance

12

/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverBadSyntaxException.java24 private final String resourceName; field in class:JSilverBadSyntaxException
40 * @param resourceName name of a file where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set
48 public JSilverBadSyntaxException(String message, String lineContent, String resourceName, argument
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
51 this.resourceName = resourceName;
56 private static String makeMessage(String message, String lineContent, String resourceName, argument
59 if (resourceName !
[all...]
H A DJSilverAutoEscapingException.java37 private static String createMessage(String message, String resourceName, int line, int column) { argument
39 if (resourceName != null) {
40 result.append(" resource=").append(resourceName);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DThreadingManager.java70 private final String resourceName; field in class:ThreadingManager.LoadingTask
71 public LoadingTask(String resourceName){ argument
72 this.resourceName = resourceName;
75 return owner.loadAsset(new AssetKey(resourceName));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
H A DFileURLConnectionTest.java33 String resourceName = "org/apache/harmony/luni/tests/" + fileName;
34 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
35 assertNotNull("Cannot find test resource " + resourceName, url);
52 String resourceName = "org/apache/harmony/luni/tests/" + "test.rtf";
53 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
55 assertNotNull("Cannot find test resource " + resourceName, anchorUrl);
69 String resourceName = "org/apache/harmony/luni/tests/"; //folder name
70 URL url = ClassLoader.getSystemClassLoader().getResource(resourceName);
75 resourceName = "org/apache/harmony/luni/tests/" + "test.rtf";; //folder name
76 url = ClassLoader.getSystemClassLoader().getResource(resourceName);
[all...]
/external/guava/guava/src/com/google/common/io/
H A DResources.java144 * Returns a {@code URL} pointing to {@code resourceName} if the resource is
150 public static URL getResource(String resourceName) { argument
151 URL url = Resources.class.getClassLoader().getResource(resourceName);
152 checkArgument(url != null, "resource %s not found.", resourceName);
157 * Returns a {@code URL} pointing to {@code resourceName} that is relative to
162 public static URL getResource(Class<?> contextClass, String resourceName) { argument
163 URL url = contextClass.getResource(resourceName);
165 resourceName, contextClass.getName());
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
H A DAutoEscapeContext.java113 private String resourceName; field in class:AutoEscapeContext
129 * Create a new context in the state represented by mode. If a non-null resourceName is provided,
133 * @param resourceName Name of the resource being auto escaped.
135 public AutoEscapeContext(EscapeMode mode, String resourceName) { argument
136 this.resourceName = resourceName;
147 autoEscapeContext.resourceName = resourceName;
168 return resourceName;
241 "Attempting to start HTML parser in unsupported mode" + mode, resourceName);
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServer.java222 String resourceName = "";
232 resourceName = line.substring(start, end);
265 if (resourceName.equals(CHUNKEDTEST)) {
267 } else if (resourceName.equals(CONTENTTEST)) {
269 } else if (resourceName.equals(AUTHTEST)) {
271 } else if (resourceName.startsWith(REDIRECTTEST)) {
272 redirectTest(resourceName);
274 && resourceName.equals(PORTREDIRTEST)) {
276 } else if (resourceName.equals(OTHERTEST)) {
278 } else if (resourceName
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundle.java67 String resourceName = className + suffix;
68 return (XResourceBundle) ResourceBundle.getBundle(resourceName, locale);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java342 * @param resourceName non-null reference to resource name.
346 final String resourceName,
369 .getResourceAsStream(resourceName);
377 .getResourceAsStream(resourceName);
394 new Object[] { resourceName }),
396 //"Could not load '"+resourceName+"' (check CLASSPATH), now using just the defaults ", ioe);
411 new Object[] { resourceName }),
413 //"Could not load '"+resourceName+"' (check CLASSPATH, applet security), now using just the defaults ", se);
345 loadPropertiesFile( final String resourceName, Properties defaults) argument
/external/webkit/Source/WebCore/platform/mac/
H A DCursorMac.mm60 NSString* resourceName = [[NSString alloc] initWithUTF8String:name];
63 pathForResource:resourceName ofType:@"png"]];
64 [resourceName release];
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java59 public ConsumerProperties(String resourceName, ClassLoader loader) argument
61 this(getProperties(getResource(resourceName, loader)));
/external/chromium/base/mac/
H A Dfoundation_util.h49 FilePath PathForMainAppBundleResource(CFStringRef resourceName);
/external/svox/pico/lib/
H A Dpicorsrc.c172 picorsrc_resource_name_t resourceName[PICO_MAX_NUM_RSRC_PER_VOICE]; member in struct:picorsrc_voice_definition
187 this->resourceName[i][0] = NULLC;
259 static pico_status_t findResource(picorsrc_ResourceManager this, picoos_char * resourceName, picorsrc_Resource * rsrc) { argument
265 while (NULL != r && (0 != picoos_strcmp(r->name,resourceName))) {
272 static picoos_uint8 isResourceLoaded(picorsrc_ResourceManager this, picoos_char * resourceName) { argument
275 if (PICO_OK == findResource(this, resourceName,&res)){
815 picoos_char * voiceName, picoos_char * resourceName)
827 if (picoos_strlcpy(vdef->resourceName[vdef->numResources++], resourceName,
829 PICODBG_DEBUG(("vdef added resource '%s' to voice '%s'",resourceName,voiceNam
814 picorsrc_addResourceToVoiceDefinition(picorsrc_ResourceManager this, picoos_char * voiceName, picoos_char * resourceName) argument
[all...]
H A Dpicorsrc.h145 picoos_char * voiceName, picoos_char * resourceName);
H A Dpicoapi.h322 Adds a mapping pair ('voiceName', 'resourceName') to the voice
330 const pico_Char *resourceName
H A Dpicoapi.c432 * @param *resourceName : pointer to the area containing the resource name
441 const pico_Char *resourceName
452 } else if (resourceName == NULL) {
454 } else if (picoos_strlen((picoos_char *) resourceName) == 0) {
458 status = picorsrc_addResourceToVoiceDefinition(system->rm, (picoos_char *) voiceName, (picoos_char *) resourceName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarExecTest.java241 private static byte[] getResource(File tempDir, String resourceName) throws IOException { argument
242 Support_Resources.copyFile(tempDir, null, resourceName);
243 File resourceFile = new File(tempDir, resourceName);
H A DZipExecTest.java251 private static byte[] getResource(File tempDir, String resourceName) throws IOException { argument
252 Support_Resources.copyFile(tempDir, null, resourceName);
253 File resourceFile = new File(tempDir, resourceName);
/external/guava/guava-tests/test/com/google/common/io/
H A DFilesSimplifyPathTest.java296 private void doExtensiveTest(String resourceName) throws IOException { argument
298 URL url = getClass().getResource(resourceName);
/external/webkit/Source/WebCore/platform/audio/
H A DHRTFElevation.cpp101 String resourceName = String::format("IRC_%s_C_R0195_T%03d_P%03d", subjectName.utf8().data(), azimuth, positiveElevation);
103 OwnPtr<AudioBus> impulseResponse(AudioBus::loadPlatformResource(resourceName.utf8().data(), sampleRate));
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dnewtab.js307 * @param {string} resourceName The name of the resource.
310 function getThemeUrl(resourceName) {
314 var u = themeUrlMapper(resourceName);
318 return 'chrome://theme/' + resourceName;
/external/apache-http/src/org/apache/commons/logging/impl/
H A DLogFactoryImpl.java989 String resourceName = logAdapterClassName.replace('.', '/') + ".class";
991 url = currentCL.getResource(resourceName );
993 url = ClassLoader.getSystemResource(resourceName + ".class");
997 logDiagnostic("Class '" + logAdapterClassName + "' [" + resourceName + "] cannot be found.");
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMWindowShell.cpp118 v8::Handle<v8::Value> resourceName = message->GetScriptResourceName(); local
119 bool useURL = resourceName.IsEmpty() || !resourceName->IsString();
121 String resourceNameString = useURL ? document->url() : toWebCoreString(resourceName);
/external/chromium/chrome/browser/resources/touch_ntp/standalone/
H A Dstandalone_hack.js361 function themeUrlMapper(resourceName) {
362 if (resourceName == 'IDR_WEBSTORE_ICON') {

Completed in 1198 milliseconds

12