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

123456789

/external/valgrind/memcheck/tests/
H A Ddemangle.cpp5 class def { class in namespace:abc
19 return (new abc::def<int,typeof(*this)>)->xyzzy(p, 0);
/external/flatbuffers/tests/FlatBuffers.Test/
H A DTestTable.cs32 public bool GetSlot(int slot, bool def) argument
38 return def;
43 public sbyte GetSlot(int slot, sbyte def) argument
49 return def;
54 public byte GetSlot(int slot, byte def) argument
60 return def;
65 public short GetSlot(int slot, short def) argument
71 return def;
76 public ushort GetSlot(int slot, ushort def) argument
82 return def;
87 GetSlot(int slot, int def) argument
98 GetSlot(int slot, uint def) argument
109 GetSlot(int slot, long def) argument
120 GetSlot(int slot, ulong def) argument
131 GetSlot(int slot, float def) argument
142 GetSlot(int slot, double def) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUConfig.java58 * @param def The default value
60 * exist, <code>def</code> is returned.
62 public static String get(String name, String def) { argument
82 val = CONFIG_PROPS.getProperty(name, def);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUConfig.java56 * @param def The default value
58 * exist, <code>def</code> is returned.
60 public static String get(String name, String def) { argument
80 val = CONFIG_PROPS.getProperty(name, def);
/external/messageformat/java/com/ibm/icu/impl/
H A DICUConfig.java50 * @param def The default value
52 * exist, <code>def</code> is returned.
54 public static String get(String name, String def) { argument
73 val = CONFIG_PROPS.getProperty(name, def);
/external/clang/test/CodeGen/
H A D2002-02-17-ArgumentAddress.c8 int def(int Y, int Z) { function
/external/libbrillo/brillo/
H A Dmap_utils.h62 const typename T::mapped_type& def) {
65 return def;
59 GetOrDefault( const T& map, typename T::key_type key, const typename T::mapped_type& def) argument
/external/protobuf/php/ext/google/protobuf/
H A Dprotobuf.c14 void add_def_obj(const void* def, zval* value) { argument
15 uint nIndex = (ulong)def & PROTOBUF_G(upb_def_to_php_obj_map).nTableMask;
19 zend_hash_index_update(&PROTOBUF_G(upb_def_to_php_obj_map), (zend_ulong)def,
23 zval* get_def_obj(const void* def) { argument
25 if (zend_hash_index_find(&PROTOBUF_G(upb_def_to_php_obj_map), (zend_ulong)def,
/external/squashfs-tools/squashfs-tools/
H A Dread_file.c48 char *def, *err, *line = NULL; local
127 for(def = line; isspace(*def); def ++);
130 if(*def == '\0')
134 if(*def == '#')
137 res = parse_line(def);
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetSubtargetInfo.h62 virtual void adjustSchedDependency(SUnit *def, SUnit *use, argument
/external/testng/src/main/java/org/testng/internal/annotations/
H A DConverter.java18 public static boolean getBoolean(String tagValue, boolean def) { argument
19 boolean result = def;
26 public static int getInt(String tagValue, int def) { argument
27 int result = def;
34 public static String getString(String tagValue, String def) { argument
35 String result = def;
42 public static long getLong(String tagValue, long def) { argument
43 long result = def;
50 public static String[] getStringArray(String tagValue, String[] def) { argument
51 String[] result = def;
59 getClassArray(String tagValue, Class[] def) argument
[all...]
/external/testng/src/main/java/org/testng/xml/
H A DXmlUtils.java14 public static void setProperty(Properties p, String name, String value, String def) { argument
15 if (! def.equals(value) && value != null) {
/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/libvpx/libvpx/
H A Dargs.h24 const struct arg_def *def; member in struct:arg
49 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
H A D5-2.c169 char *def = "Default"; local
174 stri = def;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.h39 bool *def; member in struct:brw::block_data
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.c38 // This is a hash table from def objects (encoded by converting pointers to
45 void add_def_obj(const void* def, VALUE value) { argument
46 rb_hash_aset(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def), value);
49 VALUE get_def_obj(const void* def) { argument
50 return rb_hash_aref(upb_def_to_ruby_obj_map, ULL2NUM((intptr_t)def));
/external/syslinux/com32/chain/
H A Doptions.c46 addr_t def)
53 offval = def;
54 ipval = def;
173 opt.sect = true; /* by def. load sector */
174 opt.maps = true; /* by def. map sector */
175 opt.hand = true; /* by def. prepare handover */
176 opt.brkchain = false; /* by def. do chainload */
177 opt.piflags = PIF_STRICT; /* by def. be strict, but ignore disk sizes */
42 soi_s2n(char *ptr, addr_t *seg, addr_t *off, addr_t *ip, addr_t def) argument
/external/testng/src/main/java/org/testng/internal/
H A DTestNGProperty.java16 public TestNGProperty(String clName, String name, String doc, String def) { argument
17 init(clName, name, doc, def);
20 public TestNGProperty(String name, String doc, String def) { argument
21 init(name, name, doc, def);
24 private void init(String clName, String name, String doc, String def) { argument
28 m_default = def;
/external/v8/src/zone/
H A Dzone-containers.h36 // having the value {def}.
37 ZoneVector(size_t size, T def, Zone* zone) argument
38 : std::vector<T, zone_allocator<T>>(size, def, zone_allocator<T>(zone)) {}
/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);
/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/clang/test/PCH/
H A Dcxx1y-variable-templates.cpp45 template<typename T> extern T def;
95 template<typename T> extern T def;
140 template<typename T> T def = T(); member in namespace:join::diff_types
/external/freetype/include/freetype/
H A Dftmm.h129 /* def :: The axis's default design coordinate. */
145 /* The fields `minimum', `def', and `maximum' are 16.16 fractional */
154 FT_Fixed def; member in struct:FT_Var_Axis_

Completed in 733 milliseconds

123456789