Searched defs:default (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dripseg.asm4 default abs label
20 default rel label
H A Dimm64.asm2 default abs label
19 mov qword [rax], label1 ; 32-bit imm (matches default above)
20 mov qword [rax], label2 ; 32-bit imm (matches default above)
25 add rax, label1 ; 32-bit imm (matches default above)
26 add rax, label2 ; 32-bit imm (matches default above)
H A Driprel1.asm3 default abs label
35 default rel label
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600GenRegisterInfo.pl131 default: assert(!"Unknown register"); return 0; label
147 default: assert(!"Unknown register"); return 0; label
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600GenRegisterInfo.pl131 default: assert(!"Unknown register"); return 0; label
147 default: assert(!"Unknown register"); return 0; label
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dparameter.rb5 Parameter = Struct.new( :name, :default )
10 elsif default then "#{ name } = #{ default }"
19 def self.default singleton method in class:ANTLR3.Template.ParameterList
21 p.default = '{}'
32 def add( name, default = nil )
39 default = options[ :default ] and param.default = default
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dendtoend_with_external_server.py57 default=_DEFAULT_WEB_SOCKET_PORT, variable in class:EndToEndTestWithExternalServer
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dgenerate_ad_network_hashes.py99 default='hashed_ad_networks') variable
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dserialization.py26 def default(self, obj): # pylint: disable=E0202 member in class:Encoder
69 return json.JSONEncoder.default(self, obj)
/external/chromium_org/tools/metrics/histograms/
H A Dupdate_use_counter_css.py59 default=False, variable
/external/compiler-rt/lib/dfsan/scripts/
H A Dbuild-libc-list.py38 default='/lib/x86_64-linux-gnu') variable
41 default='/usr/lib/x86_64-linux-gnu') variable
45 default='/lib/x86_64-linux-gnu') variable
48 default='/usr/lib/gcc/x86_64-linux-gnu/4.6') variable
55 default='/usr/lib/x86_64-linux-gnu') variable
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/
H A Dalerts.py18 def default(self, obj): member in class:DateTimeEncoder
21 # Let the base class default method raise the TypeError.
22 return json.JSONEncoder.default(self, obj)
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py99 def default(self, paths): member in class:Writer
100 self._line('default %s' % ' '.join(self._as_list(paths)))
/external/blktrace/doc/
H A Dblktrace.tex123 debug /sys/kernel/debug debugfs default 0 0
193 By default, \emph{btrace} runs the trace in quiet mode so it will not
360 \emph{local} directory. The format of the file names is (by default)
371 \item The default behaviour for blktrace is to run forever until explicitly killed by the user (via a control-C, or \emph{kill} utility invocation). There are two ways to modify this:
440 \item By default, blkparse expects to run in a post-processing mode
454 \emph{-b} option, the default is to handle events in batches of 512.
463 By default, blkparse sends formatted data to standard output. This may
475 -i \emph{file} & --input=\emph{file} & Specifies base name for input files -- default is \emph{device}.blktrace.\emph{cpu}. \\
653 \subsubsection{\label{sec:default-output}Default output}
682 The default outpu
[all...]
/external/chromium_org/build/config/linux/
H A Dpkg-config.py105 default='pkg-config') variable
/external/chromium_org/third_party/simplejson/
H A Dencoder.py78 Supports the following objects and types by default:
99 ``.default()`` method with another method that returns a serializable
108 indent=None, separators=None, encoding='utf-8', default=None,
138 for each level of nesting. ``None`` (the default) selects the most compact
144 tuple. The default is (', ', ': '). To get the most compact JSON
147 If specified, default is a function that gets called for objects
153 The default is UTF-8.
155 If use_decimal is true (not the default), ``decimal.Decimal`` will
159 If namedtuple_as_object is true (the default), objects with
162 If tuple_as_array is true (the default), tupl
195 def default(self, o): member in class:JSONEncoder
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtemplate.rb286 Parameter = Struct.new( :name, :default )
289 default ? "#{ name } = #{ default }" : "#{ name }"
296 def self.default singleton method in class:ParameterList
298 p.default = '{}'
316 default = options[ :default ] and param.default = default
/external/chromium_org/ppapi/generators/
H A Didl_gen_pnacl.py22 default='temp_pnacl_shim.c') variable
H A Didl_thunk.py23 default=os.path.join('..', 'thunk')) variable
175 """Returns the default failure value for a given type.
177 Returns None if no default failure value exists for the type.
327 raise TGenError('There is no default value for rtype %s. '
/external/chromium_org/third_party/skia/tools/
H A Dsvndiff.py229 # Validate parameters, filling in default values if necessary and possible.
321 action='store', type='string', default=None,
326 action='store', type='string', default=None,
332 default=os.path.join('expectations', 'gm'), variable
334 'files; defaults to "%default"')
/external/chromium_org/tools/usb_gadget/
H A Dserver.py27 default = default_gadget.DefaultGadget() variable
136 if gadget != default:
137 SwitchGadget(default)
143 SwitchGadget(default)
H A Dusb_descriptors.py49 def AddField(cls, name, struct_fmt, str_fmt='{}', default=None):
56 If no default value is provided then the constructor will through an
63 default: Default value.
67 cls._fields.append(Field(name, str_fmt, struct_fmt, default is None))
76 assert default is not None
77 return default
139 All fields which do not have a default value and are not fixed or computed
203 DeviceDescriptor.AddField('bcdUSB', 'H', default=0x0200, str_fmt='0x{:04X}')
205 default=usb_constants.DeviceClass.PER_INTERFACE) variable in class:DeviceDescriptor
207 default variable
209 default=usb_constants.DeviceProtocol.PER_INTERFACE) variable
[all...]
/external/skia/tools/
H A Dsvndiff.py229 # Validate parameters, filling in default values if necessary and possible.
321 action='store', type='string', default=None,
326 action='store', type='string', default=None,
332 default=os.path.join('expectations', 'gm'), variable
334 'files; defaults to "%default"')
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dwebrequest.js119 default:
131 * @param {string=} opt_defaultType The default response type, if none is
154 * @param {string=} opt_defaultType The default response type, if none is
184 * @param {string=} opt_defaultType The default response type, if none is
245 default:
378 * of the raw challenge. If none is provided, a default hash function is
/external/chromium_org/third_party/cython/src/Tools/
H A Dcython-mode.el73 (defcustom cython-default-compile-format "cython -a %s"
74 "Format for the default command to compile a Cython file.
259 (format cython-default-compile-format (shell-quote-argument buffer-file-name)))

Completed in 1400 milliseconds

12