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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/panels/
panel_collection.cc 8 : type_(type) {
  /external/chromium_org/ppapi/shared_impl/
socket_option_data.cc 9 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/
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_;
ConstructorAPI.java 21 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/
cpp_type_generator.py 16 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_value)
    [all...]
h_generator.py 120 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...]
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_path.cc 15 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_) {
  /external/chromium_org/ui/v2/public/
event.h 22 EventType type() const { return type_; };
25 EventType type_; member in class:v2::Event
  /external/chromium_org/ui/events/
gesture_event_details.h 22 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/
token.cc 9 Token::Token() : type_(INVALID), value_() {
15 : type_(t),
21 return type_ == IDENTIFIER && value_ == v;
25 return type_ == STRING && value_ == v;
value.h 49 Type type() const { return type_; }
59 DCHECK(type_ == BOOLEAN);
63 DCHECK(type_ == BOOLEAN);
68 DCHECK(type_ == INTEGER);
72 DCHECK(type_ == INTEGER);
77 DCHECK(type_ == STRING);
81 DCHECK(type_ == STRING);
86 DCHECK(type_ == LIST);
90 DCHECK(type_ == LIST);
95 DCHECK(type_ == SCOPE)
122 Type type_; member in class:Value
    [all...]
  /external/clang/test/SemaCXX/
windows-arm-valist.cpp 9 template <typename type_>
10 struct is_same<type_, type_> { enum { value = 1 }; };
  /external/chromium_org/chrome/browser/extensions/
crx_installer_error.h 22 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/
static_cookie_policy.h 31 : 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/
screencastid.h 26 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/
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...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_library_view.cpp 16 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/
test_util.cc 28 : type_(CONNECTION_WIFI) {
32 type_ = type;
38 return type_;
  /external/chromium_org/cc/resources/
ui_resource_request.cc 11 : type_(type), id_(id) {}
16 : type_(type), id_(id), bitmap_(new UIResourceBitmap(bitmap)) {}
24 type_ = request.type_;
  /external/chromium_org/sync/engine/
directory_commit_contributor.cc 17 type_(type),
26 type_,
  /external/chromium_org/components/sync_driver/
proxy_data_type_controller.cc 14 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/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/chromium_org/third_party/mesa/src/src/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/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/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

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>