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

12

/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.java19 public float getValue(String resourceName, boolean isSystem) { argument
20 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.java23 public T getValue(String resourceName) { argument
24 return attributeNamesToValues.get(resourceName);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8WorkerGlobalScopeEventListener.cpp86 String resourceName; local
88 GetDevToolsFunctionInfo(handlerFunction, isolate(), scriptId, resourceName, lineNumber);
89 cookie = InspectorInstrumentation::willCallFunction(scriptState()->executionContext(), scriptId, resourceName, lineNumber);
H A DPrivateScriptRunner.cpp34 v8::Handle<v8::Value> resourceName = message->GetScriptOrigin().ResourceName(); local
36 if (!resourceName.IsEmpty() && resourceName->IsString())
37 fileName = toCoreString(v8::Handle<v8::String>::Cast(resourceName));
H A DV8Initializer.cpp119 v8::Handle<v8::Value> resourceName = message->GetScriptOrigin().ResourceName(); local
120 bool shouldUseDocumentURL = resourceName.IsEmpty() || !resourceName->IsString();
121 String resource = shouldUseDocumentURL ? enteredWindow->document()->url() : toCoreString(resourceName.As<v8::String>());
H A DScriptController.cpp157 String resourceName; local
159 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumber);
160 cookie = InspectorInstrumentation::willCallFunction(context, scriptId, resourceName, lineNumber);
H A DV8Binding.cpp961 void GetDevToolsFunctionInfo(v8::Handle<v8::Function> function, v8::Isolate* isolate, int& scriptId, String& resourceName, int& lineNumber) argument
969 resourceName = stringResource;
972 if (resourceName.isEmpty()) {
973 resourceName = "undefined";
981 String resourceName; local
983 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumber);
984 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lineNumber);
/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/chromium_org/third_party/skia/src/pdf/
H A DSkPDFUtils.cpp241 SkString resourceName = SkPDFResourceDict::getResourceName( local
245 content->writeText(resourceName.c_str());
247 content->writeText(resourceName.c_str());
/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/skia/src/pdf/
H A DSkPDFUtils.cpp241 SkString resourceName = SkPDFResourceDict::getResourceName( local
245 content->writeText(resourceName.c_str());
247 content->writeText(resourceName.c_str());
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketHandshake.cpp63 static String resourceName(const KURL& url) function in namespace:blink
183 builder.append(resourceName(m_url));
195 builder.append(resourceName(m_url));
/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/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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dcommons-logging-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/logging/ ...

Completed in 680 milliseconds

12