OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strA
(Results
1 - 6
of
6
) sorted by null
/external/neven/Embedded/common/src/b_BasicEm/
String.h
51
uint32 bbs_strlen( const char*
strA
);
70
int32 bbs_atoi( const char*
strA
);
String.c
94
uint32 bbs_strlen( const char*
strA
)
97
while(
strA
[ iL++ ] != 0 );
264
int32 bbs_atoi( const char*
strA
)
268
uint16 iL = 0, lenL = bbs_strlen(
strA
);
270
while( iL < lenL &&
strA
[ iL ] == ' ' ) iL++;
271
if(
strA
[ iL ] == '-' )
276
while( iL < lenL &&
strA
[ iL ] == ' ' ) iL++;
277
while( iL < lenL &&
strA
[ iL ] >= '0' &&
strA
[ iL ] <= '9' )
279
valL = valL * 10 + (
strA
[ iL ] - '0' )
[
all
...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
regress-83293.js
32
* str.replace(
strA
, strB) == str.replace(new RegExp(
strA
),strB).
51
var summ_OLD = 'Testing str.replace(
strA
, strB) == str.replace(new RegExp(
strA
),strB)';
59
var
strA
= cnEmptyString;
73
* When this bug was filed, str.replace(
strA
, strB) would return no value
74
* whatsoever if
strA
== cnEmptyString, and no error, either -
84
strA
= 'a';
85
actual = str.replace(
strA
, strB);
86
expect = str.replace(new RegExp(
strA
), strB)
[
all
...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h
427
h->
strA
= NULL; \
442
h->
strA
= name ? __itt_fstrdup(name) : NULL; \
/external/icu4c/test/cintltst/
cmsccoll.c
[
all
...]
/external/libxml2/
xmlschemas.c
[
all
...]
Completed in 214 milliseconds