Searched defs:cstr (Results 1 - 25 of 76) sorted by relevance

1234

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfoEntry.h52 const char* cstr; member in union:DWARFDebugMacinfoEntry::__anon25344
H A DNameToDIE.cpp72 const char *cstr = m_map.GetCStringAtIndex(i); local
73 s->Printf("%p: {0x%8.8x} \"%s\"\n", cstr, m_map.GetValueAtIndexUnchecked(i), cstr);
H A DDWARFFormValue.h33 const char* cstr; member in union:DWARFFormValue::ValueTypeTag::__anon25345
55 bool IsInlinedCStr() const { return (m_value.data != NULL) && m_value.data == (uint8_t*)m_value.value.cstr; }
/external/mdnsresponder/Clients/
H A DClientCommon.c46 const char *GetNextLabel(const char *cstr, char label[64]) argument
49 while (*cstr && *cstr != '.') // While we have characters in the label...
51 char c = *cstr++;
52 if (c == '\\' && *cstr) // If we have a backslash, and it's not the last character of the string
54 c = *cstr++;
55 if (isdigit(cstr[-1]) && isdigit(cstr[0]) && isdigit(cstr[1]))
57 int v0 = cstr[
[all...]
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Didentifier_test.cpp17 const char* cstr = str.c_str(); local
18 ASSERT_TRUE(mPreprocessor.init(1, &cstr, 0));
H A Dspace_test.cpp15 const char* cstr = str.c_str(); local
16 ASSERT_TRUE(mPreprocessor.init(1, &cstr, 0));
H A Dchar_test.cpp45 const char* cstr = str.c_str(); local
50 ASSERT_TRUE(mPreprocessor.init(1, &cstr, &length));
H A Dnumber_test.cpp46 const char* cstr = str.c_str(); local
48 ASSERT_TRUE(mPreprocessor.init(1, &cstr, 0));
86 const char* cstr = str.c_str(); local
87 ASSERT_TRUE(mPreprocessor.init(1, &cstr, 0));
/external/chromium_org/third_party/icu/source/common/
H A Duenum.c94 const char *cstr = en->next(en, &len, status); local
95 if (cstr != NULL) {
100 u_charsToUChars(cstr, ustr, len+1);
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringprintf.cc151 const char* cstr[kStringPrintfVectorMaxArgs]; local
153 cstr[i] = v[i].c_str();
155 for (int i = v.size(); i < GOOGLE_ARRAYSIZE(cstr); ++i) {
156 cstr[i] = &string_printf_empty_block[0];
166 cstr[0], cstr[1], cstr[2], cstr[3], cstr[4],
167 cstr[
[all...]
H A Dcommon_unittest.cc248 const char* cstr = "hello"; local
249 Closure* closure = NewCallback(&SetABFunction, 789, cstr);
251 EXPECT_NE(cstr, b_);
254 EXPECT_EQ(cstr, b_);
258 const char* cstr = "hello"; local
260 &ClosureTest::SetABMethod, 789, cstr);
262 EXPECT_NE(cstr, b_);
265 EXPECT_EQ(cstr, b_);
317 const char* cstr = "hello"; local
318 Closure* closure = NewPermanentCallback(&SetABFunction, 789, cstr);
333 const char* cstr = "hello"; local
[all...]
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DJsContext.cpp103 const char* cstr = to_cstring(str); local
104 printf("%s\n", cstr);
H A DGlobal.cpp170 const char* cstr = to_cstring(str); local
171 printf("%s\n", cstr);
/external/icu/icu4c/source/common/
H A Duenum.c94 const char *cstr = en->next(en, &len, status); local
95 if (cstr != NULL) {
100 u_charsToUChars(cstr, ustr, len+1);
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCString.cpp42 CFCString::CFCString (const char *cstr, CFStringEncoding cstr_encoding) : argument
45 if (cstr && cstr[0])
47 reset(::CFStringCreateWithCString(kCFAllocatorDefault, cstr, cstr_encoding));
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp46 CFString::CFString (const char *cstr, CFStringEncoding cstr_encoding) : argument
49 if (cstr && cstr[0])
51 reset(::CFStringCreateWithCString(kCFAllocatorDefault, cstr, cstr_encoding));
/external/llvm/include/llvm/DebugInfo/
H A DDWARFFormValue.h46 const char* cstr; member in union:llvm::DWARFFormValue::ValueType::__anon25507
63 return Value.data != nullptr && Value.data == (const uint8_t*)Value.cstr;
/external/skia/experimental/SkV8Example/
H A DJsContext.cpp103 const char* cstr = to_cstring(str); local
104 printf("%s\n", cstr);
/external/stlport/test/unit/
H A Drope_test.cpp60 char const* cstr = "rope test string"; local
61 crope rstr(cstr);
68 CPPUNIT_ASSERT( ostr.str() == cstr );
/external/lldb/source/API/
H A DSBEvent.cpp34 SBEvent::SBEvent (uint32_t event_type, const char *cstr, uint32_t cstr_len) : argument
35 m_event_sp (new Event (event_type, new EventDataBytes (cstr, cstr_len))),
H A DSBFunction.cpp61 const char *cstr = NULL; local
63 cstr = m_opaque_ptr->GetMangled().GetName().AsCString();
68 if (cstr)
69 log->Printf ("SBFunction(%p)::GetName () => \"%s\"", m_opaque_ptr, cstr);
73 return cstr;
79 const char *cstr = NULL; local
81 cstr = m_opaque_ptr->GetMangled().GetMangledName().AsCString();
85 if (cstr)
86 log->Printf ("SBFunction(%p)::GetMangledName () => \"%s\"", m_opaque_ptr, cstr);
90 return cstr;
[all...]
/external/lldb/source/Core/
H A DEvent.cpp111 EventDataBytes::EventDataBytes (const char *cstr) : argument
114 SetBytesFromCString (cstr);
180 EventDataBytes::SetBytesFromCString (const char *cstr) argument
182 if (cstr && cstr[0])
183 m_bytes.assign (cstr);
H A DUUID.cpp221 UUID::SetFromCString (const char *cstr, uint32_t num_uuid_bytes) argument
223 if (cstr == NULL)
226 const char *p = cstr;
237 return p - cstr;
/external/lldb/source/Utility/
H A DStringExtractorGDBRemote.h29 StringExtractorGDBRemote(const char *cstr) : argument
30 StringExtractor (cstr)
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon_unittest.cc242 const char* cstr = "hello"; local
243 Closure* closure = NewCallback(&SetABFunction, 789, cstr);
245 EXPECT_NE(cstr, b_);
248 EXPECT_EQ(cstr, b_);
252 const char* cstr = "hello"; local
254 &ClosureTest::SetABMethod, 789, cstr);
256 EXPECT_NE(cstr, b_);
259 EXPECT_EQ(cstr, b_);
311 const char* cstr = "hello"; local
312 Closure* closure = NewPermanentCallback(&SetABFunction, 789, cstr);
327 const char* cstr = "hello"; local
[all...]

Completed in 595 milliseconds

1234