HomeSort by relevance Sort by last modified time
    Searched refs:hello_world (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/libxml/src/
testdso.c 6 XMLPUBFUN int hello_world(void);
8 int hello_world(void) function
testModule.c 46 hello_world_t hello_world = NULL; local
57 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
61 if (hello_world == NULL) {
66 (*hello_world)();
  /external/lldb/test/functionalities/inferior-assert/
main.c 12 const char *hello_world = "Hello, assertion!"; variable
17 printf("%s\n", hello_world);
  /external/lldb/test/functionalities/inferior-crashing/
main.c 11 const char *hello_world = "Hello, segfault!"; variable
16 printf("%s\n", hello_world);
  /external/lldb/test/lang/cpp/stl/
main.cpp 15 std::string hello_world ("Hello World!");
16 std::cout << hello_world << std::endl;
17 std::cout << hello_world.length() << std::endl;
18 std::cout << hello_world[11] << std::endl;
22 associative_array[hello_world] = 1;
  /external/lldb/test/functionalities/command_script/import/
Makefile 4 EXE := hello_world
  /external/lldb/test/python_api/hello_world/
Makefile 5 EXE := hello_world
  /external/lldb/test/lang/cpp/class_static/
main.cpp 48 const char *hello_world = "Hello, world!"; local
51 printf ("%s\n", hello_world);
  /frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$string.class 
  /development/samples/ApiDemos/src/com/example/android/apis/app/
HelloWorld.java 43 * <td >/res/any/layout/hello_world.xml</td>
61 // See assets/res/any/layout/hello_world.xml for this
64 setContentView(R.layout.hello_world);
FragmentDialogOrActivity.java 75 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentArguments.java 100 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentCustomAnimations.java 123 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentStack.java 122 View v = inflater.inflate(R.layout.hello_world, container, false);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fuse_fs_test.cc 161 const char hello_world[] = "Hello, World!\n"; member in namespace:__anon12986
206 size_t hello_len = strlen(hello_world);
211 memcpy(hello.data.data(), hello_world, hello_len);
227 ASSERT_STREQ(hello_world, buffer);
257 EXPECT_EQ(strlen(hello_world), statbuf.st_size);
342 ASSERT_EQ(sizeof(hello_world),
343 ki_write(fd, hello_world, sizeof(hello_world)));
353 EXPECT_STREQ(hello_world, buffer);
  /cts/tests/tests/content/src/android/content/pm/cts/
ApplicationInfoTest.java 103 mApplicationInfo.descriptionRes = R.string.hello_world;
104 assertEquals(mContext.getResources().getString(R.string.hello_world),
  /frameworks/testing/espresso/espresso-sample/src/main/java/com/google/android/apps/common/testing/ui/testapp/
SyncActivity.java 61 return getString(R.string.hello_world);
  /cts/tests/tests/widget/src/android/widget/cts/
SpinnerTest.java 139 spinner.setPromptId(R.string.hello_world);
140 assertEquals(mTargetContext.getString(R.string.hello_world), spinner.getPrompt());
TabHostTest.java 293 assertEquals(mActivity.getResources().getString(R.string.hello_world),
309 assertEquals(mActivity.getResources().getString(R.string.hello_world),
ToastTest.java 379 Toast toast = Toast.makeText(mActivity, R.string.hello_world, Toast.LENGTH_LONG);
404 toast.setText(R.string.hello_world);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogOrActivitySupport.java 74 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentArgumentsSupport.java 105 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentCustomAnimationSupport.java 120 View v = inflater.inflate(R.layout.hello_world, container, false);
FragmentStackSupport.java 129 View v = inflater.inflate(R.layout.hello_world, container, false);
  /frameworks/testing/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/
AdvancedSynchronizationTest.java 89 onView(withId(R.id.status_text)).check(matches(withText(R.string.hello_world)));

Completed in 2265 milliseconds

1 2