/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
ProcessKDP.cpp | 317 const char *cstr; local 318 if ((cstr = m_comm.GetKernelVersion ()) != NULL) 320 async_strm_sp->Printf ("Version: %s\n", cstr); 323 // if ((cstr = m_comm.GetImagePath ()) != NULL) 325 // async_strm_sp->Printf ("Image Path: %s\n", cstr); [all...] |
/external/lldb/source/Core/ |
ValueObject.cpp | 1201 const char *cstr = data.PeekCStr(0); local 1635 const char *cstr = NULL; local [all...] |
/external/icu/icu4c/source/test/intltest/ |
plurults.cpp | 66 const char *cstr() {return buf;}; function in class:US 427 // std::cout << " uk " << US(resultKeyword).cstr() << " " << values[j] << std::endl; 431 __FILE__, __LINE__, locales[i].getName(), US(*keyword).cstr(), values[j], values[j], US(resultKeyword).cstr()); 650 __FILE__, line, num, keyword, US(actualKeyword).cstr()); [all...] |
/external/valgrind/coregrind/m_debuginfo/ |
readelf.c | 791 HChar* cstr = ML_(img_strdup)(escn_strtab->img, local 794 disym.pri_name = ML_(addStr) ( di, cstr, -1 ); 799 if (cstr) { ML_(dinfo_free)(cstr); cstr = NULL; } 1024 HChar* cstr = ML_(img_strdup)(escn_strtab->img, local [all...] |
/external/svox/pico/lib/ |
picosa.c | 800 picoos_uint8 cstr[PICOBASE_UTF8_MAXLEN + 1]; local 807 if (!picobase_get_next_utf8char(sInChar, inLen, &pos, cstr) || 808 !picoktab_hasVowellikeProp(sa->tabgraphs, cstr, PICOBASE_UTF8_MAXLEN)) { 813 if (!picobase_get_next_utf8char(sInChar, inLen, &nCount, cstr)) { 816 if (picoktab_hasVowellikeProp(sa->tabgraphs, cstr, [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | 289 static void PrintCString(const char *CStr) { 290 if (CStr != NULL && CStr[0] != '\0') { 291 for ( ; *CStr; ++CStr) { 292 const char C = *CStr; 305 static void PrintCStringWithPrefix(const char *Prefix, const char *CStr) { 307 PrintCString(CStr); 1163 const char *cstr = clang_getCString(USR); local 1862 const char *cstr; local 2838 const char *cstr; local 2897 const char *cstr = clang_getCString(str); local [all...] |
/external/lldb/scripts/Python/ |
python-typemaps.swig | 70 // See also SBEvent::SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len). 71 %typemap(in) (const char *cstr, uint32_t cstr_len) {
|
/external/clang/test/SemaCXX/ |
typo-correction.cpp | 82 another_str *cstr = new AnotherStr; // expected-error{{unknown type name 'AnotherStr'; did you mean 'another_str'?}} variable
|
/external/linux-tools-perf/src/tools/perf/ |
builtin-diff.c | 181 char *cstr = (char *) str; local 206 cstr = buf; 210 if (!strcmp(cstr, compute_names[i])) {
|
/external/lldb/examples/darwin/heap_find/ |
heap.py | [all...] |
/external/lldb/source/Plugins/ABI/MacOSX-i386/ |
ABIMacOSX_i386.cpp | 520 const char *cstr = (const char*)val->GetScalar().ULongLong(); local 521 cstr_length = strlen(cstr); 527 if (process->WriteMemory(sp, cstr, cstr_length + 1, error) != (cstr_length + 1)) [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | 735 const char* xmlcstr = printer.CStr(); 1008 const char* cstr = Attribute( name ); local [all...] |
/external/valgrind/perf/ |
tinycc.c | 2163 struct CString *cstr; member in union:CValue 7288 CString *cstr; local 8048 CString *cstr; local 9598 CString cstr; local 9701 CString cstr; local 9850 CString cstr; local 14099 CString *cstr; local [all...] |
/external/lldb/source/Expression/ |
IRForTarget.cpp | 722 llvm::GlobalVariable *cstr) 794 if (cstr) 795 string_array = dyn_cast<ConstantDataSequential>(cstr->getInitializer()); 798 Constant *bytes_arg = cstr ? ConstantExpr::getBitCast(cstr, i8_ptr_ty) : Constant::getNullValue(i8_ptr_ty); 799 Constant *numBytes_arg = ConstantInt::get(intptr_ty, cstr ? string_array->getNumElements() - 1 : 0, false); [all...] |
/external/mdnsresponder/mDNSCore/ |
mDNSEmbeddedAPI.h | [all...] |
/external/jsoncpp/chromium-overrides/src/lib_json/ |
json_value.cpp | 186 Value::CZString::CZString( const char *cstr, DuplicationPolicy allocate ) 187 : cstr_( allocate == duplicate ? duplicateStringValue(cstr) 188 : cstr ) [all...] |
/external/jsoncpp/src/lib_json/ |
json_value.cpp | 182 Value::CZString::CZString( const char *cstr, DuplicationPolicy allocate ) 183 : cstr_( allocate == duplicate ? duplicateStringValue(cstr) 184 : cstr ) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
string_test.cpp | 857 char const* cstr = "test string for assign"; local 859 s.assign(cstr, cstr + 22); [all...] |
/ndk/tests/device/test-stlport/unit/ |
string_test.cpp | 857 char const* cstr = "test string for assign"; local 859 s.assign(cstr, cstr + 22); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
turtle.py | [all...] |
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyrun.swg | [all...] |
/external/jsoncpp/chromium-overrides/include/json/ |
value.h | 176 CZString( const char *cstr, DuplicationPolicy allocate ); [all...] |
/external/jsoncpp/include/json/ |
value.h | 176 CZString( const char *cstr, DuplicationPolicy allocate ); [all...] |
/external/mksh/src/ |
Build.sh | [all...] |