Searched refs:type_ (Results 1 - 25 of 194) sorted by relevance

12345678

/external/jdiff/src/jdiff/
H A DParamAPI.java21 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_;
H A DConstructorAPI.java21 public String type_ = null; field in class:ConstructorAPI
37 type_ = type;
44 int comp = type_.compareTo(constructorAPI.type_);
62 if (type_.compareTo(((ConstructorAPI)o).type_) == 0)
H A DFieldAPI.java21 public String type_; field in class:FieldAPI
50 type_ = type;
60 type_ = f.type_;
75 comp = type_.compareTo(oFieldAPI.type_);
/external/chromium/net/base/
H A Dstatic_cookie_policy.h40 : type_(StaticCookiePolicy::ALLOW_ALL_COOKIES) {
44 : type_(type) {
49 void set_type(Type type) { type_ = type; }
50 Type type() const { return type_; }
66 Type type_; member in class:net::StaticCookiePolicy
H A Dstatic_cookie_policy.cc17 switch (type_) {
37 switch (type_) {
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_details.h27 type_(type),
37 ContentSettingsType type() const { return type_; }
47 return CONTENT_SETTINGS_TYPE_DEFAULT == type_;
52 ContentSettingsType type_; member in class:ContentSettingsDetails
/external/v8/src/
H A Dtype-info.h57 TypeInfo() : type_(kUninitialized) { }
80 return type_;
98 return TypeInfo(static_cast<Type>(a.type_ & b.type_));
120 return type_ == other.type_;
124 ASSERT(type_ != kUninitialized);
125 return type_ == kUnknown;
129 ASSERT(type_ != kUninitialized);
130 return ((type_
209 Type type_; member in class:v8::internal::TypeInfo
[all...]
H A Dmacro-assembler.h78 : masm_(masm), type_(type), old_has_frame_(masm->has_frame()) {
80 if (type != StackFrame::MANUAL && type_ != StackFrame::NONE) {
86 if (type_ != StackFrame::MANUAL && type_ != StackFrame::NONE) {
87 masm_->LeaveFrame(type_);
98 masm_->LeaveFrame(type_);
103 StackFrame::Type type_; member in class:v8::internal::FrameScope
H A Dstring-stream.h75 FmtElm(int value) : type_(INT) { // NOLINT
78 explicit FmtElm(double value) : type_(DOUBLE) {
81 FmtElm(const char* value) : type_(C_STR) { // NOLINT
84 FmtElm(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT
87 FmtElm(Object* value) : type_(OBJ) { // NOLINT
90 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT
93 FmtElm(void* value) : type_(POINTER) { // NOLINT
100 Type type_; member in class:v8::internal::FmtElm
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-test-part.h64 : 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/gtest/include/gtest/
H A Dgtest-test-part.h64 : 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/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-test-part.h64 : 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/protobuf/gtest/include/gtest/
H A Dgtest-test-part.h63 : type_(type),
71 Type type() const { return type_; }
88 bool passed() const { return type_ == kSuccess; }
91 bool failed() const { return type_ != kSuccess; }
94 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
97 bool fatally_failed() const { return type_ == kFatalFailure; }
99 Type type_; member in class:testing::TestPartResult
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set.h172 unsigned int type_ : 3;
216 return static_cast<Type>(type_);
220 GOOGLE_DCHECK_EQ(type_, TYPE_VARINT);
224 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED32);
228 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED64);
232 GOOGLE_DCHECK_EQ(type_, TYPE_LENGTH_DELIMITED);
236 GOOGLE_DCHECK_EQ(type_, TYPE_GROUP);
241 GOOGLE_DCHECK_EQ(type_, TYPE_VARINT);
245 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED32);
249 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED6
[all...]
/external/chromium/net/proxy/
H A Dproxy_resolver_script_data.cc39 DCHECK_EQ(TYPE_SCRIPT_CONTENTS, type_);
44 DCHECK_EQ(TYPE_SCRIPT_URL, type_);
51 : type_(type),
H A Dproxy_resolver_script_data.h45 return type_;
64 const Type type_; member in class:net::ProxyResolverScriptData
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-spi.h55 : type_(type),
62 TestPartResultType type() const { return type_; }
76 bool passed() const { return type_ == TPRT_SUCCESS; }
79 bool failed() const { return type_ != TPRT_SUCCESS; }
82 bool nonfatally_failed() const { return type_ == TPRT_NONFATAL_FAILURE; }
85 bool fatally_failed() const { return type_ == TPRT_FATAL_FAILURE; }
87 TestPartResultType type_; member in class:testing::TestPartResult
183 const TestPartResultType type_; member in class:testing::internal::SingleFailureChecker
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.h98 Type type() const { return type_; }
102 assert(type_ == BOOL);
107 assert(type_ == INT);
112 assert(type_ == FLOAT);
117 assert(type_ == STRING);
123 assert(type_ == BOOL);
128 assert(type_ == INT);
133 assert(type_ == FLOAT);
138 assert(type_ == STRING);
157 Type type_; member in class:Flag
[all...]
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_installed_bubble.cc87 type_(type),
111 if (type_ == ExtensionInstalledBubble::PAGE_ACTION) {
120 if (type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) {
172 if (type_ == ExtensionInstalledBubble::PAGE_ACTION ||
173 type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) {
198 if (type_ == ExtensionInstalledBubble::PAGE_ACTION ||
199 type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) {
226 ExtensionInstalledBubble::BubbleType type_; member in class:InstalledBubbleContent
252 type_ = OMNIBOX_KEYWORD;
254 type_
[all...]
/external/chromium/chrome/browser/ui/tabs/
H A Ddock_info.h62 DockInfo() : type_(NONE), window_(NULL), in_enable_area_(false) {}
125 void set_type(Type type) { type_ = type; }
126 Type type() const { return type_; }
162 return type_ == other.type_ && window_ == other.window_ &&
179 Type type_; member in class:DockInfo
/external/chromium/base/
H A Dcpu.h26 int type() const { return type_; }
41 int type_; // process type member in class:base::CPU
/external/valgrind/tsan/
H A Dts_events.h104 : type_(type),
113 type_ = type;
121 EventType type() const { return type_; }
135 EventType type_; member in class:Event
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_change.h22 : type_(type), form_(form) {
26 Type type() const { return type_; }
48 Type type_; member in class:PasswordStoreChange
/external/chromium/chrome/browser/webdata/
H A Dautofill_change.h27 Type type() const { return type_; }
32 : type_(type),
35 Type type_; member in class:GenericAutofillChange
/external/chromium/webkit/glue/
H A Dwebcursor.cc18 : type_(WebCursorInfo::TypePointer) {
23 : type_(WebCursorInfo::TypePointer) {
56 type_ = cursor_info.type;
64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_);
92 type_ = type;
118 if (!pickle->WriteInt(type_) ||
135 return type_ == WebCursorInfo::TypeCustom;
139 if (type_ != other.type_)
151 type_
[all...]

Completed in 947 milliseconds

12345678