/external/v8/src/ |
D | type-info.h | 57 TypeInfo() : type_(kUninitialized) { } in TypeInfo() 80 return type_; in ToInt() 98 return TypeInfo(static_cast<Type>(a.type_ & b.type_)); in Combine() 120 return type_ == other.type_; in Equals() 124 ASSERT(type_ != kUninitialized); in IsUnknown() 125 return type_ == kUnknown; in IsUnknown() 129 ASSERT(type_ != kUninitialized); in IsPrimitive() 130 return ((type_ & kPrimitive) == kPrimitive); in IsPrimitive() 134 ASSERT(type_ != kUninitialized); in IsNumber() 135 return ((type_ & kNumber) == kNumber); in IsNumber() [all …]
|
D | macro-assembler.h | 78 : masm_(masm), type_(type), old_has_frame_(masm->has_frame()) { in FrameScope() 80 if (type != StackFrame::MANUAL && type_ != StackFrame::NONE) { in FrameScope() 86 if (type_ != StackFrame::MANUAL && type_ != StackFrame::NONE) { in ~FrameScope() 87 masm_->LeaveFrame(type_); in ~FrameScope() 98 masm_->LeaveFrame(type_); in GenerateLeaveFrame() 103 StackFrame::Type type_; variable
|
D | flags.cc | 57 FlagType type_; // What type of flag, bool, int, or string. member 64 FlagType type() const { return type_; } in type() 71 ASSERT(type_ == TYPE_BOOL); in bool_variable() 76 ASSERT(type_ == TYPE_INT); in int_variable() 81 ASSERT(type_ == TYPE_FLOAT); in float_variable() 86 ASSERT(type_ == TYPE_STRING); in string_value() 91 ASSERT(type_ == TYPE_STRING); in set_string_value() 99 ASSERT(type_ == TYPE_ARGS); in args_variable() 104 ASSERT(type_ == TYPE_BOOL); in bool_default() 109 ASSERT(type_ == TYPE_INT); in int_default() [all …]
|
D | string-stream.h | 75 FmtElm(int value) : type_(INT) { // NOLINT in FmtElm() 78 explicit FmtElm(double value) : type_(DOUBLE) { in FmtElm() 81 FmtElm(const char* value) : type_(C_STR) { // NOLINT in FmtElm() 84 FmtElm(const Vector<const uc16>& value) : type_(LC_STR) { // NOLINT in FmtElm() 87 FmtElm(Object* value) : type_(OBJ) { // NOLINT in FmtElm() 90 FmtElm(Handle<Object> value) : type_(HANDLE) { // NOLINT in FmtElm() 93 FmtElm(void* value) : type_(POINTER) { // NOLINT in FmtElm() 100 Type type_; variable
|
D | scopes.h | 268 bool is_eval_scope() const { return type_ == EVAL_SCOPE; } in is_eval_scope() 269 bool is_function_scope() const { return type_ == FUNCTION_SCOPE; } in is_function_scope() 270 bool is_module_scope() const { return type_ == MODULE_SCOPE; } in is_module_scope() 271 bool is_global_scope() const { return type_ == GLOBAL_SCOPE; } in is_global_scope() 272 bool is_catch_scope() const { return type_ == CATCH_SCOPE; } in is_catch_scope() 273 bool is_block_scope() const { return type_ == BLOCK_SCOPE; } in is_block_scope() 274 bool is_with_scope() const { return type_ == WITH_SCOPE; } in is_with_scope() 306 ScopeType type() const { return type_; } in type() 428 ScopeType type_; variable
|
/external/protobuf/src/google/protobuf/ |
D | unknown_field_set.h | 172 unsigned int type_ : 3; variable 216 return static_cast<Type>(type_); in type() 220 GOOGLE_DCHECK_EQ(type_, TYPE_VARINT); in varint() 224 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED32); in fixed32() 228 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED64); in fixed64() 232 GOOGLE_DCHECK_EQ(type_, TYPE_LENGTH_DELIMITED); in length_delimited() 236 GOOGLE_DCHECK_EQ(type_, TYPE_GROUP); in group() 241 GOOGLE_DCHECK_EQ(type_, TYPE_VARINT); in set_varint() 245 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED32); in set_fixed32() 249 GOOGLE_DCHECK_EQ(type_, TYPE_FIXED64); in set_fixed64() [all …]
|
/external/chromium/webkit/glue/ |
D | webcursor.cc | 18 : type_(WebCursorInfo::TypePointer) { in WebCursor() 23 : type_(WebCursorInfo::TypePointer) { in WebCursor() 56 type_ = cursor_info.type; in InitFromCursorInfo() 64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_); in GetCursorInfo() 92 type_ = type; in Deserialize() 118 if (!pickle->WriteInt(type_) || in Serialize() 135 return type_ == WebCursorInfo::TypeCustom; in IsCustom() 139 if (type_ != other.type_) in IsEqual() 151 type_ = WebCursorInfo::TypePointer; in Clear() 161 type_ = other.type_; in Copy()
|
/external/jdiff/src/jdiff/ |
D | ParamAPI.java | 21 public String type_; field in ParamAPI 25 type_ = type; in ParamAPI() 34 comp = type_.compareTo(oParamAPI.type_); in compareTo() 51 if (type_.compareTo("void") == 0) in toString() 53 return type_; in toString()
|
D | ConstructorAPI.java | 21 public String type_ = null; field in ConstructorAPI 37 type_ = type; in ConstructorAPI() 44 int comp = type_.compareTo(constructorAPI.type_); in compareTo() 62 if (type_.compareTo(((ConstructorAPI)o).type_) == 0) in equals()
|
D | FieldAPI.java | 21 public String type_; field in FieldAPI 50 type_ = type; in FieldAPI() 60 type_ = f.type_; in FieldAPI() 75 comp = type_.compareTo(oFieldAPI.type_); in compareTo()
|
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
D | cookie_details.mm | 20 @synthesize type = type_; 23 return type_ != kCocoaCookieDetailsTypeFolder && 24 type_ != kCocoaCookieDetailsTypeCookie; 28 return type_ == kCocoaCookieDetailsTypeTreeLocalStorage; 32 return type_ == kCocoaCookieDetailsTypePromptLocalStorage; 36 return type_ == kCocoaCookieDetailsTypeTreeDatabase; 40 return type_ == kCocoaCookieDetailsTypeTreeAppCache; 44 return type_ == kCocoaCookieDetailsTypePromptDatabase; 48 return type_ == kCocoaCookieDetailsTypePromptAppCache; 52 return type_ == kCocoaCookieDetailsTypeTreeIndexedDB; [all …]
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | flags.h | 98 Type type() const { return type_; } in type() 102 assert(type_ == BOOL); in bool_variable() 107 assert(type_ == INT); in int_variable() 112 assert(type_ == FLOAT); in float_variable() 117 assert(type_ == STRING); in string_variable() 123 assert(type_ == BOOL); in bool_default() 128 assert(type_ == INT); in int_default() 133 assert(type_ == FLOAT); in float_default() 138 assert(type_ == STRING); in string_default() 157 Type type_; variable
|
/external/chromium/sdch/open-vcdiff/src/gtest/ |
D | gtest-spi.h | 55 : type_(type), in TestPartResult() 62 TestPartResultType type() const { return type_; } in type() 76 bool passed() const { return type_ == TPRT_SUCCESS; } in passed() 79 bool failed() const { return type_ != TPRT_SUCCESS; } in failed() 82 bool nonfatally_failed() const { return type_ == TPRT_NONFATAL_FAILURE; } in nonfatally_failed() 85 bool fatally_failed() const { return type_ == TPRT_FATAL_FAILURE; } in fatally_failed() 87 TestPartResultType type_; 183 const TestPartResultType type_; variable
|
/external/chromium/chrome/browser/ui/views/extensions/ |
D | extension_installed_bubble.cc | 87 type_(type), in InstalledBubbleContent() 111 if (type_ == ExtensionInstalledBubble::PAGE_ACTION) { in InstalledBubbleContent() 120 if (type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) { in InstalledBubbleContent() 172 if (type_ == ExtensionInstalledBubble::PAGE_ACTION || in GetPreferredSize() 173 type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) { in GetPreferredSize() 198 if (type_ == ExtensionInstalledBubble::PAGE_ACTION || in Layout() 199 type_ == ExtensionInstalledBubble::OMNIBOX_KEYWORD) { in Layout() 226 ExtensionInstalledBubble::BubbleType type_; member in InstalledBubbleContent 252 type_ = OMNIBOX_KEYWORD; in ExtensionInstalledBubble() 254 type_ = BROWSER_ACTION; in ExtensionInstalledBubble() [all …]
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest-test-part.h | 64 : type_(a_type), in TestPartResult() 72 Type type() const { return type_; } in type() 89 bool passed() const { return type_ == kSuccess; } in passed() 92 bool failed() const { return type_ != kSuccess; } in failed() 95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed() 98 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed() 100 Type type_;
|
/external/protobuf/gtest/include/gtest/ |
D | gtest-test-part.h | 63 : type_(type), in TestPartResult() 71 Type type() const { return type_; } in type() 88 bool passed() const { return type_ == kSuccess; } in passed() 91 bool failed() const { return type_ != kSuccess; } in failed() 94 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed() 97 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed() 99 Type type_;
|
/external/gtest/include/gtest/ |
D | gtest-test-part.h | 64 : type_(a_type), in TestPartResult() 72 Type type() const { return type_; } in type() 89 bool passed() const { return type_ == kSuccess; } in passed() 92 bool failed() const { return type_ != kSuccess; } in failed() 95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed() 98 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed() 100 Type type_;
|
/external/chromium/testing/gtest/include/gtest/ |
D | gtest-test-part.h | 64 : type_(a_type), in TestPartResult() 72 Type type() const { return type_; } in type() 89 bool passed() const { return type_ == kSuccess; } in passed() 92 bool failed() const { return type_ != kSuccess; } in failed() 95 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed() 98 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed() 100 Type type_;
|
/external/chromium/net/base/ |
D | static_cookie_policy.h | 40 : type_(StaticCookiePolicy::ALLOW_ALL_COOKIES) { in StaticCookiePolicy() 44 : type_(type) { in StaticCookiePolicy() 49 void set_type(Type type) { type_ = type; } in set_type() 50 Type type() const { return type_; } in type() 66 Type type_;
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | candidate.h | 49 type_(type), network_name_(network_name), generation_(generation) {} in Candidate() 80 const std::string & type() const { return type_; } in type() 81 void set_type(const std::string & type) { type_ = type; } in set_type() 111 (type_ == c.type_) && in IsEquivalent() 117 ost << "Cand[" << name_ << ":" << type_ << ":" << protocol_ << ":" in ToString() 130 std::string type_; variable
|
/external/chromium/chrome/browser/content_settings/ |
D | content_settings_details.h | 27 type_(type), in ContentSettingsDetails() 37 ContentSettingsType type() const { return type_; } in type() 47 return CONTENT_SETTINGS_TYPE_DEFAULT == type_; in update_all_types() 52 ContentSettingsType type_; variable
|
/external/chromium/chrome/browser/ui/tabs/ |
D | dock_info.h | 62 DockInfo() : type_(NONE), window_(NULL), in_enable_area_(false) {} in DockInfo() 125 void set_type(Type type) { type_ = type; } in set_type() 126 Type type() const { return type_; } in type() 162 return type_ == other.type_ && window_ == other.window_ && in equals() 179 Type type_; variable
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
D | extension_installed_bubble_gtk.cc | 77 type_ = OMNIBOX_KEYWORD; in ExtensionInstalledBubbleGtk() 79 type_ = BROWSER_ACTION; in ExtensionInstalledBubbleGtk() 82 type_ = PAGE_ACTION; in ExtensionInstalledBubbleGtk() 84 type_ = GENERIC; in ExtensionInstalledBubbleGtk() 127 if (type_ == BROWSER_ACTION) { in ShowInternal() 151 } else if (type_ == PAGE_ACTION) { in ShowInternal() 163 } else if (type_ == OMNIBOX_KEYWORD) { in ShowInternal() 230 if (type_ == PAGE_ACTION) { in ShowInternal() 238 if (type_ == OMNIBOX_KEYWORD) { in ShowInternal() 267 if (type_ == OMNIBOX_KEYWORD) { in ShowInternal() [all …]
|
/external/chromium/chrome/browser/translate/ |
D | translate_infobar_delegate.cc | 87 if (type_ == AFTER_TRANSLATE) in SetOriginalLanguage() 96 if (type_ == AFTER_TRANSLATE) in SetTargetLanguage() 200 if (type_ == TRANSLATING) { in GetMessageInfoBarText() 205 DCHECK_EQ(TRANSLATION_ERROR, type_); in GetMessageInfoBarText() 232 if (type_ != TRANSLATION_ERROR) { in GetMessageInfoBarButtonText() 233 DCHECK_EQ(TRANSLATING, type_); in GetMessageInfoBarButtonText() 244 DCHECK_EQ(TRANSLATION_ERROR, type_); in MessageInfoBarButtonPressed() 259 DCHECK_EQ(BEFORE_TRANSLATE, type_); in ShouldShowNeverTranslateButton() 265 DCHECK_EQ(BEFORE_TRANSLATE, type_); in ShouldShowAlwaysTranslateButton() 313 type_(type), in TranslateInfoBarDelegate() [all …]
|
/external/chromium/chrome/browser/speech/ |
D | speech_input_bubble_controller_unittest.cc | 38 VLOG(1) << "MockSpeechInputBubble invoking delegate for type " << type_; in InvokeDelegate() 39 switch (type_) { in InvokeDelegate() 53 type_ = type; in set_type() 56 return type_; in type() 65 static BubbleType type_; member in speech_input::MockSpeechInputBubble 170 MockSpeechInputBubble::BubbleType MockSpeechInputBubble::type_ = member in speech_input::MockSpeechInputBubble
|