HomeSort by relevance Sort by last modified time
    Searched refs:argument (Results 76 - 100 of 987) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/
dfg-to-string-toString-in-string.js 34 var argument = new String("hello");
38 argument = new String("hello");
39 argument.toString = function() { return 42; }
42 shouldBe("\"\" + foo(argument)", expected);
dfg-to-string-valueOf-in-string.js 34 var argument = new String("hello");
37 argument = new String("hello");
38 argument.valueOf = function() { return 42; }
40 shouldBe("\"\" + foo(argument)", "\"hello\"");
mod-crash.js 49 function nonSpeculativeModReuseInner(argument, o1, o2)
54 var knownDouble = argument - 0;
57 function nonSpeculativeModReuse(argument)
59 return nonSpeculativeModReuseInner(argument, {}, {});
  /external/e2fsprogs/intl/
printf-args.h 1 /* Decomposed printf argument list.
39 /* Argument types */
77 /* Polymorphic argument */
119 argument; typedef in typeref:struct:__anon4161
124 argument *arg;
  /external/easymock/src/org/easymock/
AbstractMatcher.java 29 * on <code>EasyMock</code>, there are per-argument matchers available. For more
38 * Checks whether an expected argument matches an actual argument; the method
44 * the expected argument.
46 * the actual argument.
54 * Converts an argument to a String, used by
57 * @param argument
58 * the argument to convert to a String.
59 * @return a <code>String</code> representation of the argument.
61 protected String argumentToString(Object argument) {
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
LocalizedMatcher.java 59 public void captureFrom(Object argument) {
61 ((CapturesArguments) actualMatcher).captureFrom(argument);
  /external/skia/platform_tools/nacl/
nacl_make 12 echo "ERROR: setenv() requires one argument."
74 echo "ERROR: build() requires one argument."
  /external/chromium_org/v8/test/mjsunit/
stack-traces-2.js 71 testTraceNativeConversion(String); // Does ToString on argument.
72 testTraceNativeConversion(Number); // Does ToNumber on argument.
73 testTraceNativeConversion(RegExp); // Does ToString on argument.
75 testTraceNativeConstructor(String); // Does ToString on argument.
76 testTraceNativeConstructor(Number); // Does ToNumber on argument.
77 testTraceNativeConstructor(RegExp); // Does ToString on argument.
78 testTraceNativeConstructor(Date); // Does ToNumber on argument.
  /external/chromium_org/third_party/jinja2/
sandbox.py 304 def getitem(self, obj, argument):
307 return obj[argument]
309 if isinstance(argument, string_types):
311 attr = str(argument)
320 if self.is_safe_attribute(obj, argument, value):
322 return self.unsafe_undefined(obj, argument)
323 return self.undefined(obj=obj, name=argument)
352 # the double prefixes are to avoid double keyword argument
  /external/chromium_org/chrome/browser/extensions/api/braille_display_private/
brlapi_keycode_map.cc 15 // Bitmask for all braille dots in a key command argument, which coincides
116 brlapi_keyCode_t argument = code & BRLAPI_KEY_CMD_ARG_MASK; local
140 event->display_position.reset(new int(argument));
144 event->braille_dots.reset(new int(argument & kAllDots));
  /external/chromium_org/chrome/browser/extensions/api/system_private/
system_private_api.cc 49 // Dispatches an extension event with |argument|
50 void DispatchEvent(const std::string& event_name, base::Value* argument) {
52 if (argument) {
53 list_args->Append(argument);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8HTMLAllCollectionCustom.cpp 70 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument, const CallbackInfo& info)
72 v8::Local<v8::Uint32> index = argument->ToArrayIndex();
74 TOSTRING_DEFAULT(V8StringResource<>, name, argument, v8::Undefined(info.GetIsolate()));
108 // If there is a second argument it is the index of the item we want.
  /external/libedit/src/
emacs.c 74 c_delafter(el, el->el_state.argument);
99 el->el_state.argument, ce__isword);
143 if (el->el_state.argument == 1)
267 el->el_state.argument,
290 el->el_state.argument, ce__isword);
314 el->el_state.argument, ce__isword);
346 el->el_state.argument, ce__isword);
391 * Universal argument (argument times 4)
397 { /* multiply current argument by 4 *
    [all...]
  /frameworks/base/cmds/dpm/src/com/android/commands/dpm/
Dpm.java 155 private int parseInt(String argument) {
157 return Integer.parseInt(argument);
159 throw new IllegalArgumentException ("Invalid integer argument '" + argument + "'", e);
  /external/chromium_org/extensions/renderer/resources/
i18n_custom_bindings.js 19 // The first argument is the message, and should be a string.
22 console.warn(extensionId + ': the first argument to getMessage should ' +
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.h 129 // - An index to indicate which one is the input argument
144 // parameters: An array of all input parameters. This argument is normally
146 // count: The number of parameters passed as first argument.
152 // Retrieves a stored argument by index. Valid index values are
155 void GetArgument(size_t index, T* argument) const {
157 *argument = *reinterpret_cast<const T*>(&arguments_[index].mem);
160 // Sets a stored argument by index. Valid index values are
163 void SetArgument(size_t index, const T& argument) {
165 *reinterpret_cast<T*>(&arguments_[index].mem) = argument;
168 // Retrieves the actual address of an string argument. When usin
    [all...]
  /external/clang/test/SemaCXX/
attr-nonnull.cpp 7 // GCC has a hidden 'this' argument in member functions, so the middle
8 // argument is the one that must not be null.
12 expected-error{{invalid for the implicit this argument}}
30 f1(0); // expected-warning{{null passed to a callee which requires a non-null argument}}
31 f2(0, 0); // expected-warning{{null passed to a callee which requires a non-null argument}}
  /external/clang/test/SemaTemplate/
instantiate-call.cpp 28 expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
  /external/libhevc/common/
ithread.h 43 WORD32 ithread_create(void *thread_handle, void *attribute, void *strt, void *argument);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
assert_additions.js 6 * Asserts that a given argument's value is undefined.
7 * @param {object} a The argument to check.
16 * Asserts that the argument is neither null nor undefined.
17 * @param {object} obj The argument to check.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.h 126 void evaluateInOverlay(const String& method, const String& argument);
127 void evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument);
  /external/lldb/tools/debugserver/source/MacOSX/
stack_logging.h 60 uint64_t argument; member in struct:__anon9117
82 unsigned argument; member in struct:__anon9118
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_interface.py 130 'name': argument.name,
132 # 'cpp_type': argument.idl_type.cpp_type_args(raw_type=True),
135 'cpp_type': argument.idl_type.implemented_as + '*',
136 'idl_type': argument.idl_type,
137 'v8_type': v8_types.v8_type(argument.idl_type.name),
138 } for argument in extended_attributes.get('SetWrapperReferenceTo', [])]
349 # with argument count 0.
350 # 2. Return the length of the shortest argument list of the entries in S.
530 An additional argument N (argument count) is needed when overloadin
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasReplayStateView.js 214 * @param {!CanvasAgent.CallArgument|undefined} argument
217 _collectResourceFromCallArgument: function(argument, output)
219 if (!argument)
221 var resourceId = argument.resourceId;
224 this._resourceIdToDescription[resourceId] = argument.description;
225 output.push(argument);
252 var argument = collectedResources[i];
253 while (currentOption && String.naturalOrderComparator(currentOption.text, argument.description) < 0)
255 var option = this._resourceSelector.createOption(argument.description, WebInspector.UIString("Show state of this resource."), argument.resourceId)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 422 printf("%*sargument(): %s\n", indent, "", argument().ascii().data());
459 m_pseudoType = parsePseudoType(value(), !argument().isNull() || selectorList());
582 || sel1->argument() != sel2->argument()) {
638 str.append(cs->argument());
866 String argument = m_argument.lower(); local
868 if (argument.isEmpty())
873 if (argument == "odd") {
876 } else if (argument == "even") {
880 size_t n = argument.find('n')
    [all...]

Completed in 1278 milliseconds

1 2 34 5 6 7 8 91011>>