HomeSort by relevance Sort by last modified time
    Searched defs:assign (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/mesa3d/src/glsl/
ir_mod_to_fract.cpp 67 ir_assignment *assign; local
70 assign = new(ir) ir_assignment(new(ir) ir_dereference_variable(temp),
72 this->base_ir->insert_before(assign);
lower_texture_projection.cpp 68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL); local
69 base_ir->insert_before(assign);
ir_expression_flattening.cpp 75 ir_assignment *assign; local
86 assign = new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var),
89 base_ir->insert_before(assign);
ir_variable_refcount.h 42 ir_assignment *assign; /* An assignment to the variable, if any */ member in class:variable_entry
  /external/webkit/Source/WebKit/chromium/public/
WebDocument.h 62 WebNode::assign(e);
65 void assign(const WebDocument& e) { WebNode::assign(e); } function in class:WebKit::WebDocument
WebDocumentType.h 52 WebNode::assign(e);
55 void assign(const WebDocumentType& e) { WebNode::assign(e); } function in class:WebKit::WebDocumentType
WebElement.h 49 WebElement& operator=(const WebElement& e) { WebNode::assign(e); return *this; }
50 void assign(const WebElement& e) { WebNode::assign(e); } function in class:WebKit::WebElement
WebFormControlElement.h 51 WebElement::assign(e);
54 void assign(const WebFormControlElement& e) { WebElement::assign(e); } function in class:WebKit::WebFormControlElement
WebInputElement.h 50 WebFormControlElement::assign(element);
53 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); } function in class:WebKit::WebInputElement
WebLabelElement.h 51 WebElement::assign(element);
55 void assign(const WebLabelElement& element) { WebElement::assign(element); } function in class:WebKit::WebLabelElement
WebOptionElement.h 51 WebFormControlElement::assign(element);
54 void assign(const WebOptionElement& element) { WebFormControlElement::assign(element); } function in class:WebKit::WebOptionElement
WebPluginDocument.h 51 WebNode::assign(e);
54 void assign(const WebPluginDocument& d) { WebNode::assign(d); } function in class:WebKit::WebPluginDocument
WebSelectElement.h 52 WebFormControlElement::assign(element);
55 void assign(const WebSelectElement& element) { WebFormControlElement::assign(element); } function in class:WebKit::WebSelectElement
WebFormElement.h 57 WebElement::assign(element);
60 void assign(const WebFormElement& element) { WebElement::assign(element); } function in class:WebKit::WebFormElement
  /external/webkit/Source/WebKit/chromium/src/
WebAttribute.cpp 48 void WebAttribute::assign(const WebAttribute& other) function in class:WebKit::WebAttribute
WebGeolocationPosition.cpp 35 void WebGeolocationPosition::assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) function in class:WebKit::WebGeolocationPosition
40 void WebGeolocationPosition::assign(const WebGeolocationPosition& other) function in class:WebKit::WebGeolocationPosition
WebNamedNodeMap.cpp 49 void WebNamedNodeMap::assign(const WebNamedNodeMap& other) function in class:WebKit::WebNamedNodeMap
WebNodeList.cpp 46 assign(0);
49 void WebNodeList::assign(const WebNodeList& other) function in class:WebKit::WebNodeList
54 assign(p);
62 void WebNodeList::assign(NodeList* p) function in class:WebKit::WebNodeList
WebThreadSafeData.cpp 45 void WebThreadSafeData::assign(const WebThreadSafeData& other) function in class:WebKit::WebThreadSafeData
WebGeolocationError.cpp 36 void WebGeolocationError::assign(Error code, const WebString& message) function in class:WebKit::WebGeolocationError
41 void WebGeolocationError::assign(const WebGeolocationError& other) function in class:WebKit::WebGeolocationError
WebIDBDatabaseError.cpp 43 void WebIDBDatabaseError::assign(const WebIDBDatabaseError& value) function in class:WebKit::WebIDBDatabaseError
48 void WebIDBDatabaseError::assign(unsigned short code, const WebString& message) function in class:WebKit::WebIDBDatabaseError
WebNodeCollection.cpp 46 assign(0);
49 void WebNodeCollection::assign(const WebNodeCollection& other) function in class:WebKit::WebNodeCollection
54 assign(p);
62 void WebNodeCollection::assign(HTMLCollection* p) function in class:WebKit::WebNodeCollection
  /frameworks/compile/mclinker/lib/Support/
RealPath.cpp 39 RealPath& RealPath::assign(const Path& pPath) function in class:RealPath
41 Path::m_PathName.assign(pPath.native());
  /frameworks/compile/mclinker/lib/MC/
MCLDDirectory.cpp 23 Directory::m_Path.assign(pName);
37 Directory::m_Path.assign(pName);
51 Directory::m_Path.assign(pName.str());
63 MCLDDirectory &MCLDDirectory::assign(llvm::StringRef pName) function in class:MCLDDirectory
65 m_Name.assign(pName.data(), pName.size());
66 Directory::m_Path.assign(pName.str());
  /external/tinyxml/
tinystr.cpp 53 TiXmlString& TiXmlString::assign(const char* str, size_type len) function in class:TiXmlString

Completed in 789 milliseconds

1 2 3 4 5 6 7 8 91011