HomeSort by relevance Sort by last modified time
    Searched full:tutorial (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /external/protobuf/examples/
list_people.cc 10 void ListPeople(const tutorial::AddressBook& address_book) {
12 const tutorial::Person& person = address_book.person(i);
21 const tutorial::Person::PhoneNumber& phone_number = person.phone(j);
24 case tutorial::Person::MOBILE:
27 case tutorial::Person::HOME:
30 case tutorial::Person::WORK:
51 tutorial::AddressBook address_book;
addressbook.proto 3 package tutorial;
5 option java_package = "com.example.tutorial";
add_person.cc 10 void PromptForAddress(tutorial::Person* person) {
35 tutorial::Person::PhoneNumber* phone_number = person->add_phone();
42 phone_number->set_type(tutorial::Person::MOBILE);
44 phone_number->set_type(tutorial::Person::HOME);
46 phone_number->set_type(tutorial::Person::WORK);
66 tutorial::AddressBook address_book;
Makefile 13 rm -f javac_middleman AddPerson*.class ListPeople*.class com/example/tutorial/*.class
14 rm -f protoc_middleman addressbook.pb.cc addressbook.pb.h addressbook_pb2.py com/example/tutorial/AddressBookProtos.java
16 rmdir com/example/tutorial 2>/dev/null || true
33 javac AddPerson.java ListPeople.java com/example/tutorial/AddressBookProtos.java
ListPeople.java 3 import com.example.tutorial.AddressBookProtos.AddressBook;
4 import com.example.tutorial.AddressBookProtos.Person;
AddPerson.java 3 import com.example.tutorial.AddressBookProtos.AddressBook;
4 import com.example.tutorial.AddressBookProtos.Person;
README.txt 24 These examples are part of the Protocol Buffers tutorial, located at:
  /external/dbus/doc/
Makefile.am 7 dbus-tutorial.xml \
16 dbus-tutorial.html
29 dbus-tutorial.html: dbus-tutorial.xml
  /frameworks/base/docs/html/guide/tutorials/notepad/
notepad-index.jd 1 page.title=Notepad Tutorial
5 <p>The tutorial in this section gives you a &quot;hands-on&quot; introduction
12 <p>The tutorial presents the notepad application development as a set of
18 <p>When you are finished with the tutorial, you will have created a functioning
27 <h2>Who Should Use this Tutorial</h2>
29 <p>This tutorial is designed for experienced developers, especially those with
31 applications before, you can still use the tutorial, but you might need to work
34 <p>The tutorial assumes that you have some familiarity with the basic Android
39 <p>Also note that this tutorial uses
48 <p>This tutorial builds on the information provided in the <
    [all...]
index.jd 1 page.title=Notepad Tutorial
5 <p>This tutorial on writing a notepad application gives you a &quot;hands-on&quot; introduction
12 <p>The tutorial presents the application development as a set of
18 <p>When you are finished with the tutorial, you will have created a functioning
27 <h2>Who Should Use this Tutorial</h2>
29 <p>This tutorial is designed for experienced developers, especially those with
31 applications before, you can still use the tutorial, but you might need to work
34 <p>Also note that this tutorial uses
43 <p>The tutorial assumes that you have some familiarity with basic Android
48 <p>This tutorial also builds on the introductory information provided in the
    [all...]
  /frameworks/base/docs/html/resources/tutorials/notepad/
notepad-index.jd 1 page.title=Notepad Tutorial
5 <p>The tutorial in this section gives you a &quot;hands-on&quot; introduction
12 <p>The tutorial presents the notepad application development as a set of
18 <p>When you are finished with the tutorial, you will have created a functioning
27 <h2>Who Should Use this Tutorial</h2>
29 <p>This tutorial is designed for experienced developers, especially those with
31 applications before, you can still use the tutorial, but you might need to work
34 <p>The tutorial assumes that you have some familiarity with the basic Android
39 <p>Also note that this tutorial uses
48 <p>This tutorial builds on the information provided in the <
    [all...]
index.jd 1 page.title=Notepad Tutorial
5 <p>This tutorial on writing a notepad application gives you a &quot;hands-on&quot; introduction
12 <p>The tutorial presents the application development as a set of
18 <p>When you are finished with the tutorial, you will have created a functioning
27 <h2>Who Should Use this Tutorial</h2>
29 <p>This tutorial is designed for experienced developers, especially those with
31 applications before, you can still use the tutorial, but you might need to work
34 <p>Also note that this tutorial uses
43 <p>The tutorial assumes that you have some familiarity with basic Android
48 <p>This tutorial also builds on the introductory information provided in the
    [all...]
  /external/bluetooth/glib/docs/reference/gobject/
gobject-docs.sgml 22 <!ENTITY tutorial-Intro SYSTEM "tut_intro.xml">
23 <!ENTITY tutorial-GType SYSTEM "tut_gtype.xml">
24 <!ENTITY tutorial-GObject SYSTEM "tut_gobject.xml">
25 <!ENTITY tutorial-GSignal SYSTEM "tut_gsignal.xml">
26 <!ENTITY tutorial-HowTo SYSTEM "tut_howto.xml">
27 <!ENTITY tutorial-Tools SYSTEM "tut_tools.xml">
87 &tutorial-Intro;
88 &tutorial-GType;
89 &tutorial-GObject;
90 &tutorial-GSignal
    [all...]
  /development/samples/NotePad/
_index.html 13 notepad code that's used for the <a href="../../../guide/tutorials/notepad/index.html">Notepad Tutorial</a>.
14 They are similar in nature, but there are several differences in implementation &mdash; the tutorial
16 Android development, we suggest you start with the tutorial, then visit this
  /libcore/luni/src/test/resources/
recipe.xml 6 Some recipes used for the XML tutorial.
recipe1.xml 6 Some recipes used for the XML tutorial.
recipt.xml 6 Some recipes used for the XML tutorial.
systemid.xml 6 Some recipes used for the XML tutorial.
  /frameworks/base/docs/html/guide/developing/testing/
index.jd 15 tutorial, which introduces basic testing concepts and procedures.
16 For a more advanced tutorial, try <a
  /development/samples/Spinner/
_index.html 20 <a href="../../../resources/tutorials/testing/activity_test.html">Activity Testing</a> tutorial.
  /frameworks/base/docs/html/resources/tutorials/testing/
helloandroid_test.jd 66 tests is an important part of any development effort, this tutorial introduces the basics of testing and helps you get started testing quickly.
68 To keep things simple, this tutorial builds on the <a href="{@docRoot}resources/tutorials/hello-world.html">Hello World</a> tutorial, which you may have already completed.
70 Of course, when you are done with this tutorial, you will want to create a test project for your own app and add various types of tests to it.
75 If you prefer a more advanced testing tutorial, try the
76 <a href="{@docRoot}resources/tutorials/testing/activity_test.html">Activity Testing</a> tutorial.
80 This tutorial and its code depend on the Hello World tutorial. If you haven't completed that tutorial already,
82 have an Android application that is ready to be tested. The tutorial guides you through th
    [all...]
activity_test.jd 11 <a href="#DownloadCode">Installing the Tutorial Sample Code</a>
90 This tutorial demonstrates the Android testing tools by presenting a simple Android application and then leading you step-by-step through the creation of a test application for it.
132 The instructions and code in this tutorial depend on the following:
137 <a href="{@docRoot}resources/tutorials/hello-world.html">Hello, World</a> tutorial. If you
145 Hello, Testing</a> tutorial.
148 Eclipse with ADT. This tutorial describes how to set up and run a test application using
157 (API Level 3) or higher installed in your SDK, because this tutorial uses APIs that
168 <h2 id="DownloadCode">Installing the Tutorial Sample Code</h2>
170 During this tutorial, you will be working with sample code that is provided as part
177 Spinner is the application under test. This tutorial focuses on th
    [all...]
  /frameworks/base/docs/html/guide/topics/testing/
index.jd 54 Hello, Testing</a> tutorial introduces basic testing concepts and procedures.
57 For a more advanced tutorial, try
  /frameworks/base/core/java/android/widget/
CheckBox.java 46 * tutorial</a>.</p>
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPatternTutorial.java 33 // Don't show the tutorial if the user has seen it before.

Completed in 147 milliseconds

1 2 3 4 5 6 7 8