HomeSort by relevance Sort by last modified time
    Searched refs:type_ (Results 1 - 25 of 656) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/compiler/nir/
nir_constant_expressions.py 3 def type_has_size(type_):
4 return type_[-1:].isdigit()
6 def type_sizes(type_):
7 if type_.endswith("8"):
9 elif type_.endswith("16"):
11 elif type_.endswith("32"):
13 elif type_.endswith("64"):
18 def type_add_size(type_, size):
19 if type_has_size(type_):
20 return type_
    [all...]
  /external/jdiff/src/jdiff/
ParamAPI.java 21 public String type_; field in class:ParamAPI
25 type_ = type;
34 comp = type_.compareTo(oParamAPI.type_);
51 if (type_.compareTo("void") == 0)
53 return type_;
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
keypoint.h 32 Keypoint() : pos_(0.0f, 0.0f), score_(0.0f), type_(0) {}
34 : pos_(x, y), score_(0.0f), type_(0) {}
38 uint8_t type_; member in struct:tf_tracking::Keypoint
43 << keypoint.score_ << ", " << keypoint.type_ << "]";
  /external/clang/test/SemaCXX/
windows-arm-valist.cpp 9 template <typename type_>
10 struct is_same<type_, type_> { enum { value = 1 }; };
  /external/strace/tests/
test_netlink.h 11 type_, type_str_, \
22 .nlmsg_type = (type_), \
42 #define TEST_NETLINK(fd_, nlh0_, type_, flags_, \
45 (type_), #type_, \
50 type_, type_str_, \
62 (type_), (type_str_), \
68 (type_), (type_str_), \
76 (type_), (type_str_), \
84 type_, flags_,
    [all...]
  /external/strace/tests-m32/
test_netlink.h 11 type_, type_str_, \
22 .nlmsg_type = (type_), \
42 #define TEST_NETLINK(fd_, nlh0_, type_, flags_, \
45 (type_), #type_, \
50 type_, type_str_, \
62 (type_), (type_str_), \
68 (type_), (type_str_), \
76 (type_), (type_str_), \
84 type_, flags_,
    [all...]
  /external/strace/tests-mx32/
test_netlink.h 11 type_, type_str_, \
22 .nlmsg_type = (type_), \
42 #define TEST_NETLINK(fd_, nlh0_, type_, flags_, \
45 (type_), #type_, \
50 type_, type_str_, \
62 (type_), (type_str_), \
68 (type_), (type_str_), \
76 (type_), (type_str_), \
84 type_, flags_,
    [all...]
  /external/webrtc/talk/media/base/
screencastid.h 52 ScreencastId() : type_(INVALID) {}
54 : type_(WINDOW), window_(id) {
57 : type_(DESKTOP), desktop_(id) {
60 Type type() const { return type_; }
69 if (type_ == INVALID) {
71 } else if (type_ == WINDOW) {
77 bool IsWindow() const { return type_ == WINDOW; }
78 bool IsDesktop() const { return type_ == DESKTOP; }
80 if (type_ != other.type_) {
106 Type type_; member in class:cricket::ScreencastId
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidRenderActivity.hpp 72 explicit Message (MessageType type_)
73 : type(type_)
75 DE_ASSERT(type_ == MESSAGE_RESUME ||
76 type_ == MESSAGE_PAUSE ||
77 type_ == MESSAGE_FINISH);
80 Message (MessageType type_, ANativeWindow* window)
81 : type(type_)
83 DE_ASSERT(type_ == MESSAGE_WINDOW_CREATED ||
84 type_ == MESSAGE_WINDOW_DESTROYED ||
85 type_ == MESSAGE_WINDOW_RESIZED)
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
types.py 22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_.strip_typedefs(
    [all...]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
types.py 22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_.strip_typedefs(
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssnumbervalue.h 32 CFX_CSSNumberType Kind() const { return type_; }
37 CFX_CSSNumberType type_; member in class:CFX_CSSNumberValue
  /frameworks/native/services/thermalservice/aidl/android/os/
Temperature.h 17 float getType() const {return type_;};
27 int type_; member in class:android::os::Temperature
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
98 bool fatally_failed() const { return type_ == kFatalFailure; }
101 Type type_; member in class:testing::TestPartResult
  /external/googletest/googletest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
98 bool fatally_failed() const { return type_ == kFatalFailure; }
100 Type type_; member in class:testing::TestPartResult
  /external/mesa3d/src/gtest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /external/protobuf/gtest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
98 bool fatally_failed() const { return type_ == kFatalFailure; }
100 Type type_; member in class:testing::TestPartResult
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
89 bool passed() const { return type_ == kSuccess; }
92 bool failed() const { return type_ != kSuccess; }
95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
98 bool fatally_failed() const { return type_ == kFatalFailure; }
100 Type type_; member in class:testing::TestPartResult
  /external/v8/testing/gtest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/
gtest-test-part.h 64 : type_(a_type),
72 Type type() const { return type_; }
91 bool passed() const { return type_ == kSuccess; }
94 bool failed() const { return type_ != kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
103 Type type_; member in class:testing::TestPartResult
  /external/strace/
macros.h 47 # define offsetofend(type_, member_) \
48 (offsetof(type_, member_) + sizeof(((type_ *)0)->member_))

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 91011>>