Searched defs:assign (Results 101 - 125 of 215) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocation.cpp225 void Location::assign(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& url) function in class:blink::Location
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingLayerAssigner.cpp51 void CompositingLayerAssigner::assign(RenderLayer* updateRoot, Vector<RenderLayer*>& layersNeedingPaintInvalidation) function in class:blink::CompositingLayerAssigner
53 TRACE_EVENT0("blink", "CompositingLayerAssigner::assign");
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFileSystemCallbacks.cpp71 void WebFileSystemCallbacks::assign(const WebFileSystemCallbacks& other) function in class:blink::WebFileSystemCallbacks
H A DWebHTTPBody.cpp44 assign(static_cast<WebHTTPBodyPrivate*>(FormData::create().leakRef()));
49 assign(0);
52 void WebHTTPBody::assign(const WebHTTPBody& other) function in class:blink::WebHTTPBody
57 assign(p);
85 result.data.assign(element.m_data.data(), element.m_data.size());
176 assign(static_cast<WebHTTPBodyPrivate*>(data.leakRef()));
185 void WebHTTPBody::assign(WebHTTPBodyPrivate* p) function in class:blink::WebHTTPBody
197 assign(static_cast<WebHTTPBodyPrivate*>(m_private->copy().leakRef()));
H A DWebHTTPLoadInfo.cpp50 void WebHTTPLoadInfo::assign(const WebHTTPLoadInfo& r) function in class:blink::WebHTTPLoadInfo
H A DWebMediaStream.cpp154 void WebMediaStream::assign(const WebMediaStream& other) function in class:blink::WebMediaStream
H A DWebServiceWorkerRequest.cpp36 void WebServiceWorkerRequest::assign(const WebServiceWorkerRequest& other) function in class:blink::WebServiceWorkerRequest
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMEvent.cpp43 assign(nullptr);
46 void WebDOMEvent::assign(const WebDOMEvent& other) function in class:blink::WebDOMEvent
51 void WebDOMEvent::assign(const PassRefPtrWillBeRawPtr<Event>& event) function in class:blink::WebDOMEvent
H A DWebIDBKey.cpp84 void WebIDBKey::assign(const WebIDBKey& value) function in class:blink::WebIDBKey
H A DWebPerformance.cpp48 void WebPerformance::assign(const WebPerformance& other) function in class:blink::WebPerformance
H A DWebSecurityOrigin.cpp63 assign(0);
66 void WebSecurityOrigin::assign(const WebSecurityOrigin& other) function in class:blink::WebSecurityOrigin
71 assign(p);
145 assign(static_cast<WebSecurityOriginPrivate*>(origin.leakRef()));
159 void WebSecurityOrigin::assign(WebSecurityOriginPrivate* p) function in class:blink::WebSecurityOrigin
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrivatePtr.h69 void assign(const BlinkPtrType& val) function in class:blink::PtrStorageImpl
75 void assign(const PtrStorageImpl& other) function in class:blink::PtrStorageImpl
98 void assign(const RawPtr<T>& val) function in class:blink::PtrStorageImpl
111 void assign(T* ptr) { assign(RawPtr<T>(ptr)); } function in class:blink::PtrStorageImpl
112 template<typename U> void assign(const RawPtr<U>& val) { assign(RawPtr<T>(val)); } function in class:blink::PtrStorageImpl
114 void assign(const PtrStorageImpl& other) { assign(other.get()); } function in class:blink::PtrStorageImpl
131 void assign(cons function in class:blink::PtrStorageImpl
133 void assign(const PtrStorageImpl& other) { PtrStorageImpl<T, GarbageCollectedLifetime>::assign(other.get()); } function in class:blink::PtrStorageImpl
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_builder.cpp49 assign(deref lhs, operand rhs, int writemask) function in namespace:ir_builder
53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val, local
57 return assign;
61 assign(deref lhs, operand rhs) function in namespace:ir_builder
63 return assign(lhs, rhs, (1 << lhs.val->type->vector_elements) - 1);
H A Dloop_controls.cpp66 ir_assignment *assign = ir->as_assignment(); local
67 ir_variable *assignee = assign->lhs->whole_variable_referenced();
70 return (assign->condition != NULL) ? NULL : assign->rhs;
H A Dlower_if_to_cond_assign.cpp119 ir_assignment *assign = (ir_assignment *)ir; local
121 if (hash_table_find(ht, assign) == NULL) {
122 hash_table_insert(ht, assign, assign);
129 hash_table_find(ht, assign->lhs->variable_referenced()) != NULL;
131 if (!assign->condition) {
133 assign->rhs =
137 assign->rhs);
139 assign->condition = cond_expr->clone(mem_ctx, NULL);
142 assign
174 ir_assignment *assign; local
[all...]
H A Dopt_tree_grafting.cpp344 ir_assignment *assign = ir->as_assignment(); local
346 if (!assign)
349 ir_variable *lhs_var = assign->whole_variable_written();
364 assert(assign == entry->assign);
370 info->progress |= try_tree_grafting(assign, lhs_var, bb_last);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_reg_allocate.cpp37 assign(unsigned int *reg_hw_locations, reg *reg) function in namespace:brw
84 assign(hw_reg_mapping, &inst->dst);
85 assign(hw_reg_mapping, &inst->src[0]);
86 assign(hw_reg_mapping, &inst->src[1]);
87 assign(hw_reg_mapping, &inst->src[2]);
236 assign(hw_reg_mapping, &inst->dst);
237 assign(hw_reg_mapping, &inst->src[0]);
238 assign(hw_reg_mapping, &inst->src[1]);
239 assign(hw_reg_mapping, &inst->src[2]);
/external/llvm/include/llvm/ADT/
H A DSmallString.h37 // Note that in order to add new overloads for append & assign, we have to
45 void assign(size_t NumElts, char Elt) { function in class:llvm::SmallString
46 this->SmallVectorImpl<char>::assign(NumElts, Elt);
51 void assign(in_iter S, in_iter E) { function in class:llvm::SmallString
57 void assign(StringRef RHS) { function in class:llvm::SmallString
63 void assign(const SmallVectorImpl<char> &RHS) { function in class:llvm::SmallString
/external/mesa3d/src/glsl/
H A Dir_builder.cpp49 assign(deref lhs, operand rhs, int writemask) function in namespace:ir_builder
53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.val, local
57 return assign;
61 assign(deref lhs, operand rhs) function in namespace:ir_builder
63 return assign(lhs, rhs, (1 << lhs.val->type->vector_elements) - 1);
H A Dloop_controls.cpp66 ir_assignment *assign = ir->as_assignment(); local
67 ir_variable *assignee = assign->lhs->whole_variable_referenced();
70 return (assign->condition != NULL) ? NULL : assign->rhs;
H A Dlower_if_to_cond_assign.cpp119 ir_assignment *assign = (ir_assignment *)ir; local
121 if (hash_table_find(ht, assign) == NULL) {
122 hash_table_insert(ht, assign, assign);
129 hash_table_find(ht, assign->lhs->variable_referenced()) != NULL;
131 if (!assign->condition) {
133 assign->rhs =
137 assign->rhs);
139 assign->condition = cond_expr->clone(mem_ctx, NULL);
142 assign
174 ir_assignment *assign; local
[all...]
H A Dopt_tree_grafting.cpp344 ir_assignment *assign = ir->as_assignment(); local
346 if (!assign)
349 ir_variable *lhs_var = assign->whole_variable_written();
364 assert(assign == entry->assign);
370 info->progress |= try_tree_grafting(assign, lhs_var, bb_last);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_reg_allocate.cpp37 assign(unsigned int *reg_hw_locations, reg *reg) function in namespace:brw
84 assign(hw_reg_mapping, &inst->dst);
85 assign(hw_reg_mapping, &inst->src[0]);
86 assign(hw_reg_mapping, &inst->src[1]);
87 assign(hw_reg_mapping, &inst->src[2]);
236 assign(hw_reg_mapping, &inst->dst);
237 assign(hw_reg_mapping, &inst->src[0]);
238 assign(hw_reg_mapping, &inst->src[1]);
239 assign(hw_reg_mapping, &inst->src[2]);
/external/aac/libAACenc/src/
H A Dchannel_map.cpp229 const INT *assign = FDKaacEnc_getChannelAssignment(mode, co); local
237 elInfo->ChannelIndex[0]=assign[counter++];
243 elInfo->ChannelIndex[0]=assign[counter++];
244 elInfo->ChannelIndex[1]=assign[counter++];
/external/chromium_org/base/memory/
H A Dscoped_vector.h93 void assign(InputIterator begin, InputIterator end) { function in class:ScopedVector
94 v_.assign(begin, end);

Completed in 286 milliseconds

123456789