Searched defs:entry (Results 76 - 100 of 1572) sorted by relevance

1234567891011>>

/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc23 void FileNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { argument
25 DCHECK(entry.source().IsValid());
27 const char* source = NetLog::SourceTypeToString(entry.source().type);
28 const char* type = NetLog::EventTypeToString(entry.type());
30 scoped_ptr<base::Value> param_value(entry.ParametersToValue());
45 entry.source().id, source, type, params.c_str());
/external/chromium_org/remoting/base/
H A Dvlog_net_log.cc22 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void VlogNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) { argument
36 scoped_ptr<base::Value> value(entry.ToValue());
/external/chromium_org/remoting/client/
H A Dclient_status_logger_unittest.cc36 XmlElement* entry = GetSingleLogEntryFromStanza(arg); local
37 if (!entry) {
42 entry->Attr(QName(std::string(), "event-name")) == "session-state" &&
43 entry->Attr(QName(std::string(), "session-state")) == new_state &&
44 entry->Attr(QName(std::string(), "role")) == "client" &&
45 entry->Attr(QName(std::string(), "mode")) == "me2me");
48 entry->Attr(QName(std::string(), "connection-error")) == error;
54 XmlElement* entry = GetSingleLogEntryFromStanza(arg); local
55 if (!entry) {
59 return entry
[all...]
/external/chromium_org/remoting/signaling/
H A Dlog_to_server.cc47 void LogToServer::Log(const ServerLogEntry& entry) { argument
48 pending_entries_.push_back(entry);
62 ServerLogEntry& entry = pending_entries_.front(); local
63 stanza->AddElement(entry.ToStanza().release());
H A Dlog_to_server_unittest.cc29 XmlElement* entry = GetSingleLogEntryFromStanza(arg); local
30 if (!entry) {
34 return entry->Attr(QName(std::string(), key)) == value;
87 ServerLogEntry entry; local
88 entry.Set("foo", "bar");
89 log_to_server_->Log(entry);
/external/chromium_org/sandbox/win/src/
H A Dhandle_closer_agent.cc49 HandleListEntry* entry = g_handles_to_close->handle_entries; local
52 base::char16* input = entry->handle_type;
54 input = reinterpret_cast<base::char16*>(reinterpret_cast<char*>(entry)
55 + entry->offset_to_names);
57 for (size_t j = 0; j < entry->name_count; ++j) {
64 // Move on to the next entry.
65 entry = reinterpret_cast<HandleListEntry*>(reinterpret_cast<char*>(entry)
66 + entry->record_bytes);
68 DCHECK(reinterpret_cast<base::char16*>(entry) >
[all...]
/external/chromium_org/sync/syncable/
H A Ddeferred_on_disk_directory_backing_store_unittest.cc39 // Test initialization of root entry when calling Load().
91 EntryKernel* entry = new EntryKernel(); local
92 entry->put(ID, Id::CreateFromClientString("test_entry"));
93 entry->put(META_HANDLE, 2);
94 entry->mark_dirty(NULL);
95 snapshot.dirty_metas.insert(entry);
108 EntryKernel* entry = handles_map_[2]; local
109 EXPECT_EQ(Id::CreateFromClientString("test_entry"), entry->ref(ID));
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLEntitySearch.cpp46 HTMLEntitySearch::CompareResult HTMLEntitySearch::compare(const HTMLEntityTableEntry* entry, UChar nextCharacter) const argument
48 if (entry->length < m_currentLength + 1)
50 const LChar* entityString = HTMLEntityTable::entityString(*entry);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUnfoldShortCircuitAST.cpp63 const NodeUpdateEntry& entry = replacements[ii]; local
64 ASSERT(entry.parent);
65 bool replaced = entry.parent->replaceChildNode(
66 entry.original, entry.replacement);
76 if (entry2.parent == entry.original)
77 entry2.parent = entry.replacement;
/external/chromium_org/third_party/boringssl/src/crypto/
H A Ddirectory_posix.c41 int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) { argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_dead_code.cpp53 ir_variable_refcount_entry *entry = (ir_variable_refcount_entry *)iter.get(); local
63 assert(entry->referenced_count >= entry->assigned_count);
67 entry->var->name, (void *) entry->var,
68 entry->referenced_count, entry->assigned_count,
69 entry->declaration ? "" : "not ");
72 if ((entry->referenced_count > entry
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry.c29 #include "entry.h"
92 entry_patch(mapi_func entry, int slot) argument
H A Dentry_x86-64_tls.h89 entry_patch(mapi_func entry, int slot) argument
91 char *code = (char *) entry;
106 mapi_func entry; local
120 entry = (mapi_func) code;
121 entry_patch(entry, slot);
123 return entry;
H A Dentry_x86_tls.h100 char *entry; local
104 for (entry = x86_entry_start; entry < x86_entry_end; entry += 16)
105 memcpy(entry, patch, sizeof(patch));
116 entry_patch(mapi_func entry, int slot) argument
118 char *code = (char *) entry;
131 mapi_func entry; local
140 entry = (mapi_func) code;
141 entry_patch(entry, slo
[all...]
H A Dentry_x86_tsd.h78 entry_patch(mapi_func entry, int slot) argument
80 char *code = (char *) entry;
91 mapi_func entry; local
98 entry = (mapi_func) code;
99 entry_patch(entry, slot);
101 return entry;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_copy_propagation.cpp35 fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry) argument
37 if (inst->src[arg].file != entry->dst.file ||
38 inst->src[arg].reg != entry->dst.reg ||
39 inst->src[arg].reg_offset != entry->dst.reg_offset) {
46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
52 (has_source_modifiers || entry->src.file == UNIFORM))
55 inst->src[arg].file = entry->src.file;
56 inst->src[arg].reg = entry
91 acp_entry *entry = (acp_entry *)entry_node; local
102 acp_entry *entry = (acp_entry *)entry_node; local
124 acp_entry *entry = ralloc(mem_ctx, acp_entry); local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DBitmapHeapTest.cpp28 static int32_t GetRefCount(const SkBitmapHeapEntry* entry) { argument
29 return entry->fRefCount;
59 // The dictionary and heap should now each have one entry.
64 // The bitmap entry's refcount should be 1, then 0 after release.
65 SkBitmapHeapEntry* entry = heap.getEntry(0); local
66 REPORTER_ASSERT(reporter, SkBitmapHeapTester::GetRefCount(entry) == 1);
68 entry->releaseRef();
69 REPORTER_ASSERT(reporter, SkBitmapHeapTester::GetRefCount(entry) == 0);
80 // The dictionary should report the same index since the new entry is identical.
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dskpdiff_util.cpp116 struct dirent* entry; local
117 while ((entry = readdir(dir))) {
120 SkString joinedPath = SkOSPath::Join(path, entry->d_name);
124 entries->push_back(SkString(entry->d_name));
/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache_win32.cc45 Entry* entry = GetOrCreateEntry(id, true); local
46 entry->size += find_data.nFileSizeLow;
48 entry->streams = _max(entry->streams, index + 1);
49 FileTimeToUnixTime(find_data.ftLastWriteTime, &entry->last_modified);
/external/chromium_org/ui/views/
H A Dview_model.cc22 Entry entry; local
23 entry.view = view;
24 entries_.insert(entries_.begin() + index, entry);
43 Entry entry(entries_[index]);
45 entries_.insert(entries_.begin() + target_index, entry);
/external/chromium_org/v8/src/
H A Dcircular-queue-inl.h61 Entry* entry) {
62 Entry* next = entry + 1;
60 Next( Entry* entry) argument
H A Dprofile-generator-inl.h42 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry) argument
44 entry_(entry),
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-schedule.cc39 BasicBlock* entry = schedule.start(); local
40 schedule.AddNode(entry, n0);
41 schedule.AddNode(entry, n1);
43 CHECK_EQ(entry, schedule.block(n0));
44 CHECK_EQ(entry, schedule.block(n1));
56 BasicBlock* entry = schedule.start(); local
59 schedule.AddGoto(entry, next);
61 CHECK_EQ(0, entry->PredecessorCount());
62 CHECK_EQ(1, entry->SuccessorCount());
63 CHECK_EQ(next, entry
75 BasicBlock* entry = schedule.start(); local
106 BasicBlock* entry = schedule.start(); local
120 BasicBlock* entry = schedule.start(); local
[all...]
/external/deqp/framework/randomshaders/
H A DrsgFunctionGenerator.cpp69 const ValueEntry* entry = m_state.getVariableManager().getValue(variable); local
72 valueRange.getMin() = entry->getValueRange().getMin().value();
73 valueRange.getMax() = entry->getValueRange().getMax().value();
75 // Remove value entry from this scope. After this entry ptr is invalid.
/external/guava/guava/src/com/google/common/collect/
H A DWellBehavedMap.java87 @Override public K invert(Map.Entry<K, V> entry) { argument
88 return entry.getKey();

Completed in 516 milliseconds

1234567891011>>