Searched defs:resourceName (Results 1 - 25 of 28) sorted by relevance

12

/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/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/jsilver/src/com/google/clearsilver/jsilver/exceptions/
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);
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...]
/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/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DIntegerResourceLoader.java15 String resourceName = resourceExtractor.getResourceName(resourceId);
16 if (resourceName == null) {
19 Integer value = integerResolver.getValue(resourceName);
21 throw new IllegalArgumentException("Got resource name " + resourceName + " from id " + resourceIdDebugString
27 public int getValue( String resourceName, boolean isSystem ) { argument
28 Integer resourceId = resourceExtractor.getResourceId(resourceName, isSystem);
29 if (resourceName == null) {
30 throw new IllegalArgumentException("No such resource (" + isSystem + "): " + resourceName);
H A DStringResourceLoader.java16 public String getValue(String resourceName, boolean isSystem) { argument
17 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
H A DDimenResourceLoader.java18 public float getValue(String resourceName, boolean isSystem) { argument
19 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
H A DResourceExtractor.java50 public Integer getResourceId(String resourceName) { argument
51 if (resourceName.contains("android:")) { // namespace needed for platform files
52 return getResourceId(resourceName, true);
54 return getResourceId(resourceName, false);
63 public Integer getResourceId(String resourceName, boolean isSystemResource) { argument
64 if (resourceName == null ) {
67 if (resourceName.equals("@null")) {
71 if (resourceName.startsWith("@+id")) {
72 resourceName = resourceName
[all...]
H A DResourceReferenceResolver.java17 public T getValue(String resourceName) { argument
18 return attributeNamesToValues.get(resourceName);
/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/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/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/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/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/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...]
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshake.cpp62 static String resourceName(const KURL& url) function in namespace:WebCore
223 builder.append(resourceName(m_url));
233 builder.append(resourceName(m_url));
/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 ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu4c/i18n/
H A Dtransreg.cpp642 const UnicodeString& resourceName,
655 entry->stringArg.setTo(TRUE, resourceName.getBuffer(), -1);
658 entry->stringArg = resourceName;
641 put(const UnicodeString& ID, const UnicodeString& resourceName, UTransDirection dir, UBool readonlyResourceAlias, UBool visible, UErrorCode& ec) argument
/external/robolectric/lib/main/
H A Dcommons-logging-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 5416 milliseconds

12