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

1 2

  /external/chromium_org/ppapi/c/
ppb_var_dictionary.h 98 struct PP_Var (*GetKeys)(struct PP_Var dict);
  /external/chromium_org/ppapi/cpp/
var_dictionary.h 88 VarArray GetKeys() const;
var_dictionary.cc 99 VarArray VarDictionary::GetKeys() const {
104 get_interface<PPB_VarDictionary_1_0>()->GetKeys(var_));
  /external/chromium_org/ppapi/thunk/
ppb_var_dictionary_thunk.cc 61 PP_Var GetKeys(PP_Var dict) {
67 return dict_var->GetKeys();
76 &GetKeys
  /external/chromium_org/ppapi/api/
ppb_var_dictionary.idl 89 PP_Var GetKeys([in] PP_Var dict);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_var_dictionary_interface.h 24 virtual PP_Var GetKeys(PP_Var dict);
fake_var_dictionary_interface.cc 88 PP_Var FakeVarDictionaryInterface::GetKeys(PP_Var var) {
  /external/chromium_org/ppapi/shared_impl/
dictionary_var.h 41 PP_Var GetKeys() const;
dictionary_var.cc 78 PP_Var DictionaryVar::GetKeys() const {
  /external/chromium_org/sync/engine/
apply_control_data_updates.cc 164 cryptographer->GetKeys(new_nigori->mutable_encryption_keybag());
174 cryptographer->GetKeys(new_nigori->mutable_encryption_keybag());
179 cryptographer->GetKeys(new_nigori->mutable_encryption_keybag());
apply_control_data_updates_unittest.cc 85 other_cryptographer.GetKeys(nigori->mutable_encryption_keybag());
152 cryptographer->GetKeys(nigori->mutable_encryption_keybag());
268 other_cryptographer.GetKeys(nigori->mutable_encryption_keybag());
329 other_cryptographer.GetKeys(server_nigori->mutable_encryption_keybag());
345 cryptographer->GetKeys(local_nigori->mutable_encryption_keybag());
407 other_cryptographer.GetKeys(server_nigori->mutable_encryption_keybag());
423 cryptographer->GetKeys(local_nigori->mutable_encryption_keybag());
483 cryptographer->GetKeys(server_nigori->mutable_encryption_keybag());
497 cryptographer->GetKeys(local_nigori->mutable_encryption_keybag());
554 other_cryptographer.GetKeys(server_nigori->mutable_encryption_keybag())
    [all...]
  /external/chromium_org/sync/util/
cryptographer.h 105 bool GetKeys(sync_pb::EncryptedData* encrypted) const;
cryptographer.cc 142 bool Cryptographer::GetKeys(sync_pb::EncryptedData* encrypted) const {
cryptographer_unittest.cc 164 EXPECT_TRUE(cryptographer.GetKeys(&nigori));
  /external/lldb/include/lldb/Interpreter/
PythonDataObjects.h 219 GetKeys () const;
  /external/chromium_org/sync/internal_api/
sync_encryption_handler_impl_unittest.cc 211 other_cryptographer.GetKeys(nigori.mutable_encryption_keybag());
314 other_cryptographer.GetKeys(nigori.mutable_encryption_keybag());
547 GetCryptographer()->GetKeys(
566 other_cryptographer.GetKeys(old_nigori.mutable_encryption_keybag());
739 other_cryptographer.GetKeys(nigori.mutable_encryption_keybag());
796 other_cryptographer.GetKeys(nigori.mutable_encryption_keybag());
    [all...]
sync_encryption_handler_impl.cc 548 cryptographer->GetKeys(&encrypted);
    [all...]
sync_manager_impl_unittest.cc 910 cryptographer->GetKeys(nigori.mutable_encryption_keybag());
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/var_dictionary/
var_dictionary.cc 26 static const char kGetKeysCommand[] = "GetKeys";
123 PostResult(kGetKeysCommand, dictionary_.GetKeys());
example.js 61 common.naclModule.postMessage({cmd: 'GetKeys'});
  /external/chromium_org/extensions/browser/api/storage/
storage_api.cc 142 std::vector<std::string> GetKeys(const base::DictionaryValue& dict) {
203 ValueStore::ReadResult result = storage->Get(GetKeys(*as_dict));
  /external/chromium_org/ppapi/tests/
test_post_message.cc 110 if (expected_dict.GetKeys().GetLength() !=
111 actual_dict.GetKeys().GetLength()) {
114 for (uint32_t i = 0; i < expected_dict.GetKeys().GetLength(); ++i) {
115 pp::Var key = expected_dict.GetKeys().Get(i);
554 ss << dictionary.GetKeys().GetLength();
    [all...]
  /external/lldb/source/Interpreter/
PythonDataObjects.cpp 383 PythonDictionary::GetKeys () const
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/
all_interfaces.h 120 METHOD1(VarDictionaryInterface, PP_Var, GetKeys, PP_Var)
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
js_fs_test.cc 280 PP_Var var_keys = dict_if->GetKeys(var);
378 PP_Var var_keys = dict_if->GetKeys(var);
379 PP_Var expected_keys = dict_if->GetKeys(expected);

Completed in 559 milliseconds

1 2