/hardware/qcom/display/msm8996/sdm/libs/hwc/ |
hwc_debugger.cpp | 147 void HWCDebugHandler::BeginTrace(const char *class_name, const char *function_name, 150 snprintf(name, sizeof(name), "%s::%s::%s", class_name, function_name, custom_string);
|
/system/tools/aidl/tests/ |
test_util.cpp | 52 string* class_name) { 54 *class_name = string{package_class, package_class.rfind('.') + 1};
|
/development/testrunner/test_defs/ |
instrumentation_test.py | 61 def SetClassName(self, class_name): 62 self._class_name = class_name 324 class_name = os.path.splitext(filename)[0] 325 return '%s.%s' % (package_name, class_name)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
sql_1.h | 62 int class_name();
|
/external/autotest/scheduler/ |
site_monitor_db.py | 59 class_name = self.__class__.__name__ 67 % (class_name, entry.status, entry, 83 % (class_name, entry.host.status, entry,
|
/external/llvm/utils/lit/lit/ |
Test.py | 245 class_name = safe_name + "." + "/".join(safe_test_path) 247 class_name = safe_name + "." + safe_name 249 xml = "<testcase classname='" + class_name + "' name='" + \
|
/external/toybox/toys/pending/ |
tr.c | 111 static int find_class(char *class_name) 122 if (!memcmp(class_name, class[i], (class_name[0] == 'x')?10:9)) break;
|
/frameworks/base/media/mca/filterfw/jni/ |
jni_util.cpp | 121 bool IsJavaInstanceOf(JNIEnv* env, jobject object, const std::string& class_name) { 122 jclass clazz = env->FindClass(class_name.c_str()); 127 jobject CreateJObject(JNIEnv* env, const std::string& class_name, const std::string& signature, T value) {
|
/external/v8/test/cctest/ |
test-inobject-slack-tracking.cc | 570 static v8::Local<v8::Script> GetNewObjectScript(const std::string& class_name) { 572 os << "new " << class_name << "();"; local 584 std::string class_name = GetClassName(cur_class); local 591 // Create |class_name| objects and check slack tracking. 592 v8::Local<v8::Script> new_script = GetNewObjectScript(class_name); 594 Handle<JSFunction> func = GetLexical<JSFunction>(class_name); 686 std::string class_name = GetClassName(cur_class); local 688 // Create |class_name| objects and check slack tracking. 689 v8::Local<v8::Script> new_script = GetNewObjectScript(class_name); 691 Handle<JSFunction> func = GetLexical<JSFunction>(class_name); 745 std::string class_name = GetClassName(cur_class); local [all...] |
/system/tools/aidl/ |
aidl.cpp | 410 vector<string>* package, string* class_name) { 443 *class_name = type.substr(dot_pos + 1); 446 *class_name = type; 477 string class_name; local 478 if (!ParsePreprocessedLine(line, &decl, &package, &class_name)) { 484 AidlParcelable doc(new AidlQualifiedName(class_name, ""), 489 AidlInterface doc(class_name, lineno, "", false, temp, package);
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
ts_perf.hpp | 96 #define CV_ENUM(class_name, ...) \ 98 struct class_name { \ 99 class_name(int val = 0) : val_(val) {} \ 117 static ::testing::internal::ParamGenerator<class_name> all() { \ 119 static class_name vals[] = { __VA_ARGS__ }; \ 124 inline void PrintTo(const class_name& t, std::ostream* os) { t.PrintTo(os); } } 126 #define CV_FLAGS(class_name, ...) \ 128 struct class_name { \ 129 class_name(int val = 0) : val_(val) {} \ 153 inline void PrintTo(const class_name& t, std::ostream* os) { t.PrintTo(os); } [all...] |
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
adaptor_generator.cc | 65 string class_name = parser.MakeAdaptorName(false); local 86 text->AddLine(StringPrintf("class %s {", class_name.c_str())); 89 AddConstructor(class_name, itf_name, text); 116 class_name.c_str())); 125 void AdaptorGenerator::AddConstructor(const string& class_name, 129 class_name.c_str(), itf_name.c_str()));
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
pyclbr.py | 185 tokentype, class_name, start = g.next()[0:3] 230 cur_class = Class(fullmodule, class_name, inherit, 233 dict[class_name] = cur_class
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
pyclbr.py | 185 tokentype, class_name, start = g.next()[0:3] 230 cur_class = Class(fullmodule, class_name, inherit, 233 dict[class_name] = cur_class
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 185 tokentype, class_name, start = g.next()[0:3] 230 cur_class = Class(fullmodule, class_name, inherit, 233 dict[class_name] = cur_class
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 185 tokentype, class_name, start = g.next()[0:3] 230 cur_class = Class(fullmodule, class_name, inherit, 233 dict[class_name] = cur_class
|
/art/compiler/driver/ |
compiler_driver_test.cc | 51 void EnsureCompiled(jobject class_loader, const char* class_name, const char* method, 59 class_ = env_->FindClass(class_name); 60 CHECK(class_ != nullptr) << "Class not found: " << class_name; 66 CHECK(mid_ != nullptr) << "Method not found: " << class_name << "." << method << signature;
|
/external/autotest/client/cros/cellular/pseudomodem/ |
pseudomodem.py | 213 def _CreateCustomObject(self, test_module, class_name, arg_file_name): 218 @param class_name: Name of the class implementing the custom object. 220 taken by |test_module|.|class_name| constructor in json. 238 class_def = getattr(test_module, class_name) 242 class_name, str(arg)) 249 class_name, str(e))
|
/external/pdfium/core/src/fpdfdoc/ |
doc_tagged.cpp | 367 CFX_ByteString class_name = pArray->GetString(i); local 368 CPDF_Dictionary* pClassDict = pClassMap->GetDict(class_name); 374 CFX_ByteString class_name = pC->GetString(); local 375 CPDF_Dictionary* pClassDict = pClassMap->GetDict(class_name);
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.h | 132 string OptionsValue(const string& class_name,
|
/external/selinux/libsepol/include/sepol/policydb/ |
services.h | 97 * specified by `class_name'. 99 extern int sepol_string_to_security_class(const char *class_name,
|
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/python/ |
python_generator.h | 127 string OptionsValue(const string& class_name,
|
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/python/ |
python_generator.h | 127 string OptionsValue(const string& class_name,
|
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/python/ |
python_generator.h | 127 string OptionsValue(const string& class_name,
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/python/ |
python_generator.h | 135 string OptionsValue(const string& class_name,
|