HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3026 - 3050 of 27455) sorted by null

<<121122123124125126127128129130>>

  /external/chromium_org/chrome/browser/devtools/device/adb/
adb_device_info_query.cc 77 const BrowserDescriptor* FindBrowserDescriptor(const std::string& package) {
85 typedef std::map<std::string, std::string> StringMap;
87 static void MapProcessesToPackages(const std::string& response,
94 std::vector<std::string> entries;
97 std::vector<std::string> fields;
101 std::string pid = fields[1];
102 std::string package = fields[8];
108 static StringMap MapSocketsToProcesses(const std::string& response,
109 const std::string& channel_pattern)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
blacklist_unittest.cc 22 std::set<std::string> Set(const std::string& a) {
23 std::set<std::string> set;
27 std::set<std::string> Set(const std::string& a, const std::string& b) {
28 std::set<std::string> set = Set(a);
32 std::set<std::string> Set(const std::string& a,
33 const std::string& b
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 27 R.string.default_priority, Notification.PRIORITY_DEFAULT);
30 new SimplePriorityPreset(R.string.min_priority, Notification.PRIORITY_MIN),
31 new SimplePriorityPreset(R.string.low_priority, Notification.PRIORITY_LOW),
33 new SimplePriorityPreset(R.string.high_priority, Notification.PRIORITY_HIGH),
34 new SimplePriorityPreset(R.string.max_priority, Notification.PRIORITY_MAX)
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 27 R.string.default_priority, Notification.PRIORITY_DEFAULT);
30 new SimplePriorityPreset(R.string.min_priority, Notification.PRIORITY_MIN),
31 new SimplePriorityPreset(R.string.low_priority, Notification.PRIORITY_LOW),
33 new SimplePriorityPreset(R.string.high_priority, Notification.PRIORITY_HIGH),
34 new SimplePriorityPreset(R.string.max_priority, Notification.PRIORITY_MAX)
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
PriorityPresets.java 27 R.string.default_priority, Notification.PRIORITY_DEFAULT);
30 new SimplePriorityPreset(R.string.min_priority, Notification.PRIORITY_MIN),
31 new SimplePriorityPreset(R.string.low_priority, Notification.PRIORITY_LOW),
33 new SimplePriorityPreset(R.string.high_priority, Notification.PRIORITY_HIGH),
34 new SimplePriorityPreset(R.string.max_priority, Notification.PRIORITY_MAX)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 59 readonly string[] HeaderLines =
70 const string Footer = "}";
71 const string NodeFormat = " {0} [label=\"{1}\"];";
72 const string EdgeFormat = " {0} -> {1} // \"{2}\" -> \"{3}\"";
95 public virtual string ToDot( object tree, ITreeAdaptor adaptor )
98 foreach ( string line in HeaderLines )
120 public virtual string ToDot( ITree tree )
124 protected virtual IEnumerable<string> DefineNodes( object tree, ITreeAdaptor adaptor )
150 protected virtual IEnumerable<string> DefineEdges( object tree, ITreeAdaptor adaptor )
163 string parentName = "n" + GetNodeNumber( tree )
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 57 readonly string[] HeaderLines =
68 const string Footer = "}";
69 const string NodeFormat = " {0} [label=\"{1}\"];";
70 const string EdgeFormat = " {0} -> {1} // \"{2}\" -> \"{3}\"";
93 public virtual string ToDot(object tree, ITreeAdaptor adaptor) {
95 foreach (string line in HeaderLines)
117 public virtual string ToDot(ITree tree) {
120 protected virtual IEnumerable<string> DefineNodes(object tree, ITreeAdaptor adaptor) {
143 protected virtual IEnumerable<string> DefineEdges(object tree, ITreeAdaptor adaptor) {
154 string parentName = "n" + GetNodeNumber(tree)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 59 readonly string[] HeaderLines =
70 const string Footer = "}";
71 const string NodeFormat = " {0} [label=\"{1}\"];";
72 const string EdgeFormat = " {0} -> {1} // \"{2}\" -> \"{3}\"";
95 public virtual string ToDot( object tree, ITreeAdaptor adaptor )
98 foreach ( string line in HeaderLines )
120 public virtual string ToDot( ITree tree )
124 protected virtual IEnumerable<string> DefineNodes( object tree, ITreeAdaptor adaptor )
150 protected virtual IEnumerable<string> DefineEdges( object tree, ITreeAdaptor adaptor )
163 string parentName = "n" + GetNodeNumber( tree )
    [all...]
  /external/chromium_org/android_webview/common/
aw_content_client.cc 17 std::string GetProduct() {
28 std::string GetUserAgent() {
30 std::string product = "Version/4.0 " + GetProduct();
38 std::string AwContentClient::GetProduct() const {
42 std::string AwContentClient::GetUserAgent() const {
  /external/chromium_org/ash/shell/
shelf_delegate_impl.h 30 virtual ShelfID GetShelfIDForAppID(const std::string& app_id) OVERRIDE;
31 virtual const std::string& GetAppIDForShelfID(ShelfID id) OVERRIDE;
32 virtual void PinAppWithID(const std::string& app_id) OVERRIDE;
33 virtual bool IsAppPinned(const std::string& app_id) OVERRIDE;
35 virtual void UnpinAppWithID(const std::string& app_id) OVERRIDE;
  /external/chromium_org/base/files/
important_file_writer.h 8 #include <string>
46 // Should put serialized string in |data| and return true on successful
49 virtual bool SerializeData(std::string* data) = 0;
58 const std::string& data);
81 void WriteNow(const std::string& data);
109 bool PostWriteTask(const std::string& data);
  /external/chromium_org/base/json/
json_reader.h 18 // UTF-8 string for the JSONReader::JsonToValue() function may start with a
22 // Unicode string (converted from the input UTF-8 string) before parsing it.
31 #include <string>
77 // String versions of parse error codes.
96 // instance. If |json| is not a properly formed JSON string, returns NULL.
111 std::string* error_msg_out);
114 // Returns an empty string if error_code is JSON_NO_ERROR.
115 static std::string ErrorCodeToString(JsonParseError error_code);
117 // Parses an input string into a Value that is owned by the caller
    [all...]
  /external/chromium_org/base/metrics/
histogram_delta_serialization.h 8 #include <string>
24 // |caller_name| is string used in histograms for counting inconsistencies.
25 explicit HistogramDeltaSerialization(const std::string& caller_name);
32 void PrepareAndSerializeDeltas(std::vector<std::string>* serialized_deltas);
37 const std::vector<std::string>& serialized_deltas);
53 std::vector<std::string>* serialized_deltas_;
  /external/chromium_org/base/process/
internal_linux.h 39 bool ReadProcStats(pid_t pid, std::string* buffer);
44 bool ParseProcStats(const std::string& stats_data,
45 std::vector<std::string>* proc_stats);
66 int64 GetProcStatsFieldAsInt64(const std::vector<std::string>& proc_stats,
70 size_t GetProcStatsFieldAsSizeT(const std::vector<std::string>& proc_stats,
  /external/chromium_org/base/threading/
thread_id_name_manager.h 9 #include <string>
43 typedef std::map<PlatformThreadHandle::Handle, std::string*>
45 typedef std::map<std::string, std::string*> NameToInternedNameMap;
59 std::string* main_process_name_;
  /external/chromium_org/chrome/browser/apps/app_shim/
app_shim_handler_mac.h 8 #include <string>
33 virtual std::string GetAppId() const = 0;
40 static void RegisterHandler(const std::string& app_mode_id,
44 static void RemoveHandler(const std::string& app_mode_id);
49 static AppShimHandler* GetForAppMode(const std::string& app_mode_id);
  /external/chromium_org/chrome/browser/apps/
ephemeral_app_browsertest.h 8 #include <string>
42 const std::string& app_id,
49 void CloseAppWaitForUnload(const std::string& app_id);
50 void CloseApp(const std::string& app_id);
51 void EvictApp(const std::string& app_id);
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_quota_helper.h 9 #include <string>
41 explicit QuotaInfo(const std::string& host);
42 QuotaInfo(const std::string& host,
54 std::string host;
67 virtual void RevokeHostQuota(const std::string& host) = 0;
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_profile_loader.h 8 #include <string>
36 KioskProfileLoader(const std::string& app_user_id,
54 virtual void WhiteListCheckFailed(const std::string& email) OVERRIDE;
57 const std::string& email, bool success) OVERRIDE;
62 std::string user_id_;
  /external/chromium_org/chrome/browser/chromeos/drive/
file_task_executor.h 8 #include <string>
42 FileTaskExecutor(Profile* profile, const std::string& app_id);
46 const std::string& app_id);
56 void OnAppAuthorized(const std::string& resource_id,
64 std::string app_id_;
  /external/chromium_org/chrome/browser/chromeos/extensions/file_system_provider/
provider_function.h 8 #include <string>
45 base::DictionaryValue* CreateError(const std::string& name,
46 const std::string& message);
89 void SetErrorResponse(const std::string& name, const std::string& message);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_watcher.h 9 #include <string>
43 void AddExtension(const std::string& extension_id);
48 void RemoveExtension(const std::string& extension_id);
52 std::vector<std::string> GetExtensionIds() const;
77 typedef std::map<std::string, int> ExtensionCountMap;
  /external/chromium_org/chrome/browser/chromeos/input_method/
component_extension_ime_manager_impl.h 32 const std::string& extension_id,
33 const std::string& manifest,
36 const std::string& extension_id,
45 // Parses manifest string to manifest json dictionary value.
47 const std::string& manifest_string);
52 const std::string& extension_id,
  /external/chromium_org/chrome/browser/chromeos/login/
login_manager_test.h 8 #include <string>
41 void RegisterUser(const std::string& user_id);
57 void LoginUser(const std::string& user_id);
60 void AddUser(const std::string& user_id);
64 void JSExpect(const std::string& expression);
  /external/chromium_org/chrome/browser/chromeos/login/screens/
host_pairing_screen.h 34 virtual std::string GetName() const OVERRIDE;
39 const std::string& lang,
40 const std::string& timezone,
42 const std::string& keyboard_layout) OVERRIDE;
43 virtual void EnrollHost(const std::string& auth_token) OVERRIDE;

Completed in 1060 milliseconds

<<121122123124125126127128129130>>