OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rootPath
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetLocator.java
42
* @param
rootPath
The root path where to look for assets.
46
public void setRootPath(String
rootPath
);
AssetManager.java
81
* @param
rootPath
The root path from which to locate assets, implementation
86
public void registerLocator(String
rootPath
, String locatorClassName);
104
* @param
rootPath
Specifies the root path from which to locate assets
113
public void registerLocator(String
rootPath
, Class<? extends AssetLocator> locatorClass);
119
* @param
rootPath
Should be the same as the root path specified in {@link
123
public void unregisterLocator(String
rootPath
, Class<? extends AssetLocator> locatorClass);
ImplHandler.java
189
public void addLocator(final Class<?> locatorType, String
rootPath
){
190
ImplThreadLocal local = new ImplThreadLocal(locatorType,
rootPath
);
196
public void removeLocator(final Class<?> locatorType, String
rootPath
){
201
if (locator.getPath().equals(
rootPath
) &&
AssetConfig.java
82
String
rootPath
= scan.next();
85
manager.registerLocator(
rootPath
, locatorClass);
121
String
rootPath
= readString(dataIn);
122
manager.registerLocator(
rootPath
, locatorClazz);
DesktopAssetManager.java
146
public void registerLocator(String
rootPath
, Class<? extends AssetLocator> locatorClass){
147
handler.addLocator(locatorClass,
rootPath
);
154
public void registerLocator(String
rootPath
, String clsName){
164
registerLocator(
rootPath
, clazz);
168
public void unregisterLocator(String
rootPath
, Class<? extends AssetLocator> clazz){
169
handler.removeLocator(clazz,
rootPath
);
/external/guava/guava-tests/test/com/google/common/collect/
BstPathTest.java
37
SimplePath
rootPath
= new SimplePath(root, null);
38
assertFalse(
rootPath
.hasPrefix());
39
assertNull(
rootPath
.prefixOrNull());
41
rootPath
.getPrefix();
49
SimplePath
rootPath
= new SimplePath(root, null);
50
SimplePath nodePath = new SimplePath(node,
rootPath
);
52
assertEquals(
rootPath
, nodePath.prefixOrNull());
53
assertEquals(
rootPath
, nodePath.getPrefix());
/external/qemu/android/utils/
dirscanner.h
20
/* Create a new directory scanner object from a given
rootPath
.
23
DirScanner* dirScanner_new ( const char*
rootPath
);
dirscanner.c
151
dirScanner_new ( const char*
rootPath
)
157
p = bufprint(p, end, "%s",
rootPath
);
/external/jmonkeyengine/engine/src/android/com/jme3/asset/plugins/
AndroidLocator.java
14
private String
rootPath
= "";
64
public void setRootPath(String
rootPath
) {
65
this.
rootPath
=
rootPath
;
71
String assetPath =
rootPath
+ key.getName();
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
FileLocator.java
47
public void setRootPath(String
rootPath
) {
48
if (
rootPath
== null)
52
root = new File(
rootPath
).getCanonicalFile();
ZipLocator.java
70
public void setRootPath(String
rootPath
) {
72
zipfile = new ZipFile(new File(
rootPath
), ZipFile.OPEN_READ);
74
throw new AssetLoadException("Failed to open zip file: " +
rootPath
, ex);
UrlLocator.java
57
public void setRootPath(String
rootPath
) {
59
this.root = new URL(
rootPath
);
ClasspathLocator.java
55
public void setRootPath(String
rootPath
) {
56
this.root =
rootPath
;
HttpZipLocator.java
61
private String
rootPath
= "";
339
if (!
rootPath
.equals(path)){
340
rootPath
= path;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
FileInputType.cpp
219
String
rootPath
= directoryName(files[0].path);
221
while (!files[i].path.startsWith(
rootPath
))
222
rootPath
= directoryName(
rootPath
);
224
rootPath
= directoryName(
rootPath
);
225
ASSERT(
rootPath
.length());
226
int rootLength =
rootPath
.length();
227
if (
rootPath
[rootLength - 1] != '\\' &&
rootPath
[rootLength - 1] != '/'
[
all
...]
/external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidator.java
73
public AccessibilityValidator(String
rootPath
, String androidSdkPath) {
74
mRootFilePath = new File(
rootPath
);
79
+
rootPath
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java
194
String
rootPath
= mProperties.getProperty(propName);
196
if (
rootPath
== null) {
200
mLibraries.add(new LibraryState(convertPath(
rootPath
)));
304
String
rootPath
= mProperties.getProperty(propName);
306
if (
rootPath
== null) {
312
String convertedPath = convertPath(
rootPath
);
619
String
rootPath
= mProperties.getProperty(propName);
621
if (
rootPath
== null) {
625
if (
rootPath
.equals(oldValue)) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
SimpleTempStorage.java
44
private TempPath
rootPath
= null;
51
rootPath
= new SimpleTempPath(System.getProperty("java.io.tmpdir"));
118
return
rootPath
;
/frameworks/support/v4/java/android/support/v4/content/
FileProvider.java
670
final String
rootPath
= root.getValue().getPath();
671
if (path.startsWith(
rootPath
) && (mostSpecific == null
672
||
rootPath
.length() > mostSpecific.getValue().getPath().length())) {
683
final String
rootPath
= mostSpecific.getValue().getPath();
684
if (
rootPath
.endsWith("/")) {
685
path = path.substring(
rootPath
.length());
687
path = path.substring(
rootPath
.length() + 1);
[
all
...]
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java
181
final String
rootPath
= root.getValue().getPath();
182
if (path.startsWith(
rootPath
) && (mostSpecific == null
183
||
rootPath
.length() > mostSpecific.getValue().getPath().length())) {
194
final String
rootPath
= mostSpecific.getValue().getPath();
195
if (
rootPath
.equals(path)) {
197
} else if (
rootPath
.endsWith("/")) {
198
path = path.substring(
rootPath
.length());
200
path = path.substring(
rootPath
.length() + 1);
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java
69
final String
rootPath
= obbDir.getCanonicalPath();
77
rootPath
, filePath, out);
/external/chromium_org/third_party/skia/include/core/
SkOSFile.h
140
* Assembles
rootPath
and relativePath into a single path, like this:
141
*
rootPath
/relativePath.
142
* It is okay to call with a NULL
rootPath
and/or relativePath. A path
147
static SkString SkPathJoin(const char *
rootPath
, const char *relativePath);
/external/skia/include/core/
SkOSFile.h
140
* Assembles
rootPath
and relativePath into a single path, like this:
141
*
rootPath
/relativePath.
142
* It is okay to call with a NULL
rootPath
and/or relativePath. A path
147
static SkString SkPathJoin(const char *
rootPath
, const char *relativePath);
/frameworks/base/include/androidfw/
BackupHelpers.h
138
const String8&
rootPath
, const String8& filePath, BackupDataWriter* outputStream);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java
361
String
rootPath
= project.getLocation().toOSString();
362
int rootPathLength =
rootPath
.length();
375
if (filePath.startsWith(
rootPath
) == false) {
533
String
rootPath
= project.getLocation().toOSString();
534
int rootPathLength =
rootPath
.length();
539
if (p.startsWith(
rootPath
)) {
Completed in 404 milliseconds
1
2
3