Searched defs:ip (Results 1 - 25 of 524) sorted by relevance

1234567891011>>

/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/
H A Dp5.cpp10 int* ip; local
11 float &fr1 = f(ip);
12 float &fr2 = g(ip);
/external/clang/test/Sema/
H A Dformat-strings-c90.c7 void foo(char **sp, float *fp, int *ip) { argument
20 scanf("%da", ip);
/external/clang/test/SemaTemplate/
H A Dambiguous-ovl-print.cpp7 void test_f(int *ip, int i) { argument
8 f(ip, i); // expected-error{{ambiguous}}
/external/chromium/net/tools/fetch/
H A Dhttp_server.cc8 HttpServer::HttpServer(std::string ip, int port) argument
9 : ALLOW_THIS_IN_INITIALIZER_LIST(session_(new HttpSession(ip, port))) {
H A Dhttp_session.cc8 HttpSession::HttpSession(const std::string& ip, int port) argument
10 socket_(HttpListenSocket::Listen(ip, port, this))) {
/external/chromium_org/net/tools/fetch/
H A Dhttp_server.cc7 HttpServer::HttpServer(std::string ip, int port) argument
8 : session_(new HttpSession(ip, port)) {
H A Dhttp_session.cc8 HttpSession::HttpSession(const std::string& ip, int port) argument
9 : socket_(HttpListenSocket::CreateAndListen(ip, port, this)) {
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp7 void test_f0(int* ip, void *vp) { argument
9 int &ir = f0(ip, 0);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp2.cpp17 // int *ip = cta;
18 // ip = cta;
35 int *ip = ctcv; local
/external/clang/test/CXX/temp/temp.names/
H A Dp4.cpp14 void test_f(int *ip) { argument
15 f<meta, int>(ip);
/external/clang/test/SemaCXX/
H A Dnew-delete-cxx0x.cpp3 void ugly_news(int *ip) { argument
/external/chromium_org/chrome/browser/devtools/
H A Dremote_debugging_server.cc14 const std::string& ip,
18 new net::TCPListenSocketFactory(ip, port),
12 RemoteDebuggingServer( chrome::HostDesktopType host_desktop_type, const std::string& ip, int port, const std::string& frontend_url) argument
/external/chromium_org/v8/test/mjsunit/
H A Dmirror-object.js244 var ip = mirror.internalProperties(); variable
245 assertEquals(1, ip.length);
246 assertEquals("[[PrimitiveValue]]", ip[0].name());
247 assertEquals("string", ip[0].value().type());
248 assertEquals("Capybara", ip[0].value().value());
252 ip = mirror.internalProperties();
253 assertEquals(3, ip.length);
255 for (var i = 0; i < ip.length; i++) {
256 property_map[ip[i].name()] = ip[
[all...]
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
H A Dp2.cpp9 void use_delete(int* ip, int N) { argument
11 delete ip;
13 delete [] ip;
/external/clang/test/Parser/
H A Dpointer_promotion.c5 int *ip; local
11 if (ip < cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
14 if (ip < 7) {} // expected-warning {{comparison between pointer and integer ('int *' and 'int')}}
15 if (sint < ip) {} // expected-warning {{comparison between pointer and integer ('int' and 'int *')}}
16 if (ip == cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
/external/compiler-rt/BlocksRuntime/tests/
H A Dcast.c25 int *ip; local
29 ip = (int *)aBlock;
32 aBlock = (void (^)(void))ip;
/external/valgrind/main/memcheck/tests/
H A Dfprw.c13 int* ip = (int*)0x1234567; local
22 free(ip);
23 ip = malloc(sizeof(int));
24 * ((double*)ip) = 1.2 + d;
/external/chromium_org/net/dns/
H A Ddns_hosts_unittest.cc36 const char* ip; member in struct:net::__anon9350::__anon9351
56 IPAddressNumber& ip = expected[key]; local
57 ASSERT_TRUE(ip.empty());
58 ASSERT_TRUE(ParseIPLiteralToNumber(entries[i].ip, &ip));
59 ASSERT_EQ(ip.size(), (entries[i].family == ADDRESS_FAMILY_IPV4) ? 4u : 16u);
/external/chromium_org/net/quic/crypto/
H A Dsource_address_token.h25 std::string ip() const { function in class:net::SourceAddressToken
33 void set_ip(base::StringPiece ip) { argument
34 ip_ = ip.as_string();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_libunwind-inl.h77 void *ip; variable
107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) {
113 result[n++] = ip;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_libunwind-inl.h77 void *ip; variable
107 if (unw_get_reg(&cursor, UNW_REG_IP, (unw_word_t *) &ip) < 0) {
113 result[n++] = ip;
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.mptr/
H A Dp3.cpp19 int A::*ip = &A::s; // expected-error {{cannot initialize a variable of type 'int A::*' with an rvalue of type 'int *'}} member in class:A
/external/clang/test/CXX/except/except.handle/
H A Dp16.cpp13 int *ip = 0; local
14 ptr = ip; // expected-error{{assigning to 'float *' from incompatible type 'int *'}}
/external/clang/test/Misc/
H A Dmessage-length.c21 void a_very_long_line(int *ip, float *FloatPointer) { argument
22 for (int ALongIndexName = 0; ALongIndexName < 100; ALongIndexName++) if (ip[ALongIndexName] == 17) a_func_to_call(ip == FloatPointer, ip[ALongIndexName], FloatPointer[ALongIndexName]);
/external/valgrind/main/helgrind/tests/
H A Dhg03_inherit.c15 volatile int *ip = (int *)v; local
17 *ip += 44;
18 *ip *= 2;
25 volatile int *ip = (int *)v; local
28 *ip += 88;
29 *ip *= 3;

Completed in 1127 milliseconds

1234567891011>>