HomeSort by relevance Sort by last modified time
    Searched refs:foo (Results 176 - 200 of 355) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/test/intltest/
tsdcfmsy.cpp 172 DecimalFormatSymbols foo(status);
174 DecimalFormatSymbols bar(foo);
178 if(en != fr || foo != bar) {
190 foo.setSymbol((DecimalFormatSymbols::ENumberFormatSymbol)i, UnicodeString((UChar32)(0x10330 + i)));
193 if(foo.getSymbol((DecimalFormatSymbols::ENumberFormatSymbol)i) != UnicodeString((UChar32)(0x10330 + i))) {
195 foo.getSymbol((DecimalFormatSymbols::ENumberFormatSymbol)i) +
  /external/v8/test/mjsunit/
global-deleted-property-keyed.js 35 function foo() { natives[name] + 12; } function
36 for(var i = 0; i < 3; i++) foo();
38 for(var i = 0; i < 3; i++) foo();
new.js 35 assertFalse('foo' == new Construct('foo'));
52 x = new String('foo');
regexp-string-methods.js 29 var s = new String("foo");
38 assertEquals("f", "foo".charAt(0));
40 assertEquals("g", "foo".charAt(0));
object-get-own-property-names.js 65 var obj = { foo: "foo" };
70 assertEquals("foo", propertyNames[0]);
88 Object.getOwnPropertyNames("foo");
api-call-after-bypassed-exception.js 30 function foo() { function
38 foo();
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");
75 var arr = new Array(42, "foo", "fish", "horse");
191 assertThrows("String.prototype.concat.apply.apply('foo', primes)");
ascii-regexp-subject.js 33 var s = "foo";
47 repeatRegexp(/^foo|^bar|^baz/);
context-variable-assignments.js 28 function foo() { function
37 assertEquals("hello world", foo());
regexp-static.js 137 assertEquals("foo,", /foo(?:a(x))?/.exec("foobx"), "lastParen setup");
142 var haystack = "foo";
143 var re_text = "^foo";
158 RegExp.multiline = "foo";
165 var foo = "lsdfj sldkfj sdklfj læsdfjl sdkfjlsdk fjsdl fjsdljskdj flsj flsdkj flskd regexp: /foobar/\nldkfj sdlkfj sdkl"; variable
166 assertTrue(/^([a-z]+): (.*)/.test(foo.substring(foo.indexOf("regexp:"))), "regexp: setup");
undeletable-functions.js 137 type[prop] = "foo";
138 assertEquals("foo", type[prop], "not overwritable: " + prop);
150 type[prop] = "foo";
151 assertEquals("foo", type[prop], "not overwritable: " + prop);
165 type[prop] = "foo";
166 assertFalse("foo" == type[prop], "overwritable: " + prop);
177 type[prop] = "foo";
178 assertEquals("foo", type[prop], "overwritable: " + prop);
json.js 72 n1.toISOString = function () { return "foo"; };
73 assertEquals("foo", n1.toJSON());
101 assertEquals("foo", JSON.parse('"foo"'));
210 TestInvalid("{'foo':42}");
240 assertEquals('"foo"', JSON.stringify("foo"));
247 assertEquals('"foo\\u0000bar"', JSON.stringify("foo\0bar"));
311 TestInvalid('1); throw "foo"; (1')
    [all...]
  /external/blktrace/
btrace.spec 16 Group: foo
  /external/dropbear/
compat.c 195 char *foo = strrchr(path, '/'); local
196 return ++foo;
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 120 AddFile("foo.proto",
122 "message Foo {}\n");
124 const FileDescriptor* file = importer_.Import("foo.proto");
129 EXPECT_EQ("Foo", file->message_type(0)->name());
132 EXPECT_EQ(file, importer_.Import("foo.proto"));
137 AddFile("foo.proto",
140 "message Foo {\n"
148 // here, since foo.proto imports bar.proto. The second call just returns
150 // foo.proto. We test that this is the case below by checking that bar
151 // is among foo's dependencies (by pointer)
152 const FileDescriptor* foo = importer_.Import("foo.proto"); local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 58 // foo ## __LINE__
60 // will result in the token foo__LINE__, instead of foo followed by
63 #define GTEST_CONCAT_TOKEN(foo, bar) GTEST_CONCAT_TOKEN_IMPL(foo, bar)
64 #define GTEST_CONCAT_TOKEN_IMPL(foo, bar) foo ## bar
272 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
273 // where foo is 5 and bar is 6, we have:
275 // expected_expression: "foo"
  /external/skia/src/animator/
SkDrawTextBox.cpp 24 foo = 100, enumerator in enum:SkDrawTextBox_Properties
  /external/v8/test/message/
try-catch-finally-no-message.js 30 throw "foo";
41 throw "foo";
  /external/v8/test/mjsunit/regress/
regress-220.js 28 function foo(f) { eval(f); } function
31 foo("(function (x) { with ({x: []}) function x(){} })");
regress-734862.js 33 assertTrue(catcher(null, 'foo') instanceof TypeError);
34 assertTrue(catcher(void 0, 'foo') instanceof TypeError);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
RegExp_lastMatch.js 41 // 'foo'.match(/foo/); RegExp.lastMatch
42 'foo'.match(/foo/);
43 testcases[count++] = new TestCase ( SECTION, "'foo'.match(/foo/); RegExp.lastMatch",
44 'foo', RegExp.lastMatch);
46 // 'foo'.match(new RegExp('foo')); RegExp.lastMatch
47 'foo'.match(new RegExp('foo'))
    [all...]
RegExp_lastMatch_as_array.js 41 // 'foo'.match(/foo/); RegExp['$&']
42 'foo'.match(/foo/);
43 testcases[count++] = new TestCase ( SECTION, "'foo'.match(/foo/); RegExp['$&']",
44 'foo', RegExp['$&']);
46 // 'foo'.match(new RegExp('foo')); RegExp['$&']
47 'foo'.match(new RegExp('foo'))
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 85 mockService.foo(EasyMock.same(mockController), EasyMock.same(fooRequest),
135 stub.foo(mockController, fooRequest, fooCallback);
164 assertSame(fooResponse, stub.foo(mockController, fooRequest));
176 ServiceWithNoOuter.getDescriptor().findMethodByName("Foo");
187 impl.foo(EasyMock.same(controller), EasyMock.same(request),
206 ServiceWithNoOuter.getDescriptor().findMethodByName("Foo");
216 EasyMock.expect(impl.foo(EasyMock.same(controller), EasyMock.same(request)))
236 assertEquals(1, UnittestNoGenericServices.TestEnum.FOO.getNumber());
266 assertEquals("Foo",
  /external/chromium/base/
message_loop_unittest.cc 31 class Foo : public base::RefCounted<Foo> {
33 Foo() : test_count_(0) {
70 friend class base::RefCounted<Foo>;
72 ~Foo() {}
94 scoped_refptr<Foo> foo = new Foo(); local
97 foo.get(), &Foo::Test0))
125 scoped_refptr<Foo> foo = new Foo(); local
    [all...]
  /external/skia/include/core/
SkPostConfig.h 202 int foo
209 int foo

Completed in 259 milliseconds

1 2 3 4 5 6 78 91011>>