HomeSort by relevance Sort by last modified time
    Searched full:world (Results 851 - 875 of 3844) sorted by null

<<31323334353637383940>>

  /external/chromium_org/net/tools/flip_server/
balsa_headers_test.cc 62 StringPiece sp2 = buffer_->Write(StringPiece(", world"), &index2);
66 ASSERT_EQ(", world", sp2);
69 ASSERT_EQ("hello, world",
112 StringPiece sp2 = buffer_->Write(StringPiece(", world"), &index2);
116 ASSERT_EQ(", world", sp2);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 138 * This type of collision shape is mesh-accurate and meant for immovable "world objects".
157 * This type of collision shape is mesh-accurate and meant for immovable "world objects".
206 * This type of collision shape is mesh-accurate and meant for immovable "world objects".
229 //TODO: using world bound here instead of "local world" bound...
  /system/core/libcutils/
open_memstream.c 293 fprintf(stream, "hello my world");
308 fprintf(stream, "hello my world");
367 buf=hello my world, len=14
368 buf=good-bye world, len=14
370 buf=hello my world, len=14
  /external/chromium_org/chrome/browser/chromeos/drive/
search_metadata_unittest.cc 520 EXPECT_TRUE(FindAndHighlightWrapper("hello, world", "hello",
522 EXPECT_EQ("<b>hello</b>, world", highlighted_text);
527 EXPECT_TRUE(FindAndHighlightWrapper("hello, world", "world",
529 EXPECT_EQ("hello, <b>world</b>", highlighted_text);
534 EXPECT_TRUE(FindAndHighlightWrapper("yo hello, world", "hello",
536 EXPECT_EQ("yo <b>hello</b>, world", highlighted_text);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bytes.py 152 b = by("Hello, world")
157 self.assertEqual(b[7:], by("world"))
158 self.assertEqual(b[7:12], by("world"))
159 self.assertEqual(b[7:100], by("world"))
164 self.assertEqual(b[-5:], by("world"))
165 self.assertEqual(b[-5:12], by("world"))
166 self.assertEqual(b[-5:100], by("world"))
181 sample = u"Hello world\n\u1234\u5678\u9abc\udef0"
190 sample = u"Hello world\n\u1234\u5678\u9abc\def0\def0"
194 sample = u"Hello world\n\x80\x81\xfe\xff
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bytes.py 152 b = by("Hello, world")
157 self.assertEqual(b[7:], by("world"))
158 self.assertEqual(b[7:12], by("world"))
159 self.assertEqual(b[7:100], by("world"))
164 self.assertEqual(b[-5:], by("world"))
165 self.assertEqual(b[-5:12], by("world"))
166 self.assertEqual(b[-5:100], by("world"))
181 sample = u"Hello world\n\u1234\u5678\u9abc\udef0"
190 sample = u"Hello world\n\u1234\u5678\u9abc\def0\def0"
194 sample = u"Hello world\n\x80\x81\xfe\xff
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 226 // Executes JavaScript in a new world associated with the web frame.
234 // worldID must be > 0 (as 0 represents the main world).
240 // Associates an isolated world (see above for description) with a security
241 // origin. XMLHttpRequest instances used in that world will be considered
246 // Associates a content security policy with an isolated world. This policy
247 // should be used when evaluating script in the isolated world, and should
252 // doesn't yet restrict the isolated world to the provided policy.
271 // worldID must be > 0 (as 0 represents the main world).
285 // Returns the V8 context for associated with the main world and this
287 // each isolated world and one for the main world. If you don't know wha
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
func.test 588 SELECT test_destructor('hello world'), test_destructor_count();
590 } {{hello world} 1}
595 SELECT test_destructor16('hello world'), test_destructor_count();
597 } {{hello world} 1}
607 SELECT test_destructor('hello')||' world'
609 } {{hello world}}
619 INSERT INTO t4 VALUES(test_destructor('world'));
622 } {hello world}
640 SELECT test_auxdata('hello world');
653 SELECT test_auxdata('hello world') FROM t4
    [all...]
attach3.test 147 INSERT INTO aux.t3 VALUES('hello', 'world');
150 } {1 2 hello world}
208 SELECT 'hello world';
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 491 Action<std::string()> a2 = Return("world");
492 EXPECT_EQ("world", a2.Perform(make_tuple()));
729 a = SetArgPointee<1>("world");
733 EXPECT_STREQ("world", ptr);
738 Action<MyFunction> a = SetArgPointee<0>(L"world");
741 EXPECT_STREQ(L"world", ptr);
746 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
749 EXPECT_EQ(L"world", str);
766 char world_array[] = "world";
767 char* const world = world_array local
787 wchar_t* const world = world_array; local
    [all...]
  /external/chromium_org/chrome/browser/invalidation/
invalidator_storage_unittest.cc 82 expected_states[kAppNotificationsId_].payload = "world";
83 storage.SetMaxVersionAndPayload(kAppNotificationsId_, 3, "world");
310 value->SetString(kPayloadKey, "world");
328 EXPECT_EQ("world", map[kPreferencesId_].payload);
486 state_map[kBookmarksId_].payload = "world";
487 storage.SetMaxVersionAndPayload(kBookmarksId_, 12, "world");
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender_unittest.cc 33 const char kText[] = "Helllo world.";
248 ASCIIToUTF16("world")));
425 "\"originalText\":\"Helllo world\","
460 ASCIIToUTF16("Helllo world. Helllo world.");
511 SpellCheckResult::SPELLING, 100, 3, UTF8ToUTF16("world")));
feedback_unittest.cc 185 ASCIIToUTF16("Helllo world. Helllo world");
239 static const string16 kMisspelledText = ASCIIToUTF16("Helllo world");
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipOutputStreamTest.java 70 zos.write("Hello World".getBytes("UTF-8"));
83 zos.write("Hello World".getBytes());
106 zos.write("Hello World".getBytes());
  /external/chromium/chrome/common/extensions/
