HomeSort by relevance Sort by last modified time
    Searched refs:hello (Results 26 - 50 of 167) sorted by null

12 3 4 5 6 7

  /external/valgrind/main/memcheck/tests/linux/
stack_changes.c 18 void hello(mycontext *newc) function
20 printf("hello, world: %d\n", count);
60 makecontext(&ctx1, (void (*)()) hello, 1, &ctx2);
61 makecontext(&ctx2, (void (*)()) hello, 1, &ctx1);
  /external/chromium_org/ipc/
sync_socket_unittest.cc 47 const char kHelloString[] = "Hello, SyncSocket Client";
233 // Wait for the worker thread to say hello.
234 char hello[kHelloStringLength] = {0}; local
235 pair[1].Receive(&hello[0], sizeof(hello));
236 EXPECT_EQ(0, strcmp(hello, kHelloString));
264 // Wait for the worker thread to say hello.
265 char hello[kHelloStringLength] = {0}; local
266 pair[1].Receive(&hello[0], sizeof(hello));
301 char hello[kHelloStringLength] = {0}; local
    [all...]
  /external/chromium_org/tools/grit/grit/node/
misc_unittest.py 61 <if expr="'hello' in defs">
63 Hello!
89 grd.SetDefines({'hello': '1'})
164 <if expr="lang == 'fr' or 'hello' in defs">
191 grd.SetDefines({'hello': '1'})
206 grd.SetDefines({'hello': '1'})
232 <if expr="'hello' in defs">
242 <if expr="'hello' in defs">
252 <if expr="'hello' in defs">
263 <if expr="'hello' in defs"
    [all...]
  /development/ndk/samples/hello-jni/jni/
Android.mk 19 LOCAL_MODULE := hello-jni
20 LOCAL_SRC_FILES := hello-jni.c
  /external/clang/test/Parser/
