Searched refs:Id (Results 1 - 25 of 380) sorted by relevance

1234567891011>>

/external/clang/test/SemaTemplate/
H A Dalias-nested-nontag.cpp3 template<typename T> using Id = T; // expected-note {{type alias template 'Id' declared here}}
4 struct U { static Id<int> V; };
5 Id<int> ::U::V; // expected-error {{type 'Id<int>' (aka 'int') cannot be used prior to '::' because it has no members}}
/external/chromium_org/sync/syncable/
H A Dsyncable_id.cc17 ostream& operator<<(ostream& out, const Id& id) {
22 base::StringValue* Id::ToValue() const {
26 string Id::GetServerId() const {
34 Id Id::CreateFromServerId(const string& server_id) {
35 Id id;
43 Id Id::CreateFromClientString(const string& local_id) {
44 Id id;
52 Id I
[all...]
H A Dsyncable_id.h30 class Id;
32 SYNC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& out, const Id& id);
34 // For historical reasons, 3 concepts got everloaded into the Id:
44 class SYNC_EXPORT Id { class in namespace:syncer::syncable
48 inline Id() : s_("r") { } function in class:syncer::syncable::Id
49 inline Id(const Id& that) { function in class:syncer::syncable::Id
52 inline Id& operator = (const Id& that) {
56 inline void Copy(const Id
[all...]
H A Dsyncable_id_unittest.cc23 vector<Id> v;
31 v.push_back(Id::CreateFromServerId("-5"));
32 v.push_back(Id::CreateFromClientString("A"));
33 v.push_back(Id::CreateFromServerId("A"));
35 for (vector<Id>::iterator i = v.begin(); i != v.end(); ++i) {
36 for (vector<Id>::iterator j = v.begin(); j != i; ++j) {
40 Id copy1 = *i;
41 Id copy2 = *i;
47 vector<Id> v;
48 v.push_back(Id
[all...]
H A Dsyncable_proto_util.cc11 syncable::Id SyncableIdFromProto(const std::string& proto_string) {
12 return syncable::Id::CreateFromServerId(proto_string);
15 std::string SyncableIdToProto(const syncable::Id& syncable_id) {
H A Dsyncable_proto_util.h19 // Converts from a specially formatted string field to a syncable::Id. Used
21 syncable::Id SyncableIdFromProto(const std::string& proto_string);
23 // Converts from a syncable::Id to a formatted std::string. This is useful for
26 const syncable::Id& syncable_id);
H A Dsyncable_util.h25 class Id;
30 const Id& new_id);
33 const Id& id,
34 const Id& parentid);
H A Dmutable_entry.h29 const Id& parent_id, const std::string& name);
32 MutableEntry(WriteTransaction* trans, CreateNewUpdateItem, const Id& id);
34 const Id& parent_id, const std::string& name);
36 MutableEntry(WriteTransaction* trans, GetById, const Id&);
49 void PutParentId(const Id& value);
60 bool PutPredecessor(const Id& predecessor_id);
/external/clang/include/clang/Driver/
H A DTypes.h27 /// getTypeName - Return the name of the type for \p Id.
28 const char *getTypeName(ID Id);
33 ID getPreprocessedType(ID Id);
37 const char *getTypeTempSuffix(ID Id, bool CLMode = false);
40 bool onlyAssembleType(ID Id);
43 bool onlyPrecompileType(ID Id);
48 bool canTypeBeUserSpecified(ID Id);
53 bool appendSuffixForType(ID Id);
58 bool canLipoType(ID Id);
61 bool isAcceptedByClang(ID Id);
[all...]
H A DPhases.h30 const char *getPhaseName(ID Id);
/external/clang/lib/Driver/
H A DPhases.cpp16 const char *phases::getPhaseName(ID Id) { argument
17 switch (Id) {
H A DTypes.cpp39 const char *types::getTypeName(ID Id) { argument
40 return getInfo(Id).Name;
43 types::ID types::getPreprocessedType(ID Id) { argument
44 return getInfo(Id).PreprocessedType;
47 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { argument
48 if (Id == TY_Object && CLMode)
50 if (Id == TY_Image && CLMode)
52 if (Id == TY_PP_Asm && CLMode)
54 return getInfo(Id).TempSuffix;
57 bool types::onlyAssembleType(ID Id) { argument
61 onlyPrecompileType(ID Id) argument
65 canTypeBeUserSpecified(ID Id) argument
69 appendSuffixForType(ID Id) argument
73 canLipoType(ID Id) argument
80 isAcceptedByClang(ID Id) argument
103 isObjC(ID Id) argument
116 isCXX(ID Id) argument
184 types::ID Id = (types::ID) (i + 1); local
194 getCompilationPhases(ID Id, llvm::SmallVectorImpl<phases::ID> &P) argument
217 lookupCXXTypeForCType(ID Id) argument
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/
H A Dtypes.h16 typedef uint32_t Id; typedef in namespace:mojo
19 // example, the Id for a view consists of the ConnectionSpecificId of the
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview_manager_client_impl.h40 Id CreateView();
41 void DestroyView(Id view_id);
46 void AddChild(Id child_id, Id parent_id);
47 void RemoveChild(Id child_id, Id parent_id);
49 void Reorder(Id view_id, Id relative_view_id, OrderDirection direction);
52 bool OwnsView(Id id) const;
54 void SetBounds(Id view_i
[all...]
H A Dview_manager_client_impl.cc26 Id MakeTransportId(ConnectionSpecificId connection_id,
34 Id view_id,
141 Id ViewManagerClientImpl::CreateView() {
143 const Id view_id = MakeTransportId(connection_id_, ++next_id_);
148 void ViewManagerClientImpl::DestroyView(Id view_id) {
153 void ViewManagerClientImpl::AddChild(Id child_id, Id parent_id) {
158 void ViewManagerClientImpl::RemoveChild(Id child_id, Id parent_id) {
164 Id view_i
[all...]
/external/chromium_org/sync/test/engine/
H A Dtest_id_factory.h23 static syncable::Id root() {
24 return syncable::Id();
31 static syncable::Id FromNumber(int64 value) {
35 return syncable::Id::CreateFromClientString(base::Int64ToString(value));
37 return syncable::Id::CreateFromServerId(base::Int64ToString(value));
41 static syncable::Id MakeLocal(std::string name) {
42 return syncable::Id::CreateFromClientString(std::string("lient ") + name);
46 static syncable::Id MakeServer(std::string name) {
47 return syncable::Id::CreateFromServerId(std::string("erver ") + name);
51 syncable::Id NewLocalI
[all...]
H A Dtest_syncable_utils.h21 class Id;
28 const syncable::Id& parent_id,
32 Id GetFirstEntryWithName(BaseTransaction* rtrans,
33 const syncable::Id& parent_id,
37 // Return the Id.
38 Id GetOnlyEntryWithName(BaseTransaction* rtrans,
39 const syncable::Id& parent_id,
/external/clang/test/PCH/
H A Dpr18806.cpp13 using Id = T;
23 template <typename B, typename = Id<decltype(B())>>
/external/chromium_org/mojo/services/window_manager/
H A Dwindow_manager_service_impl.h22 void NotifyViewFocused(Id new_focused_id, Id old_focused_id);
23 void NotifyWindowActivated(Id new_active_id, Id old_active_id);
27 virtual void SetCapture(Id view,
29 virtual void FocusWindow(Id view,
32 Id view,
H A Dwindow_manager_service_impl.cc29 void WindowManagerServiceImpl::NotifyViewFocused(Id new_focused_id,
30 Id old_focused_id) {
34 void WindowManagerServiceImpl::NotifyWindowActivated(Id new_active_id,
35 Id old_active_id) {
43 Id view,
52 Id view,
61 Id view,
H A Dwindow_manager_api_unittest.cc52 typedef base::Callback<void(Id, Id)>
72 Id old_capture_node_id,
73 Id new_capture_node_id) MOJO_OVERRIDE {
76 Id old_focused_node_id,
77 Id new_focused_node_id) MOJO_OVERRIDE {
82 Id old_active_window,
83 Id new_active_window) MOJO_OVERRIDE {
160 typedef std::pair<Id, Id> TwoId
[all...]
/external/chromium_org/mojo/services/view_manager/
H A Dtest_change_tracker.h40 Id parent_id;
41 Id view_id;
55 Id view_id;
56 Id view_id2;
57 Id view_id3;
107 void OnViewBoundsChanged(Id view_id, RectPtr old_bounds, RectPtr new_bounds);
108 void OnViewHierarchyChanged(Id view_id,
109 Id new_parent_id,
110 Id old_parent_id,
112 void OnViewReordered(Id view_i
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp2-0x.cpp8 template<typename T> using Id = T; // expected-note {{declared here}}
19 template struct Y<Id>; // expected-note {{requested here}}
/external/lzma/CPP/7zip/Common/
H A DMethodProps.h14 PROPID Id; member in struct:CProp
20 CMethodId Id; member in struct:CMethod
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_util_unittest.cc64 InputMethodDescriptor pinyin_ime(Id(pinyin_ime_id),
90 std::string Id(const std::string& id) { function in class:chromeos::input_method::InputMethodUtilTest
102 return InputMethodDescriptor(Id(id),
268 EXPECT_TRUE(util_.IsValidInputMethodId(Id("xkb:us:colemak:eng")));
269 EXPECT_TRUE(util_.IsValidInputMethodId(Id(pinyin_ime_id)));
275 EXPECT_FALSE(InputMethodUtil::IsKeyboardLayout(Id(pinyin_ime_id)));
283 EXPECT_EQ("us", util_.GetKeyboardLayoutName(Id(pinyin_ime_id)));
284 EXPECT_EQ("es", util_.GetKeyboardLayoutName(Id("xkb:es::spa")));
285 EXPECT_EQ("es(cat)", util_.GetKeyboardLayoutName(Id("xkb:es:cat:cat")));
286 EXPECT_EQ("gb(extd)", util_.GetKeyboardLayoutName(Id("xk
[all...]

Completed in 8575 milliseconds

1234567891011>>