extension_messages.h 44 // The ID of the requesting extension. To know which isolated world to
57 // Whether to execute code in the main world (as opposed to an isolated
58 // world).
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
tts.html 14 <pre>chrome.tts.speak('Hello, world.');</pre>
23 <pre>chrome.tts.speak('Hello, world.', {'rate': 2.0});</pre>
29 'Hello, world.', {'lang': 'en-US', 'rate': 2.0});</pre>
  /external/chromium_org/ppapi/tests/
test_flash_clipboard.cc 117 std::string input = "Hello world plain text!";
127 std::string input = "Hello world html!";
227 std::string input = "Hello world plain text!";
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Initializer.cpp 106 DOMWrapperWorld* world = DOMWrapperWorld::current(); local
108 if (world && frame && frame->script()->existingWindowShell(world)) {
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_impl_write_unittest.cc 178 ScopedTextBlob blob(url_request_context(), blob_url, "Hello, world!\n");
273 ScopedTextBlob blob(url_request_context(), blob_url, "Hello, world!\n");
291 ScopedTextBlob blob(url_request_context(), blob_url, "Hello, world!\n");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderLoader.java 168 * This method returns the data read from the WORLD file block. The block contains data that can be stored as
171 * the structure with WORLD block data
172 * @return data read from the WORLD block that can be added to the scene
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Technique.java 102 * Returns a list of uniforms that implements the world parameters
105 * @return a list of uniforms implementing the world parameters.
227 // register the world bound uniforms
  /frameworks/base/docs/html/guide/webapps/
debugging.jd 58 console.log("Hello World");
62 Console: Hello World http://www.example.com/hello.html :82
151 Hello World -- From line 82 of http://www.example.com/hello.html
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
scenegraph_objects.rsh 278 rsDebug("World X", pos.x);
279 rsDebug("World Y", pos.y);
280 rsDebug("World Z", pos.z);
  /art/runtime/gc/
heap_test.cc 51 array->Set(j, mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!"));
  /cts/tests/tests/content/src/android/content/res/cts/
Resources_ThemeTest.java 46 mResTheme.dump(1, "hello", "world");

Completed in 724 milliseconds

<<31323334353637383940>>