pragma-pack.c 10 /*expected-warning {{unknown action for '#pragma pack'}}*/ #pragma pack(hello)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
TextToSpeechActivity.java 119 "Hello",
128 // Select a random hello.
130 String hello = HELLOS[RANDOM.nextInt(helloLength)]; local
131 mTts.speak(hello,
  /external/chromium_org/v8/test/webkit/fast/js/
primitive-property-access-edge-cases.js 103 shouldBeTrue("checkGet('hello', String)");
106 shouldBeTrue("checkSet('hello', String)");
109 shouldBeTrue("checkGetStrict('hello', String)");
112 shouldBeTrue("checkSetStrict('hello', String)");
140 shouldBeTrue("checkRead('hello', String)");
143 shouldBeTrue("checkWrite('hello', String)");
146 shouldBeTrue("checkReadStrict('hello', String)");
149 shouldThrow("checkWriteStrict('hello', String)");
189 shouldBeTrue("checkNumericGet('hello', String)");
192 shouldBeTrue("checkNumericSet('hello', String)")
    [all...]
  /external/clang/test/PCH/
exprs.h 20 const char *hello = "Hello" "PCH" "World"; variable
106 typedef typeof(_Generic(i, char*: 0, int: 0., default: hello))
  /external/zlib/src/contrib/pascal/
example.pas 28 (* "hello world" would be more standard, but the repeated "hello"
31 const hello: PChar = 'hello, hello!';
33 const dictionary: PChar = 'hello';
61 len := StrLen(hello)+1;
63 err := compress(compr, comprLen, hello, len);
71 if StrComp(PChar(uncompr), hello) <> 0 then
90 len := StrLen(hello)+1
    [all...]
  /external/chromium_org/net/data/websocket/
websocket_worker_simple.js 22 var greeting = "hello";
29 // Receive echoed "hello".
  /external/clang/test/Index/
annotate-tokens.c 9 const char * hello = "Hello"; local
101 // CHECK: Keyword: "const" [9:3 - 9:8] VarDecl=hello:9:16 (Definition)
102 // CHECK: Keyword: "char" [9:9 - 9:13] VarDecl=hello:9:16 (Definition)
103 // CHECK: Punctuation: "*" [9:14 - 9:15] VarDecl=hello:9:16 (Definition)
104 // CHECK: Identifier: "hello" [9:16 - 9:21] VarDecl=hello:9:16 (Definition)
105 // CHECK: Punctuation: "=" [9:22 - 9:23] VarDecl=hello:9:16 (Definition)
106 // CHECK: Literal: ""Hello"" [9:24 - 9:31] StringLiteral=
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p5.c 22 char c[2][6] = { str(hello), str() };
27 // CHECK: char c[2][6] = { "hello", "" };
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 557 * expression is: meaning='hello';meaning=meaning+' '+'world';
560 * root.meaning='hello';root.meaning=root.meaning+' '+'world';
876 * expression is: meaning='hello';meaning=meaning+' '+'world';
879 * root.meaning='hello';root.meaning=root.meaning+' '+'world';
    [all...]
  /external/chromium_org/v8/test/mjsunit/
this-in-callbacks.js 46 assertEquals('id', 'hello'.replace('hello', r));
47 assertEquals('id', 'hello'.replace(/hello/, r));
  /external/v8/test/mjsunit/
this-in-callbacks.js 46 assertEquals('id', 'hello'.replace('hello', r));
47 assertEquals('id', 'hello'.replace(/hello/, r));
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdtmain.asm 2 ;; returns true (0) if its parameter equals the phrase "hello"
3 ;; "hello" is stored in the library part, to complicate the
34 mov ecx, _message ; ecx = "hello"
  /external/chromium_org/tools/grit/grit/
grd_reader_unittest.py 33 Hello <ph name="USERNAME">%s<ex>Joi</ex></ph>, how are you doing today?
168 <if expr="pp_ifdef('hello')">
170 Hello!
177 root = grd_reader.Parse(pseudo_file, '.', defines={'hello': '1'})
181 hello = root.GetNodeById('IDS_HELLO')
182 self.failUnless(hello.GetCliques()[0].GetId() == 'IDS_HELLO')
189 <if expr="pp_ifdef('hello')">
192 Hello!
205 root = grd_reader.Parse(pseudo_file, '.', defines={'hello': '1'})
209 hello = root.GetNodeById('IDS_HELLO'
    [all...]
clique_unittest.py 27 msg = tclib.Message(text='Hello USERNAME, how are you?',
97 Hello <ph name="USERNAME">%s<ex>Joi</ex></ph>, how are you doing today?
112 self.failUnless('Hello %s, how are you doing today?' in content_list)
114 self.failUnless('Hello!' in content_list)
131 tclib.Message(text='Hello USERNAME',
133 tclib.Message(text='Hello USERNAME',
156 messages = [ tclib.Message(text='Hello'), tclib.Message(text='Goodbye') ]
172 self.failUnless(report.count('800120468867715734 "Hello" de') == 1)
203 message = tclib.Message(text='\n hello')
209 msg_a = tclib.Message(text='hello', description='a'
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-to-string-toString-in-string.js 34 var argument = new String("hello");
35 var expected = "\"hello\"";
38 argument = new String("hello");
dfg-to-string-valueOf-in-string.js 34 var argument = new String("hello");
37 argument = new String("hello");
40 shouldBe("\"\" + foo(argument)", "\"hello\"");
regexp-many-brackets.js 33 regexp += "hello";
39 manyHellosArray[i] = "hello";
42 shouldBe("'hello'.match(manyBracketsRegExp)", "manyHellosArray");
  /external/zlib/src/test/
example.c 29 z_const char hello[] = "hello, hello!"; variable
30 /* "hello world" would be more standard, but the repeated "hello"
34 const char dictionary[] = "hello";
93 uLong len = (uLong)strlen(hello)+1;
95 err = compress(compr, &comprLen, (const Bytef*)hello, len);
103 if (strcmp((char*)uncompr, hello)) {
123 int len = (int)strlen(hello)+1
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ResourcesTest.java 86 String hello=resources.getString( R.string.hello ); local
87 assertThat( hello, equalTo( "Bonjour" ) );
  /external/chromium_org/third_party/icu/source/test/intltest/
itutil.cpp 324 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
326 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
416 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
419 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
  /external/chromium_org/v8/test/webkit/fast/js/kde/
scope.js 34 var OBJECT = new MyObject( "hello" );
40 shouldBe("OBJECT.toString()", "'hello'");
45 shouldBe("s", "'hello'");

Completed in 1449 milliseconds

12 3 4 5 6 7