HomeSort by relevance Sort by last modified time
    Searched refs:bar (Results 101 - 125 of 184) sorted by null

1 2 3 45 6 7 8

  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 87 mockService.bar(EasyMock.same(mockController), EasyMock.same(barRequest),
136 stub.bar(mockController, barRequest, barCallback);
165 assertSame(barResponse, stub.bar(mockController, barRequest));
  /external/gtest/include/gtest/internal/
gtest-internal.h 67 #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
68 #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
290 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
291 // where foo is 5 and bar is 6, we have:
294 // actual_expression: "bar"
744 // For example, if Foo() calls Bar(), which in turn calls
746 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 67 #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
68 #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
285 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
286 // where foo is 5 and bar is 6, we have:
289 // actual_expression: "bar"
743 // For example, if Foo() calls Bar(), which in turn calls
745 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
    [all...]
  /external/v8/test/mjsunit/compiler/
assignment.js 118 function bar() { function
139 bar();
  /external/v8/test/mjsunit/
object-define-properties.js 50 var desc = {foo: {value: 10}, bar: {get: function() {return 42; }}};
56 assertEquals(x.bar, 42);
object-get-own-property-names.js 66 obj.__proto__ = { bar: "bar" };
api-call-after-bypassed-exception.js 32 throw "bar";
apply.js 59 assertEquals("foo", f1.apply(this, new Array("foo", "bar", "baz", "bo")), "5f");
66 assertEquals("foo", f1.apply(null, new Array("foo", "bar", "baz", "bo")), "6f");
73 assertEquals("foo", f1.apply(void 0, new Array("foo", "bar", "ba", "b")), "7f");
108 assertEquals("bar42foofishhorse", s.apply("bar", arr), "apply to string");
new.js 45 assertFalse(x === new Construct('bar'));
stack-traces.js 30 Foo.prototype.bar = function () { FAIL; };
31 (new Foo).bar();
189 testTrace("testMethodNameInference", testMethodNameInference, ["at Foo.bar"]);
json.js 245 assertEquals('"bar"', JSON.stringify(new String("bar")));
247 assertEquals('"foo\\u0000bar"', JSON.stringify("foo\0bar"));
strict-equals.js 46 assertFalse('bar' === 'foo');
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 14 var objectWithSideEffectGetterAndProto = {__proto__:{foo:"bar"}, get b() {this.foo=1;}};
19 arrayWithSideEffectGetterAndProto.__proto__ = {foo:"bar"};
114 return jsonObject.stringify({get Foo() { return "bar"; }});
117 return jsonObject.stringify({get Foo() { this.foo="wibble"; return "bar"; }});
121 jsonObject.stringify({get Foo() { count++; return "bar"; }});
126 return jsonObject.stringify({get Foo() { count++; delete this.bar; return "bar"; }, bar: "wibble"});
  /external/v8/test/message/
try-catch-finally-return-in-finally.js 33 "bar"
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 756 private int bar = 0; field in class:X509CertFactoryImpl.RestoringInputStream
769 return (bar - pos) + inStream.available();
781 bar = 0;
    [all...]
  /frameworks/base/core/java/android/widget/
MediaController.java 309 // cause the progress bar to be updated even if mShowing
311 // paused with the progress bar showing the user hits play.
485 public void onStartTrackingTouch(SeekBar bar) {
498 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
501 // the progress bar's position.
512 public void onStopTrackingTouch(SeekBar bar) {
  /frameworks/base/services/java/com/android/server/
StatusBarManagerService.java 67 // for disabling the status bar
93 * Construct the service, add the status bar view to the window manager
180 throw new SecurityException("invalid status bar icon slot: " + slot);
202 throw new SecurityException("invalid status bar icon slot: " + slot);
229 throw new SecurityException("invalid status bar icon slot: " + slot);
260 // Callbacks from the status bar service.
262 public void registerStatusBar(IStatusBar bar, StatusBarIconList iconList,
266 Slog.i(TAG, "registerStatusBar bar=" + bar);
267 mBar = bar;
    [all...]
  /packages/apps/Music/src/com/android/music/
AudioPreview.java 329 public void onStartTrackingTouch(SeekBar bar) {
332 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
338 public void onStopTrackingTouch(SeekBar bar) {
  /external/qemu/
curses_keys.h 340 { "bar", 0x07c },
  /external/v8/test/cctest/
test-accessors.cc 87 int foo, bar, baz; variable
91 bar = -4;
99 templ->InstanceTemplate()->SetAccessor(v8_str("bar"),
102 v8::External::New(&bar));
108 v8_compile("foo = (++bar) + baz")->Run();
109 CHECK_EQ(bar, -3);
  /external/chromium/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 174 DecimalFormatSymbols bar(foo);
178 if(en != fr || foo != bar) {
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 174 DecimalFormatSymbols bar(foo);
178 if(en != fr || foo != bar) {
  /external/webkit/WebKitTools/simplejson/
encoder.py 338 >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
339 '{"foo":["bar", "baz"]}'
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc 179 // // in "bar.proto"
200 bar_file.set_name("bar.proto");
267 EXPECT_EQ("bar.proto", bar_file_->name());
375 // optional TestEnum bar = 6;
380 // // in "bar.proto"
384 // required string bar = 2;
407 AddField(message, "bar", 6,
421 bar_file.set_name("bar.proto");
428 AddField(message2, "bar", 2,
514 EXPECT_EQ(bar_, message_->FindFieldByName("bar"));
1394 DescriptorProto* bar = AddMessage(&foo_file, "Bar"); local
1730 const FieldDescriptor* bar = message->field(1); local
3721 const FileDescriptor* bar = pool.FindFileByName("bar.proto"); local
3734 const FileDescriptor* bar = pool.FindFileByName("bar.proto"); local
    [all...]
  /external/stlport/test/unit/
list_test.cpp 445 class bar {}; class in namespace:foo
453 list<foo::bar> lbar;

Completed in 613 milliseconds

1 2 3 45 6 7 8