HomeSort by relevance Sort by last modified time
    Searched full:with (Results 176 - 200 of 93380) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/oprofile/doc/xsl/
xhtml-chunk.xsl 31 <xsl:with-param name="base.dir" select="$base.dir"/>
32 <xsl:with-param name="base.name" select="$chunkfn"/>
36 <!-- FIXME: use Strict when the problems with width on td/th are
38 <xsl:call-template name="write.chunk.with.doctype">
39 <xsl:with-param name="filename" select="$filename"/>
40 <xsl:with-param name="indent" select="'yes'"/>
41 <xsl:with-param name="doctype-public">-//W3C//DTD XHTML 1.0 Transitional//EN</xsl:with-param>
42 <xsl:with-param name="doctype-system">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</xsl:with-param
    [all...]
  /external/clang/test/ARCMT/
migrate-space-in-path.m 2 // RUN: %clang_cc1 -arcmt-migrate -arcmt-migrate-directory %t.migrate %S/"with space"/test1.m.in -x objective-c
3 // RUN: %clang_cc1 -arcmt-migrate -arcmt-migrate-directory %t.migrate %S/"with space"/test2.m.in -x objective-c
4 // RUN: c-arcmt-test -arcmt-migrate-directory %t.migrate | arcmt-test -verify-transformed-files %S/"with space"/test1.m.in.result %S/"with space"/test2.m.in.result %S/"with space"/test.h.result
  /external/clang/test/SemaCXX/
attr-regparm.cpp 14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with with regparm(2) attribute was previously declared with the regparm(3) attribute}}
15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with with regparm(2) attribute was previously declared without the regparm attribute}}
cxx98-compat-pedantic.cpp 9 #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}}
11 #define VA_MACRO(x, ...) x // expected-warning {{variadic macros are incompatible with C++98}}
12 VA_MACRO(,x) // expected-warning {{empty macro argument list is incompatible with C++98}}
14 ; // expected-warning {{extra ';' outside of a function is incompatible with C++98}}
17 Enum_value, // expected-warning {{commas at the end of enumerator lists are incompatible with C++98}}
22 template struct InstantiationAfterSpecialization<int>; // expected-warning {{explicit instantiation of 'InstantiationAfterSpecialization<int>' that occurs after an explicit specialization is incompatible with C++98}}
25 void (*FnPtr)() = (void(*)())dlsym(); // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
26 void *FnVoidPtr = (void*)&dlsym; // expected-warning {{cast between pointer-to-function and pointer-to-object is incompatible with C++98}}
31 int *ArraySizeConversion = new int[ConvertToInt()]; // expected-warning {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'int' is incompatible with C++98}}
  /external/icu4c/test/cintltst/
cmsgtst.h 27 * Test u_formatMessage() with various test patterns
31 * Test u_formatMessage() with sample test Patterns
39 * Test u_formatMessage() with choice option
43 * Test u_formatMessage() with Select option
47 * Test u_parseMessage() with various test patterns()
  /external/valgrind/main/memcheck/tests/linux/
with-space.vgtest 6 # easily rename an executable with a .dSYM -- the original executable name
9 # the renaming in the first place by just using 'with space' as the
11 prereq: cp ../manuel1 'with space'
12 prog: 'with space'
14 cleanup: rm 'with space'
  /external/clang/test/Parser/
altivec.c 50 __vector long vv_l; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
51 __vector signed long vv_sl; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
52 __vector unsigned long vv_ul; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
53 __vector long int vv_li; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
54 __vector signed long int vv_sli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
55 __vector unsigned long int vv_uli; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
56 vector long v_l; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
57 vector signed long v_sl; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
58 vector unsigned long v_ul; // expected-warning {{Use of 'long' with '__vector' is deprecated}}
59 vector long int v_li; // expected-warning {{Use of 'long' with '__vector' is deprecated}
    [all...]
check-syntax-1.m 3 int @interface bla ; // expected-error {{cannot combine with previous 'int' declaration specifier}}
14 (void) x; // expected-error {{method type specifier must start with '-' or '+'}}
15 (int)im; // expected-error {{method type specifier must start with '-' or '+'}} \
  /libcore/luni/src/main/java/java/lang/
