OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:string
(Results
2826 - 2850
of
27455
) sorted by null
<<
111
112
113
114
115
116
117
118
119
120
>>
/external/chromium_org/crypto/
encryptor.h
8
#include <
string
>
68
bool Encrypt(const base::StringPiece& plaintext, std::
string
* ciphertext);
79
bool Decrypt(const base::StringPiece& ciphertext, std::
string
* plaintext);
120
std::
string
* output);
123
std::
string
* output);
124
std::
string
iv_;
128
std::
string
* output);
131
std::
string
* output);
random_unittest.cc
14
bool IsTrivial(const std::
string
& bytes) {
24
std::
string
bytes(16, '\0');
sha2.h
8
#include <
string
>
21
// Computes the SHA-256 hash of the input
string
'str' and stores the first
28
//
string
.
29
CRYPTO_EXPORT std::
string
SHA256HashString(const base::StringPiece& str);
symmetric_key.h
8
#include <
string
>
49
const std::
string
& password,
50
const std::
string
& salt,
58
static SymmetricKey* Import(Algorithm algorithm, const std::
string
& raw_key);
61
const std::
string
& key() { return key_; }
71
bool GetRawKey(std::
string
* raw_key);
76
std::
string
key_;
90
std::
string
raw_key_;
/external/chromium_org/device/test/
usb_test_gadget.h
8
#include <
string
>
38
virtual std::
string
GetSerialNumber() const = 0;
/external/chromium_org/extensions/browser/api/storage/
leveldb_settings_storage_factory.h
16
const std::
string
& extension_id) OVERRIDE;
19
const std::
string
& extension_id) OVERRIDE;
value_store_cache.h
8
#include <
string
>
52
virtual void DeleteStorageSoon(const std::
string
& extension_id) = 0;
weak_unlimited_settings_storage.h
24
virtual size_t GetBytesInUse(const std::
string
& key) OVERRIDE;
25
virtual size_t GetBytesInUse(const std::vector<std::
string
>& keys) OVERRIDE;
27
virtual ReadResult Get(const std::
string
& key) OVERRIDE;
28
virtual ReadResult Get(const std::vector<std::
string
>& keys) OVERRIDE;
32
const std::
string
& key,
36
virtual WriteResult Remove(const std::
string
& key) OVERRIDE;
37
virtual WriteResult Remove(const std::vector<std::
string
>& keys) OVERRIDE;
40
virtual bool RestoreKey(const std::
string
& key) OVERRIDE;
/external/chromium_org/extensions/browser/
extension_pref_store.h
8
#include <
string
>
25
virtual void OnPrefValueChanged(const std::
string
& key) OVERRIDE;
extension_protocols.h
8
#include <
string
>
27
const std::
string
& content_security_policy,
/external/chromium_org/extensions/browser/value_store/
testing_value_store.h
31
virtual size_t GetBytesInUse(const std::
string
& key) OVERRIDE;
32
virtual size_t GetBytesInUse(const std::vector<std::
string
>& keys) OVERRIDE;
34
virtual ReadResult Get(const std::
string
& key) OVERRIDE;
35
virtual ReadResult Get(const std::vector<std::
string
>& keys) OVERRIDE;
39
const std::
string
& key,
43
virtual WriteResult Remove(const std::
string
& key) OVERRIDE;
44
virtual WriteResult Remove(const std::vector<std::
string
>& keys) OVERRIDE;
49
virtual bool RestoreKey(const std::
string
& key) OVERRIDE;
/external/chromium_org/extensions/common/features/
manifest_feature.h
8
#include <
string
>
25
virtual std::
string
Parse(const base::DictionaryValue* value) OVERRIDE;
permission_feature.h
8
#include <
string
>
25
virtual std::
string
Parse(const base::DictionaryValue* value) OVERRIDE;
/external/chromium_org/extensions/common/
manifest_handler_helpers.h
8
#include <
string
>
24
bool NormalizeAndValidatePath(std::
string
* path);
manifest_handler_unittest.cc
5
#include <
string
>
23
std::vector<std::
string
> SingleKey(const std::
string
& key) {
24
return std::vector<std::
string
>(1, key);
48
void Record(const std::
string
& name) {
52
const std::vector<std::
string
>& parsed_names() {
57
bool ParsedBefore(const std::
string
& name_before,
58
const std::
string
& name_after) {
74
std::vector<std::
string
> parsed_names_;
79
TestManifestHandler(const std::
string
& name
[
all
...]
/external/chromium_org/extensions/renderer/
module_system.h
10
#include <
string
>
48
const std::
string
& name) = 0;
49
virtual bool Contains(const std::
string
& name) = 0;
58
// Formats |try_catch| as a nice
string
.
59
std::
string
CreateExceptionString(const v8::TryCatch& try_catch);
79
v8::Handle<v8::Value> Require(const std::
string
& module_name);
84
v8::Handle<v8::Value> RunString(v8::Handle<v8::
String
> code,
85
v8::Handle<v8::
String
> name);
89
v8::Local<v8::Value> CallModuleMethod(const std::
string
& module_name,
90
const std::
string
& method_name)
[
all
...]
module_system_test.h
26
void RegisterModule(const std::
string
& name, const std::
string
& code);
29
void RegisterModule(const std::
string
& name, int resource_id);
34
void OverrideNativeHandler(const std::
string
& name, const std::
string
& code);
38
void RegisterTestFile(const std::
string
& module_name,
39
const std::
string
& file_name);
42
v8::Handle<v8::Object> CreateGlobal(const std::
string
& name);
/external/chromium_org/extensions/shell/common/
shell_content_client_unittest.cc
7
#include <
string
>
19
std::
string
user_agent = client.GetUserAgent();
21
// Must start with the usual Mozilla-compatibility
string
.
shell_extensions_client.h
25
virtual const std::
string
GetProductName() OVERRIDE;
27
const std::
string
& name) const OVERRIDE;
29
const std::
string
& name) const OVERRIDE;
41
std::
string
* error) const OVERRIDE;
42
virtual bool IsAPISchemaGenerated(const std::
string
& name) const OVERRIDE;
44
const std::
string
& name) const OVERRIDE;
47
virtual std::
string
GetWebstoreBaseURL() const OVERRIDE;
48
virtual std::
string
GetWebstoreUpdateURL() const OVERRIDE;
/external/chromium_org/extensions/test/
test_extensions_client.h
22
virtual const std::
string
GetProductName() OVERRIDE;
24
const std::
string
& name) const OVERRIDE;
26
const std::
string
& name) const OVERRIDE;
38
std::
string
* error) const OVERRIDE;
39
virtual bool IsAPISchemaGenerated(const std::
string
& name) const OVERRIDE;
41
const std::
string
& name) const OVERRIDE;
44
virtual std::
string
GetWebstoreBaseURL() const OVERRIDE;
45
virtual std::
string
GetWebstoreUpdateURL() const OVERRIDE;
/external/chromium_org/gpu/config/
gpu_control_list_number_info_unittest.cc
21
const std::
string
op[] = {
31
std::
string
value1;
32
std::
string
value2;
41
const std::
string
value[] = {
50
FloatInfo info("=", value[i], std::
string
());
56
const std::
string
op[] = {
64
FloatInfo info(op[i], std::
string
(), std::
string
());
68
FloatInfo info("between", "3.14", std::
string
());
71
const std::
string
value[] =
[
all
...]
/external/chromium_org/ipc/
ipc_channel_factory.h
8
#include <
string
>
27
virtual std::
string
GetName() const = 0;
/external/chromium_org/jingle/notifier/base/
notification_method.cc
13
std::
string
NotificationMethodToString(
30
NotificationMethod StringToNotificationMethod(const std::
string
& str) {
notifier_options.h
8
#include <
string
>
42
std::
string
auth_mechanism;
/external/chromium_org/jingle/notifier/listener/
send_ping_task_unittest.cc
28
std::
string
task_id = "42";
32
std::
string
expected_xml_string("<cli:iq type=\"get\" id=\"");
Completed in 1288 milliseconds
<<
111
112
113
114
115
116
117
118
119
120
>>