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

1234567891011>>

/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_collection.cc8 : type_(type) {
/external/chromium_org/ppapi/shared_impl/
H A Dsocket_option_data.cc9 SocketOptionData::SocketOptionData() : type_(TYPE_INVALID), value_(0) {}
13 SocketOptionData::Type SocketOptionData::GetType() const { return type_; }
16 if (!out_value || type_ != TYPE_BOOL)
23 if (!out_value || type_ != TYPE_INT32)
30 type_ = TYPE_BOOL;
35 type_ = TYPE_INT32;
/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)
/external/chromium_org/tools/json_schema_compiler/
H A Dcpp_type_generator.py16 def __init__(self, type_, hard=False):
17 self.type_ = type_
21 return '%s.%s' % (self.type_.namespace.name, self.type_.name)
38 def GetEnumNoneValue(self, type_):
42 return '%s_NONE' % self.FollowRef(type_).unix_name.upper()
44 def GetEnumLastValue(self, type_):
48 return '%s_LAST' % self.FollowRef(type_).unix_name.upper()
50 def GetEnumValue(self, type_, enum_valu
[all...]
H A Ddart_generator.py36 # self._types, make a _FindType(self, type_) function that looks at
72 for type_ in self._types.values():
74 override = self._GetOverride([type_.name], document_with=type_)
75 c.Cblock(override if override is not None else self._GenerateType(type_))
95 def _GenerateType(self, type_):
109 if type_.property_type is PropertyType.ENUM:
112 (c.Concat(self._GenerateDocumentation(type_))
118 add_public_constructor = all(not self._IsFunction(p.type_)
119 for p in type_
[all...]
H A Dh_generator.py120 def ExpandType(path, type_):
121 if type_ in path:
123 ", ".join(map(lambda x: x.name, path + [type_])))
124 for prop in type_.properties.values():
125 if (prop.type_ == PropertyType.REF and
127 ExpandType(path + [type_], self._namespace.types[prop.ref_type])
128 if not type_ in dependency_order:
129 dependency_order.append(type_)
131 for type_ in self._namespace.types.values():
132 ExpandType([], type_)
[all...]
H A Dcc_generator.py97 def _GenerateType(self, cpp_namespace, type_):
100 classname = cpp_util.Classname(schema_util.StripNamespace(type_.name))
103 if type_.functions:
107 for function in type_.functions.values():
110 elif type_.property_type == PropertyType.ARRAY:
111 c.Cblock(self._GenerateType(cpp_namespace, type_.item_type))
112 elif type_.property_type in (PropertyType.CHOICES,
119 if type_.property_type == PropertyType.OBJECT:
121 type_.properties.values()))
123 c.Cblock(self._GenerateTypes(classname_in_namespace, type_
[all...]
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_path.cc15 IndexedDBKeyPath::IndexedDBKeyPath() : type_(WebIDBKeyPathTypeNull) {}
18 : type_(WebIDBKeyPathTypeString), string_(string) {}
21 : type_(WebIDBKeyPathTypeArray), array_(array) {}
26 DCHECK(type_ == blink::WebIDBKeyPathTypeArray);
31 DCHECK(type_ == blink::WebIDBKeyPathTypeString);
36 if (type_ != other.type_)
39 switch (type_) {
H A Dindexed_db_key_path.h25 bool IsNull() const { return type_ == blink::WebIDBKeyPathTypeNull; }
28 blink::WebIDBKeyPathType type() const { return type_; }
33 blink::WebIDBKeyPathType type_; member in class:content::IndexedDBKeyPath
/external/chromium_org/ui/events/
H A Dgesture_event_details.h22 EventType type() const { return type_; }
48 DCHECK_EQ(ET_GESTURE_SCROLL_BEGIN, type_);
53 DCHECK_EQ(ET_GESTURE_SCROLL_BEGIN, type_);
58 DCHECK_EQ(ET_GESTURE_SCROLL_UPDATE, type_);
63 DCHECK_EQ(ET_GESTURE_SCROLL_UPDATE, type_);
68 DCHECK_EQ(ET_SCROLL_FLING_START, type_);
73 DCHECK_EQ(ET_SCROLL_FLING_START, type_);
78 DCHECK_EQ(ET_GESTURE_TWO_FINGER_TAP, type_);
83 DCHECK_EQ(ET_GESTURE_TWO_FINGER_TAP, type_);
88 DCHECK_EQ(ET_GESTURE_PINCH_UPDATE, type_);
134 EventType type_; member in struct:ui::GestureEventDetails
[all...]
/external/chromium_org/tools/gn/
H A Dtoken.cc9 Token::Token() : type_(INVALID), value_() {
15 : type_(t),
21 return type_ == IDENTIFIER && value_ == v;
25 return type_ == STRING && value_ == v;
/external/clang/test/SemaCXX/
H A Dwindows-arm-valist.cpp9 template <typename type_>
10 struct is_same<type_, type_> { enum { value = 1 }; };
/external/chromium_org/chrome/browser/extensions/
H A Dcrx_installer_error.h22 CrxInstallerError() : type_(ERROR_NONE) {
26 : type_(message.empty() ? ERROR_NONE : ERROR_OTHER),
31 : type_(type), message_(message) {
34 Type type() const { return type_; }
38 Type type_; member in class:extensions::CrxInstallerError
/external/chromium_org/net/base/
H A Dstatic_cookie_policy.h31 : type_(StaticCookiePolicy::ALLOW_ALL_COOKIES) {
35 : type_(type) {
40 void set_type(Type type) { type_ = type; }
41 Type type() const { return type_; }
53 Type type_; member in class:net::StaticCookiePolicy
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dscreencastid.h26 ScreencastId() : type_(INVALID) {}
28 : type_(WINDOW), window_(id) {
31 : type_(DESKTOP), desktop_(id) {
34 Type type() const { return type_; }
43 if (type_ == INVALID) {
45 } else if (type_ == WINDOW) {
51 bool IsWindow() const { return type_ == WINDOW; }
52 bool IsDesktop() const { return type_ == DESKTOP; }
54 if (type_ != other.type_) {
80 Type type_; member in class:cricket::ScreencastId
[all...]
/external/deqp/framework/platform/android/
H A DtcuAndroidRenderActivity.hpp72 explicit Message (MessageType type_) argument
73 : type(type_)
75 DE_ASSERT(type_ == MESSAGE_RESUME ||
76 type_ == MESSAGE_PAUSE ||
77 type_ == MESSAGE_FINISH);
80 Message (MessageType type_, ANativeWindow* window) argument
81 : type(type_)
83 DE_ASSERT(type_ == MESSAGE_WINDOW_CREATED ||
84 type_ == MESSAGE_WINDOW_DESTROYED ||
85 type_
90 Message(MessageType type_, AInputQueue* inputQueue) argument
99 Message(MessageType type_, de::Semaphore* semaphore) argument
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_library_view.cpp16 if (type_ == TYPE_SYSTEM) {
20 if (type_ == TYPE_CRAZY) {
24 type_ = TYPE_NONE;
28 if (type_ == TYPE_SYSTEM)
31 if (type_ == TYPE_CRAZY) {
44 if (type_ != TYPE_CRAZY) {
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dtest_util.cc28 : type_(CONNECTION_WIFI) {
32 type_ = type;
38 return type_;
/external/chromium_org/cc/resources/
H A Dui_resource_request.cc11 : type_(type), id_(id) {}
16 : type_(type), id_(id), bitmap_(new UIResourceBitmap(bitmap)) {}
24 type_ = request.type_;
/external/chromium_org/sync/engine/
H A Ddirectory_commit_contributor.cc17 type_(type),
26 type_,
/external/chromium_org/ui/v2/public/
H A Devent.h22 EventType type() const { return type_; };
25 EventType type_; member in class:v2::Event
/external/chromium_org/components/sync_driver/
H A Dproxy_data_type_controller.cc14 type_(type) {
15 DCHECK(syncer::ProxyTypes().Has(type_));
29 syncer::SyncMergeResult local_merge_result(type_);
30 syncer::SyncMergeResult syncer_merge_result(type_);
42 DCHECK(syncer::ProxyTypes().Has(type_));
43 return type_;
47 DCHECK(syncer::ProxyTypes().Has(type_));
/external/chromium_org/components/content_settings/core/browser/
H A Dcontent_settings_details.h45 ContentSettingsType type() const { return type_; }
55 return CONTENT_SETTINGS_TYPE_DEFAULT == type_;
61 ContentSettingsType type_; member in class:ContentSettingsDetails
/external/chromium_org/extensions/browser/
H A Dview_type_utils.cc20 explicit ViewTypeUserData(ViewType type) : type_(type) {}
22 ViewType type() { return type_; }
25 ViewType type_; member in class:extensions::__anon8197::ViewTypeUserData

Completed in 1412 milliseconds

1234567891011>>