AssertionError.java 3 * contributor license agreements. See the NOTICE file distributed with
6 * (the "License"); you may not use this file except in compliance with
30 * Constructs a new {@code AssertionError} with no message.
36 * Constructs a new {@code AssertionError} with the given detail message and cause.
45 * Constructs a new {@code AssertionError} with a message based on calling
46 * {@link String#valueOf(Object)} with the specified object. If the object
60 * Constructs a new {@code AssertionError} with a message based on calling
61 * {@link String#valueOf(boolean)} with the specified boolean value.
71 * Constructs a new {@code AssertionError} with a message based on calling
72 * {@link String#valueOf(char)} with the specified character value
    [all...]
  /external/clang/test/CodeGenCXX/
threadsafe-statics.cpp 1 // RUN: %clang_cc1 -emit-llvm -triple=x86_64-apple-darwin10 -o - %s | FileCheck -check-prefix=WITH-TSS %s
6 // WITH-TSS: @_ZZ1gvE1a = internal global i32 0, align 4
7 // WITH-TSS: @_ZGVZ1gvE1a = internal global i64 0
9 // WITH-TSS: define void @_Z1gv() nounwind
10 // WITH-TSS: call i32 @__cxa_guard_acquire
11 // WITH-TSS: call void @__cxa_guard_release
12 // WITH-TSS: ret void
  /external/llvm/test/Archive/
README.txt 10 GNU.a - constructed on Linux with GNU ar
11 MacOSX.a - constructed on Mac OS X with its native BSD4.4 ar
12 SVR4.a - constructed on Solaris with /usr/ccs/bin/ar
13 xpg4.a - constructed on Solaris with /usr/xpg4/bin/ar
18 oddlen - a member with an odd lengthed name and content
19 evenlen - a member with an even lengthed name and content
21 very_long_bytecode_file_name.bc - LLVM bytecode file with really long name
  /frameworks/base/native/include/android/
native_window_jni.h 5 * you may not use this file except in compliance with the License.
29 * Return the ANativeWindow associated with a Java Surface object,
30 * for interacting with it through native code. This acquires a reference
32 * when done with it so that it doesn't leak.
37 * Return the ANativeWindow associated with a Java SurfaceTexture object,
38 * for interacting with it through native code. This acquires a reference
40 * when done with it so that it doesn't leak.
  /external/clang/test/CodeGenObjC/
terminate.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-fragile-abi -emit-llvm -fexceptions -fobjc-exceptions -fobjc-runtime-has-terminate -o - %s | FileCheck %s -check-prefix=CHECK-WITH
12 // CHECK-WITH: define void @test0()
13 // CHECK-WITH: [[PTR:%.*]] = alloca i8*,
14 // CHECK-WITH: call void @destroy(i8** [[PTR]])
15 // CHECK-WITH-NEXT: ret void
16 // CHECK-WITH: invoke void @destroy(i8** [[PTR]])
17 // CHECK-WITH: landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gcc_personality_v0 to i8*)
18 // CHECK-WITH-NEXT: catch i8* null
19 // CHECK-WITH-NEXT: call void @objc_terminate()
  /development/tools/glesv2debugger/
contexts.xml 3 <description>This is the context help for the sample view with a table viewer. It was generated by a PDE template.</description>
6 <with variable="platform">
8 </with>
  /external/clang/test/ASTMerge/Inputs/
category1.m 27 // Category with implementation
34 // Category with implementation
41 // Category with mismatched implementation
category2.m 29 // Category with implementation
36 // Category with implementation
43 // Category with mismatched implementation
  /external/markdown/MarkdownTest/Tests_2004/
Yuri-Links-in-Headers.text 10 # A header with a [link](http://www.link.com)
12 First with a hash
14 Another with a [link][a]
Yuri-Links-in-Headers.text-out 13 <h1>A header with a <a href="http://www.link.com">link</a></h1>
14 <p>First with a hash</p>
15 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
Yuri-Links-in-Headers.text-res 13 <h1>A header with a <a href="http://www.link.com">link</a></h1>
14 <p>First with a hash</p>
15 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
removeEOL.pl 5 # Redistribution and use in source and binary forms, with or without
13 # in the documentation and/or other materials provided with the
43 $title = "removeEOL: Line with Windows line ending.";
44 ok(removeEOL("This line ends with a Windows line ending.\r\n") eq "This line ends with a Windows line ending.", $title);
47 $title = "removeEOL: Line with Unix line ending.";
48 ok(removeEOL("This line ends with a Unix line ending.\n") eq "This line ends with a Unix line ending.", $title);
51 $title = "removeEOL: Line with Mac line ending.";
52 ok(removeEOL("This line ends with a Mac line ending.\r") eq "This line ends with a Mac line ending.", $title)
    [all...]
  /frameworks/base/core/java/android/hardware/usb/
package.html 3 <p>Provides support to communicate with USB hardware peripherals that are connected to Android-powered
5 communicate with connected hardware peripherals. Use {@link android.hardware.usb.UsbDevice} to
6 communicate with the hardware peripheral if the Android-powered device is acting as the USB host. Use
  /frameworks/base/libs/usb/tests/AccessoryChat/
README.txt 3 AccessoryChat - A Java app with a chat-like UI that sends and receives strings
6 accessorychat - A C command-line program that communicates with AccessoryChat.
10 android device with USB host support
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_framestitching.h 5 * you may not use this file except in compliance with the License.
51 4.5 microseconds with 3 points
52 4.7 microseconds with 4 points
53 5.0 microseconds with 5 points
54 5.2 microseconds with 6 points
55 5.8 microseconds with 10 points
56 20 microseconds with 100 points
57 205 microseconds with 1000 points
58 2.9 milliseconds with 10000 points
59 50 milliseconds with 100000 point
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
contexts.xml 3 <description>This is the context help for the sample view with a table viewer. It was generated by a PDE template.</description>
6 <with variable="platform">
8 </with>
  /external/icu4c/data/unidata/norm2/
uts46.txt 84 00C0 >00E0 # 1.1 LATIN CAPITAL LETTER A WITH GRAVE
85 00C1 >00E1 # 1.1 LATIN CAPITAL LETTER A WITH ACUTE
86 00C2 >00E2 # 1.1 LATIN CAPITAL LETTER A WITH CIRCUMFLEX
87 00C3 >00E3 # 1.1 LATIN CAPITAL LETTER A WITH TILDE
88 00C4 >00E4 # 1.1 LATIN CAPITAL LETTER A WITH DIAERESIS
89 00C5 >00E5 # 1.1 LATIN CAPITAL LETTER A WITH RING ABOVE
91 00C7 >00E7 # 1.1 LATIN CAPITAL LETTER C WITH CEDILLA
92 00C8 >00E8 # 1.1 LATIN CAPITAL LETTER E WITH GRAVE
93 00C9 >00E9 # 1.1 LATIN CAPITAL LETTER E WITH ACUTE
94 00CA >00EA # 1.1 LATIN CAPITAL LETTER E WITH CIRCUMFLE
    [all...]

Completed in 235 milliseconds

1 2 3 4 5 6 78 91011>>