Home
last modified time | relevance | path

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

/external/toybox/toys/pending/
Dexpr.c72 char *get_str(struct value *v) in get_str() function
173 cmp = strcmp(s = get_str(ret), t = get_str(rhs)); in eval_op()
202 s = get_str(ret); in eval_op()
204 re(s, t = get_str(rhs), ret); in eval_op()
/external/protobuf/ruby/ext/google/protobuf_c/
Ddefs.c37 static const char* get_str(VALUE str) { in get_str() function
201 const char* name_str = get_str(name); in DescriptorPool_lookup()
330 const char* name = get_str(str); in Descriptor_name_set()
366 const char* s = get_str(name); in Descriptor_lookup()
448 const char* s = get_str(name); in Descriptor_lookup_oneof()
548 const char* name = get_str(str); in FieldDescriptor_name_set()
815 const char* str = get_str(value); in FieldDescriptor_submsg_name_set()
946 const char* str = get_str(value); in OneofDescriptor_name_set()
1067 const char* name = get_str(str); in EnumDescriptor_name_set()
/external/skqp/src/ports/
DSkFontHost_mac.cpp2297 static const char* get_str(CFStringRef ref, SkString* str) { in get_str() function
2307 get_str(CTFontCopyFamilyName(fFontRef.get()), familyName); in onGetFamilyName()
2314 desc->setFamilyName(get_str(CTFontCopyFamilyName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2315 desc->setFullName(get_str(CTFontCopyFullName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2316 desc->setPostscriptName(get_str(CTFontCopyPostScriptName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
/external/skia/src/ports/
DSkFontHost_mac.cpp2317 static const char* get_str(CFStringRef ref, SkString* str) { in get_str() function
2327 get_str(CTFontCopyFamilyName(fFontRef.get()), familyName); in onGetFamilyName()
2334 desc->setFamilyName(get_str(CTFontCopyFamilyName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2335 desc->setFullName(get_str(CTFontCopyFullName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
2336 desc->setPostscriptName(get_str(CTFontCopyPostScriptName(fFontRef.get()), &tmpStr)); in onGetFontDescriptor()
/external/python/cpython2/Objects/
Dtypeobject.c5820 static PyObject *get_str = NULL; local
5822 if (get_str == NULL) {
5823 get_str = PyString_InternFromString("__get__");
5824 if (get_str == NULL)
5827 get = _PyType_Lookup(tp, get_str);