Home
last modified time | relevance | path

Searched refs:str_obj (Results 1 – 5 of 5) sorted by relevance

/external/autotest/client/bin/
Dpartition_unittest.py28 str_obj = str(partition.FsOptions('abc', 'def', 'ghi', 'jkl'))
29 self.assert_('FsOptions' in str_obj)
30 self.assert_('abc' in str_obj)
31 self.assert_('def' in str_obj)
32 self.assert_('ghi' in str_obj)
33 self.assert_('jkl' in str_obj)
/external/pdfium/core/fpdfdoc/
Dcpdf_filespec_unittest.cpp70 std::unique_ptr<CPDF_Object> str_obj( in TEST() local
72 CPDF_FileSpec file_spec(str_obj.get()); in TEST()
140 std::unique_ptr<CPDF_Object> str_obj(new CPDF_String(nullptr, L"babababa")); in TEST() local
141 CPDF_FileSpec file_spec1(str_obj.get()); in TEST()
145 EXPECT_TRUE(str == str_obj->GetString()); in TEST()
/external/ltp/testcases/kernel/device-drivers/acpi/
Dltp_acpi_cmds.c81 union acpi_object *str_obj; in get_str_object() local
91 str_obj = buffer.pointer; in get_str_object()
93 buf = kmalloc(str_obj->buffer.length / 2, GFP_KERNEL); in get_str_object()
95 kfree(str_obj); in get_str_object()
99 res = utf16s_to_utf8s((wchar_t *)str_obj->buffer.pointer, in get_str_object()
100 str_obj->buffer.length, UTF16_LITTLE_ENDIAN, buf, in get_str_object()
101 str_obj->buffer.length / 2); in get_str_object()
107 kfree(str_obj); in get_str_object()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_object_unittest.cpp718 CPDF_String* str_obj = in TEST() local
723 str_obj, name_obj, null_obj}; in TEST()
/external/v8/src/
Dd8.cc939 Local<String> str_obj; in WriteToFile() local
945 .ToLocal(&str_obj)) { in WriteToFile()
950 v8::String::Utf8Value str(str_obj); in WriteToFile()