Home
last modified time | relevance | path

Searched refs:_description (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/build/android/pylib/utils/
Dtime_profile.py14 self._description = description
25 stoptime - self._starttime, self._description)
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
Dnotifications.js91 this._description = this.appendChild(document.createElement('div'));
92 this._description.className = 'description';
100 …this._description.appendChild(ui.createLinkNode(trac.changesetURL(commitData.revision), commitData…
101 this._details = this._description.appendChild(document.createElement('span'));
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
Dtest.cc31 _description(description) in CodecTest()
46 _description(description) in CodecTest()
58 (*_log) << _description << std::endl; in Print()
Dtest.h73 std::string _description; variable
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
DRTCSessionDescription.mm36 @synthesize description = _description;
45 _description = sdp;
69 _description = @(sdp.c_str());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
Dperftest.py93 self._description = None
108 return self._description
126 if should_log and self._description:
127 _log.info('DESCRIPTION: %s' % self._description)
182 self._description = description_match.group('description')
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js224 this._description = description;
230 this._description = description || (value + "");
262 return this._description;
554 var matches = this._description.match(/\[([0-9]+)\]/);
/external/lldb/test/unittest2/
Dcase.py1057 self._description = description
1080 self._description == other._description
1087 self._testFunc, self._description))
1098 if self._description is not None:
1099 return self._description
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
Dcase.py1040 self._description = description
1063 self._description == other._description
1070 self._testFunc, self._description))
1081 if self._description is not None:
1082 return self._description
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DDFA.as28 private var _description:String;
37 this._description = description;
175 return _description;
/external/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h1458 #define __sanitizer_syscall_pre_add_key(_type, _description, _payload, plen, \ argument
1460 __sanitizer_syscall_pre_impl_add_key((long)(_type), (long)(_description), \
1463 #define __sanitizer_syscall_post_add_key(res, _type, _description, _payload, \ argument
1466 res, (long)(_type), (long)(_description), (long)(_payload), \
1468 #define __sanitizer_syscall_pre_request_key(_type, _description, \ argument
1471 (long)(_type), (long)(_description), (long)(_callout_info), \
1473 #define __sanitizer_syscall_post_request_key(res, _type, _description, \ argument
1476 res, (long)(_type), (long)(_description), (long)(_callout_info), \
2829 void __sanitizer_syscall_pre_impl_add_key(long _type, long _description,
2833 long _description, long _payload,
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc2343 PRE_SYSCALL(add_key)(const void *_type, const void *_description,
2347 if (_description)
2348 PRE_READ(_description,
2349 __sanitizer::internal_strlen((const char *)_description) + 1);
2352 POST_SYSCALL(add_key)(long res, const void *_type, const void *_description,
2355 PRE_SYSCALL(request_key)(const void *_type, const void *_description,
2359 if (_description)
2360 PRE_READ(_description,
2361 __sanitizer::internal_strlen((const char *)_description) + 1);
2367 POST_SYSCALL(request_key)(long res, const void *_type, const void *_description,
/external/chromium_org/third_party/handlebar/
Dhandlebar.py625 self._description = description
629 render_state.AddResolutionError(self._id, description=self._description)
632 return '{{!%s %s}}' % (self._id, self._description)