HomeSort by relevance Sort by last modified time
    Searched refs:type_ (Results 1 - 25 of 564) 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/clang/test/SemaCXX/
windows-arm-valist.cpp 9 template <typename type_>
10 struct is_same<type_, type_> { enum { value = 1 }; };
  /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/gcc/darwin-x86/arm/arm-eabi-4.8/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/gcc/linux-x86/arm/arm-eabi-4.8/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/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...]
  /frameworks/native/services/thermalservice/aidl/android/os/
Temperature.h 17 float getType() const {return type_;};
27 int type_; member in class:android::os::Temperature
Temperature.cpp 29 Temperature::Temperature() : value_(NAN), type_(DEVICE_TEMPERATURE_UNKNOWN) {}
32 value_(value), type_(type) {}
43 type_ = p->readInt32();
49 p->writeInt32(type_);
  /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/r11/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/r13/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
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodedstream.h 111 AutoUTFInputStream(InputByteStream& is, UTFType type = kUTF8) : is_(&is), type_(type), hasBOM_(false) {
115 takeFunc_ = f[type_];
119 UTFType GetType() const { return type_; }
151 if (bom == 0xFFFE0000) { type_ = kUTF32BE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
152 else if (bom == 0x0000FEFF) { type_ = kUTF32LE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
153 else if ((bom & 0xFFFF) == 0xFFFE) { type_ = kUTF16BE; hasBOM_ = true; is_->Take(); is_->Take(); }
154 else if ((bom & 0xFFFF) == 0xFEFF) { type_ = kUTF16LE; hasBOM_ = true; is_->Take(); is_->Take(); }
155 else if ((bom & 0xFFFFFF) == 0xBFBBEF) { type_ = kUTF8; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); }
171 case 0x08: type_ = kUTF32BE; break;
172 case 0x0A: type_ = kUTF16BE; break;
187 UTFType type_; member in class:AutoUTFInputStream
249 UTFType type_; member in class:AutoUTFOutputStream
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
datapiece.h 79 explicit DataPiece(const int32 value) : type_(TYPE_INT32), i32_(value) {}
80 explicit DataPiece(const int64 value) : type_(TYPE_INT64), i64_(value) {}
81 explicit DataPiece(const uint32 value) : type_(TYPE_UINT32), u32_(value) {}
82 explicit DataPiece(const uint64 value) : type_(TYPE_UINT64), u64_(value) {}
83 explicit DataPiece(const double value) : type_(TYPE_DOUBLE), double_(value) {}
84 explicit DataPiece(const float value) : type_(TYPE_FLOAT), float_(value) {}
85 explicit DataPiece(const bool value) : type_(TYPE_BOOL), bool_(value) {}
87 : type_(TYPE_STRING),
92 : type_(TYPE_BYTES),
95 DataPiece(const DataPiece& r) : type_(r.type_), str_(r.str_) {
175 Type type_; member in class:google::protobuf::util::converter::DataPiece
    [all...]
  /external/v8/src/
macro-assembler.h 72 : masm_(masm), type_(type), old_has_frame_(masm->has_frame()) {
74 if (type != StackFrame::MANUAL && type_ != StackFrame::NONE) {
80 if (type_ != StackFrame::MANUAL && type_ != StackFrame::NONE) {
81 masm_->LeaveFrame(type_);
92 DCHECK(type_ != StackFrame::MANUAL && type_ != StackFrame::NONE);
93 masm_->LeaveFrame(type_);
98 StackFrame::Type type_; member in class:v8::internal::FrameScope
106 type_(type)
139 StackFrame::Type type_; member in class:v8::internal::FrameAndConstantPoolScope
    [all...]

Completed in 1623 milliseconds

1 2 3 4 5 6 7 8 91011>>