Searched defs:def (Results 1 - 25 of 178) sorted by relevance

12345678

/external/clang/test/CodeGen/
H A D2002-02-17-ArgumentAddress.c8 int def(int Y, int Z) { function
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dparsing.h82 const std::string& def);
85 const char* def);
88 const buzz::QName& name, bool def);
90 const buzz::QName& name, int def);
106 const T& def,
109 *val_out = def;
104 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, const T& def, T* val_out) argument
H A Dparsing.cc57 const std::string& def) {
59 return val.empty() ? def : val;
64 const char* def) {
65 return GetXmlAttr(elem, name, std::string(def));
69 const buzz::QName& name, bool def) {
73 return val.empty() ? def : (val == kTrue || val == kOne);
77 const buzz::QName& name, int def) {
79 return val.empty() ? def : atoi(val.c_str());
55 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, const std::string& def) argument
62 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, const char* def) argument
68 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, bool def) argument
76 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, int def) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h39 bool *def; member in struct:brw::block_data
H A Dbrw_fs_live_variables.cpp43 * Sets up the use[] and def[] arrays.
70 if (!bd[b].def[reg])
77 * variable, and thus qualify for being in def[].
86 bd[b].def[reg] = true;
111 if (bd[b].use[i] || (bd[b].liveout[i] && !bd[b].def[i])) {
144 bd[i].def = rzalloc_array(mem_ctx, bool, num_vars);
169 int *def = ralloc_array(mem_ctx, int, num_vars); local
173 this->virtual_grf_def = def;
177 def[i] = MAX_INSTRUCTION;
199 def[re
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProviders.java82 public static PropertyCategoryProvider def() { method in class:PropertyCategoryProviders
/external/fsck_msdos/
H A Dmain.c132 ask(int def, const char *fmt, ...) argument
141 def = 0;
142 if (def)
144 return def;
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
H A DSAXUtil.java47 * def.
50 * @param def
54 public static int parseInt(String i, int def) throws SAXException{ argument
56 return def;
78 public static float parseFloat(String f, float def) throws SAXException{ argument
80 return def;
102 public static boolean parseBool(String bool, boolean def) throws SAXException{ argument
104 return def;
112 public static String parseString(String str, String def){ argument
114 return def;
[all...]
/external/libvpx/libvpx/
H A Dargs.h21 const struct arg_def *def; member in struct:arg
42 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
/external/llvm/include/llvm/Target/
H A DTargetSubtargetInfo.h75 virtual void adjustSchedDependency(SUnit *def, SUnit *use, argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h39 bool *def; member in struct:brw::block_data
H A Dbrw_fs_live_variables.cpp43 * Sets up the use[] and def[] arrays.
70 if (!bd[b].def[reg])
77 * variable, and thus qualify for being in def[].
86 bd[b].def[reg] = true;
111 if (bd[b].use[i] || (bd[b].liveout[i] && !bd[b].def[i])) {
144 bd[i].def = rzalloc_array(mem_ctx, bool, num_vars);
169 int *def = ralloc_array(mem_ctx, int, num_vars); local
173 this->virtual_grf_def = def;
177 def[i] = MAX_INSTRUCTION;
199 def[re
[all...]
/external/zlib/src/examples/
H A Dzpipe.c31 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
36 int def(FILE *source, FILE *dest, int level) function
186 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION);
H A Dfitblk.c70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def) argument
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
86 ret = deflate(def, flush);
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def) argument
113 def
134 z_stream def, inf; /* zlib deflate and inflate states */ local
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftmm.h127 /* def :: The axis's default design coordinate. */
145 FT_Fixed def; member in struct:FT_Var_Axis_
/external/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.cpp45 inline void radar13224271_callee(Ty def, Ty& result ) { argument
46 result = def;
47 // Clearly indicates that result cannot be 0 if def is not NULL.
48 assert( (result != 0) || (def == 0) );
/external/freetype/include/freetype/
H A Dftmm.h127 /* def :: The axis's default design coordinate. */
145 FT_Fixed def; member in struct:FT_Var_Axis_
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h51 SlotIndex def; member in class:llvm::VNInfo
55 : id(i), def(d)
60 : id(i), def(orig.def)
65 def = src.def;
72 bool isPHIDef() const { return def.isBlock(); }
75 bool isUnused() const { return !def.isValid(); }
78 void markUnused() { def = SlotIndex(); }
230 VNInfo *getNextValue(SlotIndex def, VNInf
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java72 * @param def The element definition object that produced and constrains this element.
74 void setElemDef(XSLTElementDef def) argument
76 m_elemDef = def;
291 XSLTElementDef def = getElemDef();
319 XSLTAttributeDef attrDef = def.getAttributeDef(attrUri, attrLocalName);
355 XSLTAttributeDef[] attrDefs = def.getAttributes();
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dparsing.cc57 const std::string& def) {
59 return val.empty() ? def : val;
64 const char* def) {
65 return GetXmlAttr(elem, name, std::string(def));
69 const buzz::QName& name, bool def) {
73 return val.empty() ? def : (val == kTrue || val == kOne);
77 const buzz::QName& name, int def) {
79 return val.empty() ? def : atoi(val.c_str());
55 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, const std::string& def) argument
62 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, const char* def) argument
68 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, bool def) argument
76 GetXmlAttr(const buzz::XmlElement* elem, const buzz::QName& name, int def) argument
/external/chromium_org/third_party/openssl/openssl/crypto/engine/
H A Dtb_asnmth.c206 static void look_str_cb(int nid, STACK_OF(ENGINE) *sk, ENGINE *def, void *arg) argument
/external/clang/test/SemaTemplate/
H A Dconstructor-template.cpp93 DefaultCtorHasDefaultArg def; local
/external/emma/core/java12/com/vladium/util/
H A DProperty.java197 public static String getSystemProperty (final String key, final String def) argument
201 return System.getProperty (key, def);
205 return def;
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DTechnique.java49 private TechniqueDef def; field in class:Technique
61 * @param def The technique definition being implemented.
63 public Technique(Material owner, TechniqueDef def) { argument
65 this.def = def;
66 if (def.isUsingShaders()) {
86 return def;
115 String defineName = def.getShaderParamDefine(paramName);
128 String defineName = def.getShaderParamDefine(paramName);
186 if (def
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DRmiSerializer.java128 MethodDef def = new MethodDef();
129 def.name = name;
130 def.paramTypes = paramTypes;
131 def.retType = retType;
132 return def;
135 private void writeObjectDef(ByteBuffer buffer, ObjectDef def) throws IOException{ argument
136 buffer.putShort((short)def.objectId);
137 writeString(buffer, def.objectName);
138 Method[] methods = def.methods;
146 ObjectDef def
[all...]

Completed in 8179 milliseconds

12345678