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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
__init__.py 11 __revision__ = "$Id$"
debug.py 3 __revision__ = "$Id$"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
__init__.py 6 __revision__ = "$Id$"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
__init__.py 11 __revision__ = "$Id$"
debug.py 3 __revision__ = "$Id$"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
__init__.py 6 __revision__ = "$Id$"
  /external/chromium_org/sync/syncable/
syncable_id.cc 17 ostream& operator<<(ostream& out, const Id& id) {
18 out << id.s_;
22 base::StringValue* Id::ToValue() const {
26 string Id::GetServerId() const {
34 Id Id::CreateFromServerId(const string& server_id) {
35 Id id; local
37 id.s_ = "r"
44 Id id; local
55 Id id = *this; local
62 Id id; local
    [all...]
syncable_id.h 30 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:
41 // 1. c<client only opaque id> for client items that have not been committed.
43 // 3. s<server provided opaque id> for items that the server knows about.
44 class SYNC_EXPORT Id {
48 inline Id() : s_("r") { }
49 inline Id(const Id& that)
    [all...]
syncable_id_unittest.cc 23 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::CreateFromServerId("z5"))
    [all...]
syncable_proto_util.cc 11 syncable::Id SyncableIdFromProto(const std::string& proto_string) {
12 return syncable::Id::CreateFromServerId(proto_string);
15 std::string SyncableIdToProto(const syncable::Id& syncable_id) {
  /external/chromium/chrome/browser/sync/syncable/
syncable_id.cc 16 const Id kNullId; // Currently == root.
18 ostream& operator<<(ostream& out, const Id& id) {
19 out << id.s_;
23 StringValue* Id::ToValue() const {
27 string Id::GetServerId() const {
35 Id Id::CreateFromServerId(const string& server_id) {
36 Id id; local
45 Id id; local
56 Id id = *this; local
63 Id id; local
    [all...]
syncable_id.h 20 class Id;
28 std::ostream& operator<<(std::ostream& out, const Id& id);
30 // For historical reasons, 3 concepts got everloaded into the Id:
37 // 1. c<client only opaque id> for client items that have not been committed.
39 // 3. s<server provided opaque id> for items that the server knows about.
40 class Id {
44 friend std::ostream& operator<<(std::ostream& out, const Id& id);
50 inline Id() : s_("r") {
    [all...]
syncable_id_unittest.cc 23 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::CreateFromServerId("z5"))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
panel.py 6 __revision__ = "$Id$"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
panel.py 6 __revision__ = "$Id$"
  /external/clang/include/clang/Driver/
Types.h 19 enum ID {
21 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) TY_##ID,
27 /// getTypeName - Return the name of the type for \p Id.
28 const char *getTypeName(ID Id);
30 /// getPreprocessedType - Get the ID of the type for this input when
33 ID getPreprocessedType(ID Id);
    [all...]
  /external/clang/test/SemaTemplate/
alias-nested-nontag.cpp 3 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/clang/lib/Driver/
Phases.cpp 16 const char *phases::getPhaseName(ID Id) {
17 switch (Id) {
25 llvm_unreachable("Invalid phase id.");
Types.cpp 23 ID PreprocessedType;
27 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) \
34 static const TypeInfo &getInfo(unsigned id) {
35 assert(id > 0 && id - 1 < numTypes && "Invalid Type ID.");
36 return TypeInfos[id - 1];
39 const char *types::getTypeName(ID Id) {
40 return getInfo(Id).Name
    [all...]
  /external/chromium_org/cc/output/
renderer.cc 9 bool Renderer::HaveCachedResourcesForRenderPassId(RenderPass::Id id) const {
  /external/chromium_org/sync/test/engine/
test_syncable_utils.h 20 class Id;
27 const syncable::Id& parent_id,
30 // Get the first entry ID with name in a parent. The entry *must* exist.
31 Id GetFirstEntryWithName(BaseTransaction* rtrans,
32 const syncable::Id& parent_id,
36 // Return the Id.
37 Id GetOnlyEntryWithName(BaseTransaction* rtrans,
38 const syncable::Id& parent_id,
test_id_factory.h 22 // Get the root ID.
23 static syncable::Id root() {
24 return syncable::Id();
27 // Make an ID from a number. If the number is zero, return the root ID.
28 // If the number is positive, create a server ID based on the value. If
29 // the number is negative, create a local ID based on the value. This
31 static syncable::Id FromNumber(int64 value) {
35 return syncable::Id::CreateFromClientString(base::Int64ToString(value));
37 return syncable::Id::CreateFromServerId(base::Int64ToString(value))
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncproto.h 26 syncable::Id id() const { function in class:browser_sync::IdWrapper
27 return syncable::Id::CreateFromServerId(Base::id_string());
29 void set_id(const syncable::Id& id) {
30 Base::set_id_string(id.GetServerId());
43 void set_parent_id(const syncable::Id& id) {
44 set_parent_id_string(id.GetServerId());
46 syncable::Id parent_id() const
    [all...]
process_commit_response_command.h 17 class Id;
39 const syncable::Id& pre_commit_id,
40 std::set<syncable::Id>* conflicting_new_directory_ids,
41 std::set<syncable::Id>* deleted_folders);
49 const syncable::Id& pre_commit_id, syncable::MutableEntry* local_entry,
50 bool syncing_was_set, std::set<syncable::Id>* deleted_folders);
57 const syncable::Id& pre_commit_id,
60 // If the server generated an ID for us during a commit, apply the new ID.
64 const syncable::Id& pre_commit_id
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_menu_manager.h 36 // An Id uniquely identifies a context menu item registered by an extension.
37 struct Id {
38 Id();
39 Id(Profile* profile, const std::string& extension_id, int uid);
40 ~Id();
42 bool operator==(const Id& other) const;
43 bool operator!=(const Id& other) const;
44 bool operator<(const Id& other) const;
103 ExtensionMenuItem(const Id& id,
114 const Id& id() const { return id_; } function in class:ExtensionMenuItem
    [all...]

Completed in 304 milliseconds

1 2 3 4 5 6 7 8 91011>>