OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inStr
(Results
1 - 18
of
18
) sorted by null
/external/libogg/macos/compat/
strdup.c
6
char *strdup(const char *
inStr
)
10
if (
inStr
== NULL) {
14
outStr = _ogg_malloc(strlen(
inStr
) + 1);
17
strcpy(outStr,
inStr
);
/external/libvorbis/macos/compat/
strdup.c
6
char *strdup(const char *
inStr
)
10
if (
inStr
== NULL) {
14
outStr = _ogg_malloc(strlen(
inStr
) + 1);
17
strcpy(outStr,
inStr
);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java
12
public static void drain(InputStream
inStr
)
16
while (
inStr
.read(bs, 0, bs.length) >= 0)
21
public static byte[] readAll(InputStream
inStr
)
25
pipeAll(
inStr
, buf);
29
public static byte[] readAllLimited(InputStream
inStr
, int limit)
33
pipeAllLimited(
inStr
, limit, buf);
37
public static int readFully(InputStream
inStr
, byte[] buf)
40
return readFully(
inStr
, buf, 0, buf.length);
43
public static int readFully(InputStream
inStr
, byte[] buf, int off, int len)
49
int numRead =
inStr
.read(buf, off + totalRead, len - totalRead)
[
all
...]
/external/chromium_org/third_party/icu/source/io/
sscanf.c
102
UFILE
inStr
;
104
inStr
.fConverter = NULL;
105
inStr
.fFile = NULL;
106
inStr
.fOwnFile = FALSE;
108
inStr
.fTranslit = NULL;
110
inStr
.fUCBuffer[0] = 0;
111
inStr
.str.fBuffer = (UChar *)buffer;
112
inStr
.str.fPos = (UChar *)buffer;
113
inStr
.str.fLimit = buffer + u_strlen(buffer);
115
if(u_locbund_init(&
inStr
.str.fBundle, "en_US_POSIX") == 0)
[
all
...]
/external/icu4c/io/
sscanf.c
102
UFILE
inStr
;
104
inStr
.fConverter = NULL;
105
inStr
.fFile = NULL;
106
inStr
.fOwnFile = FALSE;
108
inStr
.fTranslit = NULL;
110
inStr
.fUCBuffer[0] = 0;
111
inStr
.str.fBuffer = (UChar *)buffer;
112
inStr
.str.fPos = (UChar *)buffer;
113
inStr
.str.fLimit = buffer + u_strlen(buffer);
115
if(u_locbund_init(&
inStr
.str.fBundle, "en_US_POSIX") == 0)
[
all
...]
/external/libogg/macos/compat/sys/
types.h
21
#ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *
inStr
); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __SYS_TYPES_H__ */
/external/libvorbis/macos/compat/sys/
types.h
21
#ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *
inStr
); #pragma options align=reset #if defined(__cplusplus) } #endif #endif /* __SYS_TYPES_H__ */
/external/chromium_org/third_party/icu/source/test/iotest/
stream.cpp
65
UnicodeString
inStr
= UNICODE_STRING_SIMPLE(" UTF-8 ");
111
inTestStream >>
inStr
>> inStr2;
112
if (
inStr
.compare(thisMu) != 0) {
113
u_austrncpy(inStrC,
inStr
.getBuffer(),
inStr
.length());
114
inStrC[
inStr
.length()] = 0;
118
u_austrncpy(inStrC,
inStr
.getBuffer(),
inStr
.length());
119
inStrC[
inStr
.length()] = 0;
/external/icu4c/test/iotest/
stream.cpp
58
UnicodeString
inStr
= UNICODE_STRING_SIMPLE(" UTF-8 ");
104
inTestStream >>
inStr
>> inStr2;
105
if (
inStr
.compare(thisMu) != 0) {
106
u_austrncpy(inStrC,
inStr
.getBuffer(),
inStr
.length());
107
inStrC[
inStr
.length()] = 0;
111
u_austrncpy(inStrC,
inStr
.getBuffer(),
inStr
.length());
112
inStrC[
inStr
.length()] = 0;
/external/bzip2/
bzip2.c
1135
FILE *
inStr
;
[
all
...]
/external/chromium_org/third_party/angle/src/compiler/
OutputGLSLBase.h
27
void writeTriplet(Visit visit, const char* preStr, const char*
inStr
, const char* postStr);
OutputGLSLBase.cpp
57
void TOutputGLSLBase::writeTriplet(Visit visit, const char* preStr, const char*
inStr
, const char* postStr)
64
else if (visit == InVisit &&
inStr
)
66
out <<
inStr
;
/external/svox/pico/lib/
picotrns.h
174
pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char *
inStr
, picoos_uint8 plane);
picotrns.c
695
* Add chars from NULLC-terminated string \c
inStr
, shifted to plane \c plane, to internal input buffer of
699
* @param
inStr
NULLC-terminated byte sequence
703
pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char *
inStr
, picoos_uint8 plane)
705
while ((*
inStr
) && (this->possymWritePos < PICOTRNS_MAX_NUM_POSSYM)) {
707
this->possymBuf[this->possymWritePos].sym = (plane << 8) + (*
inStr
);
713
inStr
++;
715
if (!(*
inStr
)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java
67
* @param
inStr
the stream to read the PrivateKeyInfo encoding from
71
public static AsymmetricKeyParameter createKey(InputStream
inStr
) throws IOException
73
return createKey(PrivateKeyInfo.getInstance(new ASN1InputStream(
inStr
).readObject()));
PublicKeyFactory.java
74
* @param
inStr
the stream to read the SubjectPublicKeyInfo encoding from
78
public static AsymmetricKeyParameter createKey(InputStream
inStr
) throws IOException
80
return createKey(SubjectPublicKeyInfo.getInstance(new ASN1InputStream(
inStr
).readObject()));
/prebuilts/tools/common/m2/internal/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar
Completed in 510 milliseconds