OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Hello
(Results
1 - 13
of
13
) sorted by null
/prebuilts/go/darwin-x86/src/cmd/go/testdata/local/easysub/
easysub.go
5
func
Hello
() {
6
fmt.Println("easysub.
Hello
")
/prebuilts/go/darwin-x86/src/cmd/go/testdata/local/sub/sub/
subsub.go
5
func
Hello
() {
6
fmt.Println("subsub.
Hello
")
/prebuilts/go/darwin-x86/src/cmd/go/testdata/local/sub/
sub.go
9
func
Hello
() {
10
fmt.Println("sub.
Hello
")
11
subsub.
Hello
()
/prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
imports.go
5
var
Hello
= fmt.Sprintf("
Hello
, world")
/prebuilts/go/linux-x86/src/cmd/go/testdata/local/easysub/
easysub.go
5
func
Hello
() {
6
fmt.Println("easysub.
Hello
")
/prebuilts/go/linux-x86/src/cmd/go/testdata/local/sub/sub/
subsub.go
5
func
Hello
() {
6
fmt.Println("subsub.
Hello
")
/prebuilts/go/linux-x86/src/cmd/go/testdata/local/sub/
sub.go
9
func
Hello
() {
10
fmt.Println("sub.
Hello
")
11
subsub.
Hello
()
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
imports.go
5
var
Hello
= fmt.Sprintf("
Hello
, world")
/external/llvm/lib/Transforms/Hello/
Hello.cpp
1
//===-
Hello
.cpp - Example code from "Writing an LLVM Pass" ---------------===//
10
// This file implements two versions of the LLVM "
Hello
World" pass described
21
#define DEBUG_TYPE "
hello
"
26
//
Hello
- The first implementation, without getAnalysisUsage.
27
struct
Hello
: public FunctionPass {
29
Hello
() : FunctionPass(ID) {}
33
errs() << "
Hello
: ";
40
char
Hello
::ID = 0;
41
static RegisterPass<
Hello
> X("
hello
", "Hello World Pass")
[
all
...]
/external/xmlrpcpp/test/
HelloServer.cpp
13
// No arguments, result is "
Hello
".
14
class
Hello
: public XmlRpcServerMethod
17
Hello
(XmlRpcServer* s) : XmlRpcServerMethod("
Hello
", s) {}
21
result = "
Hello
";
24
std::string help() { return std::string("Say
hello
"); }
26
}
hello
(&s); // This constructor registers the method with the server
29
// One argument is passed, result is "
Hello
, " + arg.
37
std::string resultString = "
Hello
, ";
/prebuilts/go/darwin-x86/src/net/smtp/
smtp.go
40
helloError error // the error from the
hello
72
//
hello
runs a
hello
exchange if needed.
73
func (c *Client)
hello
() error {
func
84
//
Hello
sends a HELO or EHLO to the server as the given host name.
87
// automatically otherwise. If
Hello
is called, it must be called before
89
func (c *Client)
Hello
(localName string) error {
91
return errors.New("smtp:
Hello
called after other methods")
94
return c.
hello
()
117
// ehlo sends the EHLO (extended
hello
) greeting to the server. I
[
all
...]
/prebuilts/go/linux-x86/src/net/smtp/
smtp.go
40
helloError error // the error from the
hello
72
//
hello
runs a
hello
exchange if needed.
73
func (c *Client)
hello
() error {
func
84
//
Hello
sends a HELO or EHLO to the server as the given host name.
87
// automatically otherwise. If
Hello
is called, it must be called before
89
func (c *Client)
Hello
(localName string) error {
91
return errors.New("smtp:
Hello
called after other methods")
94
return c.
hello
()
117
// ehlo sends the EHLO (extended
hello
) greeting to the server. I
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/
ObjectsTest.java
24
public static final class
Hello
{
25
public String toString() { return "
hello
"; }
39
String[] o1 = new String[] { "
hello
" };
41
String[] o3 = new String[] { "
hello
" };
51
assertTrue(Objects.deepEquals("
hello
", "
hello
"));
52
assertFalse(Objects.deepEquals("
hello
", "world"));
56
Hello
h1 = new
Hello
();
57
Hello
h2 = new Hello()
[
all
...]
Completed in 1187 milliseconds