OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:slashpos
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Gallery3D/src/com/cooliris/media/
MediaItem.java
135
int
slashPos
= mMimeType.indexOf('/');
136
if (
slashPos
!= -1 &&
slashPos
+ 1 < mMimeType.length()) {
137
mDisplayMimeType = mMimeType.substring(
slashPos
+ 1).toUpperCase();
/frameworks/base/services/java/com/android/server/
IntentResolver.java
230
int
slashpos
= resolvedType.indexOf('/');
local
231
if (
slashpos
> 0) {
232
final String baseType = resolvedType.substring(0,
slashpos
);
234
if (resolvedType.length() !=
slashpos
+2
235
|| resolvedType.charAt(
slashpos
+1) != '*') {
343
final int
slashpos
= name.indexOf('/');
local
344
if (
slashpos
> 0) {
345
baseName = name.substring(0,
slashpos
).intern();
358
if (
slashpos
> 0) {
392
final int
slashpos
= name.indexOf('/')
local
[
all
...]
/frameworks/base/media/libstagefright/
HTTPDataSource.cpp
101
string::size_type
slashPos
= location.find('/');
102
if (
slashPos
== string::npos) {
103
slashPos
= location.size();
111
host = string(location, 0,
slashPos
);
127
path = string(location,
slashPos
);
/frameworks/base/core/java/android/content/
IntentFilter.java
512
final int
slashpos
= type.indexOf('/');
local
514
if (
slashpos
> 0 && typelen >=
slashpos
+2) {
516
if (typelen ==
slashpos
+2 && type.charAt(
slashpos
+1) == '*') {
517
String str = type.substring(0,
slashpos
);
1464
final int
slashpos
= type.indexOf('\/');
local
[
all
...]
/external/clearsilver/util/
neo_str.c
814
void*
slashpos
;
local
827
slashpos
= memchr(in, '/', inlen);
828
if (
slashpos
== NULL) {
832
i = (size_t)((char*)
slashpos
- in);
Completed in 344 milliseconds