OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:copy_string
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Tools/android/flex-2.5.4a/
misc.c
189
/*
copy_string
- returns a dynamically allocated copy of a string */
191
char *
copy_string
( str )
function
207
flexfatal( _( "dynamic memory failure in
copy_string
()" ) );
/external/chromium/base/
values_unittest.cc
387
Value*
copy_string
= NULL;
local
388
ASSERT_TRUE(copy_dict->Get("string", &
copy_string
));
389
ASSERT_TRUE(
copy_string
);
390
ASSERT_NE(
copy_string
, original_string);
391
ASSERT_TRUE(
copy_string
->IsType(Value::TYPE_STRING));
394
ASSERT_TRUE(
copy_string
->GetAsString(©_string_value));
395
ASSERT_TRUE(
copy_string
->GetAsString(©_string16_value));
Completed in 231 milliseconds