HomeSort by relevance Sort by last modified time
    Searched defs:he (Results 1 - 25 of 52) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/icu/
NativePluralRulesTest.java 60 // java.util.Locale will translate "he" to the deprecated "iw".
61 NativePluralRules he = NativePluralRules.forLocale(new Locale("he")); local
62 assertEquals(NativePluralRules.ONE, he.quantityForInt(1));
63 assertEquals(NativePluralRules.TWO, he.quantityForInt(2));
64 assertEquals(NativePluralRules.OTHER, he.quantityForInt(3));
65 assertEquals(NativePluralRules.MANY, he.quantityForInt(10));
AlphabeticIndexTest.java 135 AlphabeticIndex.ImmutableIndex he = createIndex(new Locale("he")); local
136 assertHasLabel(he, "\u05e4\u05e8\u05d9\u05d3\u05de\u05df", "\u05e4");
191 .addLabels(new Locale("he"))
  /external/apache-http/src/org/apache/http/impl/client/
DefaultConnectionKeepAliveStrategy.java 63 HeaderElement he = it.nextElement(); local
64 String param = he.getName();
65 String value = he.getValue();
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.cc 65 struct hostent* he = gethostbyname(host.c_str()); local
67 if (he == NULL) {
70 *first_ip_address = std::string(he->h_addr);
76 struct hostent* he = gethostbyname(host.c_str()); local
78 if (he == NULL) {
82 for (char** addr = &he->h_addr; *addr != NULL; ++addr) {
90 *ip_address_list = std::string(he->h_addr);
  /external/linux-tools-perf/
builtin-annotate.c 54 struct hist_entry *he; local
68 he = __hists__add_entry(&evsel->hists, al, NULL, 1);
69 if (he == NULL)
73 if (he->ms.sym != NULL) {
74 struct annotation *notes = symbol__annotation(he->ms.sym);
76 symbol__alloc_hist(he->ms.sym, evlist->nr_entries) < 0)
79 ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
111 static int hist_entry__tty_annotate(struct hist_entry *he, int evidx)
113 return symbol__tty_annotate(he->ms.sym, he->ms.map, evidx
123 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); local
    [all...]
builtin-report.c 66 struct hist_entry *he; local
75 he = __hists__add_entry(&evsel->hists, al, parent, sample->period);
76 if (he == NULL)
80 err = callchain_append(he->callchain, &session->callchain_cursor,
91 struct annotation *notes = symbol__annotation(he->ms.sym);
97 symbol__alloc_hist(he->ms.sym, session->evlist->nr_entries) < 0)
100 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
  /art/runtime/jdwp/
jdwp_socket.cc 276 hostent he; local
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error);
  /external/openssh/
logintest.c 88 struct hostent *he; local
115 if (! (he = gethostbyname("localhost"))) {
120 memcpy((void *)&(sa_in4.sin_addr), (void *)&(he->h_addr_list[0][0]),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimify.py 42 he = re.compile('^-*\n') variable
84 if he.match(line):
158 if he.match(line):
309 if he.match(line):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimify.py 42 he = re.compile('^-*\n') variable
84 if he.match(line):
158 if he.match(line):
309 if he.match(line):
  /external/chromium_org/third_party/openssl/openssl/apps/
s_socket.c 519 struct hostent *he; local
523 he=GetHostByName(str);
524 if (he == NULL)
530 if ((short)he->h_addrtype != AF_INET)
535 ip[0]=he->h_addr_list[0][0];
536 ip[1]=he->h_addr_list[0][1];
537 ip[2]=he->h_addr_list[0][2];
538 ip[3]=he->h_addr_list[0][3];
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
b_sock.c 125 struct hostent *he; local
146 he=BIO_gethostbyname(str);
147 if (he == NULL)
154 if ((short)he->h_addrtype != AF_INET)
160 ip[i]=he->h_addr_list[0][i];
  /external/iputils/
tracepath.c 308 struct hostent *he; local
382 he = gethostbyname(p);
383 if (he == NULL) {
392 memcpy(&target.sin_addr, he->h_addr, 4);
  /external/openssl/apps/
s_socket.c 519 struct hostent *he; local
523 he=GetHostByName(str);
524 if (he == NULL)
530 if ((short)he->h_addrtype != AF_INET)
535 ip[0]=he->h_addr_list[0][0];
536 ip[1]=he->h_addr_list[0][1];
537 ip[2]=he->h_addr_list[0][2];
538 ip[3]=he->h_addr_list[0][3];
  /external/openssl/crypto/bio/
b_sock.c 125 struct hostent *he; local
146 he=BIO_gethostbyname(str);
147 if (he == NULL)
154 if ((short)he->h_addrtype != AF_INET)
160 ip[i]=he->h_addr_list[0][i];
  /external/qemu/slirp/
misc.c 75 struct hostent *he = NULL; local
78 he = gethostbyname(buff);
79 if (he)
80 our_addr = *(struct in_addr *)he->h_addr;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 662 struct hostent *he; local
667 if ((he = gethostbyname(g_rwl_servIP)) != NULL) {
668 if (!dhd_atoip(*he->h_addr_list, &temp)) {
669 g_rwl_servIP = inet_ntoa(*(struct in_addr *)*he->h_addr_list);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElementTest.java 310 int he = e.hashCode(); local
312 assertEquals(he, new SimpleElement("android.view.LinearLayout",
319 assertFalse(he == new SimpleElement("android.view.Button",
325 assertFalse(he == new SimpleElement("android.view.LinearLayout",
331 assertFalse(he == new SimpleElement("android.view.LinearLayout",
337 assertFalse(he == new SimpleElement("android.view.LinearLayout",
  /system/core/sh/
histedit.c 173 HistEvent he; local
179 history(hist, &he, H_SETSIZE, histsize);
223 HistEvent he; local
394 history(hist, &he, H_FIRST);
395 retval = history(hist, &he, H_NEXT_EVENT, first);
396 for (;retval != -1; retval = history(hist, &he, direction)) {
399 out1fmt("%5d ", he.num);
400 out1str(he.str);
403 fc_replace(he.str, pat, repl) : he.str
482 HistEvent he; local
    [all...]
input.c 351 HistEvent he; local
353 history(hist, &he, whichprompt == 1? H_ENTER : H_APPEND,
  /dalvik/vm/jdwp/
JdwpSocket.cpp 412 struct hostent he; local
414 int cc = gethostbyname_r(state->params.host, &he, auxBuf, sizeof(auxBuf),
  /external/chromium/third_party/libevent/test/
regress_http.c 114 struct hostent *he; local
125 if (!(he = gethostbyname(address))) {
128 memcpy(&sin.sin_addr, he->h_addr_list[0], he->h_length);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 653 const UHashElement *he=fNames.find(s); local
654 if(he!=NULL) {
656 return (const UnicodeString *)he->key.pointer;
660 he=fNames.find(s);
661 return (const UnicodeString *)he->key.pointer;
667 const UHashElement *he=fNames.find(s); local
668 if(he!=NULL) {
670 return (const UnicodeString *)he->key.pointer;
  /external/chromium_org/third_party/libevent/test/
regress_http.c 114 struct hostent *he; local
125 if (!(he = gethostbyname(address))) {
128 memcpy(&sin.sin_addr, he->h_addr_list[0], he->h_length);
  /external/icu4c/tools/toolutil/
xmlparser.cpp 653 const UHashElement *he=fNames.find(s); local
654 if(he!=NULL) {
656 return (const UnicodeString *)he->key.pointer;
660 he=fNames.find(s);
661 return (const UnicodeString *)he->key.pointer;
667 const UHashElement *he=fNames.find(s); local
668 if(he!=NULL) {
670 return (const UnicodeString *)he->key.pointer;

Completed in 576 milliseconds

1 2 3