OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:with
(Results
401 - 425
of
179039
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
iso8859_4.py
1
""" Python Character Mapping Codec iso8859_4 generated from 'MAPPINGS/ISO8859/8859-4.TXT'
with
gencodec.py.
209
u'\u0104' # 0xA1 -> LATIN CAPITAL LETTER A
WITH
OGONEK
211
u'\u0156' # 0xA3 -> LATIN CAPITAL LETTER R
WITH
CEDILLA
213
u'\u0128' # 0xA5 -> LATIN CAPITAL LETTER I
WITH
TILDE
214
u'\u013b' # 0xA6 -> LATIN CAPITAL LETTER L
WITH
CEDILLA
217
u'\u0160' # 0xA9 -> LATIN CAPITAL LETTER S
WITH
CARON
218
u'\u0112' # 0xAA -> LATIN CAPITAL LETTER E
WITH
MACRON
219
u'\u0122' # 0xAB -> LATIN CAPITAL LETTER G
WITH
CEDILLA
220
u'\u0166' # 0xAC -> LATIN CAPITAL LETTER T
WITH
STROKE
222
u'\u017d' # 0xAE -> LATIN CAPITAL LETTER Z
WITH
CARO
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
iso8859_4.py
1
""" Python Character Mapping Codec iso8859_4 generated from 'MAPPINGS/ISO8859/8859-4.TXT'
with
gencodec.py.
209
u'\u0104' # 0xA1 -> LATIN CAPITAL LETTER A
WITH
OGONEK
211
u'\u0156' # 0xA3 -> LATIN CAPITAL LETTER R
WITH
CEDILLA
213
u'\u0128' # 0xA5 -> LATIN CAPITAL LETTER I
WITH
TILDE
214
u'\u013b' # 0xA6 -> LATIN CAPITAL LETTER L
WITH
CEDILLA
217
u'\u0160' # 0xA9 -> LATIN CAPITAL LETTER S
WITH
CARON
218
u'\u0112' # 0xAA -> LATIN CAPITAL LETTER E
WITH
MACRON
219
u'\u0122' # 0xAB -> LATIN CAPITAL LETTER G
WITH
CEDILLA
220
u'\u0166' # 0xAC -> LATIN CAPITAL LETTER T
WITH
STROKE
222
u'\u017d' # 0xAE -> LATIN CAPITAL LETTER Z
WITH
CARO
[
all
...]
/external/clang/test/Parser/
altivec.c
52
__vector long vv_l; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
53
__vector signed long vv_sl; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
54
__vector unsigned long vv_ul; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
55
__vector long int vv_li; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
56
__vector signed long int vv_sli; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
57
__vector unsigned long int vv_uli; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
58
vector long v_l; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
59
vector signed long v_sl; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
60
vector unsigned long v_ul; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}}
61
vector long int v_li; // expected-warning {{Use of 'long'
with
'__vector' is deprecated}
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
CodePointUtils.java
5
* you may not use this file except in compliance
with
the License.
21
// Utility methods related
with
code points used for tests.
30
0x00E0 /* LATIN SMALL LETTER A
WITH
GRAVE */,
31
0x00E1 /* LATIN SMALL LETTER A
WITH
ACUTE */,
32
0x00E2 /* LATIN SMALL LETTER A
WITH
CIRCUMFLEX */,
33
0x00E3 /* LATIN SMALL LETTER A
WITH
TILDE */,
34
0x00E4 /* LATIN SMALL LETTER A
WITH
DIAERESIS */,
35
0x00E5 /* LATIN SMALL LETTER A
WITH
RING ABOVE */,
37
0x00E7 /* LATIN SMALL LETTER C
WITH
CEDILLA */,
38
0x00E8 /* LATIN SMALL LETTER E
WITH
GRAVE */
[
all
...]
/external/clang/test/Sema/
string-init.c
11
char a3[] = u"a"; // expected-error{{initializing char array
with
wide string literal}}
12
char a4[] = U"a"; // expected-error{{initializing char array
with
wide string literal}}
13
char a5[] = L"a"; // expected-error{{initializing char array
with
wide string literal}}
15
wchar_t b1[] = "a"; // expected-error{{initializing wide char array
with
non-wide string literal}}
16
wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array
with
non-wide string literal}}
17
wchar_t b3[] = u"a"; // expected-error{{initializing wide char array
with
incompatible wide string literal}}
18
wchar_t b4[] = U"a"; // expected-error{{initializing wide char array
with
incompatible wide string literal}}
21
char16_t c1[] = "a"; // expected-error{{initializing wide char array
with
non-wide string literal}}
22
char16_t c2[] = u8"a"; // expected-error{{initializing wide char array
with
non-wide string literal}}
24
char16_t c4[] = U"a"; // expected-error{{initializing wide char array
with
incompatible wide string literal}
[
all
...]
bool-compare.c
8
if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1
with
boolean expression is always false}}
33
if (!a > 1) {} // expected-warning {{comparison of constant 1
with
boolean expression is always false}}
34
if (!a > 2) {} // expected-warning {{comparison of constant 2
with
boolean expression is always false}}
37
if (!a > -1) {} // expected-warning {{comparison of constant -1
with
boolean expression is always true}}
39
if (!a < 0) {} // expected-warning {{comparison of constant 0
with
boolean expression is always false}}
41
if (!a < 2) {} // expected-warning {{comparison of constant 2
with
boolean expression is always true}}
44
if (!a < -1) {} // expected-warning {{comparison of constant -1
with
boolean expression is always false}}
46
if (!a >= 0) {} // expected-warning {{comparison of constant 0
with
boolean expression is always true}}
48
if (!a >= 2) {} // expected-warning {{comparison of constant 2
with
boolean expression is always false}}
51
if (!a >= -1) {} // expected-warning {{comparison of constant -1
with
boolean expression is always true}
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeySpecParserTestsBase.java
5
* you may not use this file except in compliance
with
the License.
110
assertParser("Single letter
with
outputText", "a|abc",
112
assertParser("Single letter
with
surrogate outputText", "a|" + SURROGATE_PAIRS4,
114
assertParser("Single surrogate
with
outputText", SURROGATE_PAIR3 + "|abc",
116
assertParser("Single letter
with
escaped outputText", "a|a\\|c",
118
assertParser("Single letter
with
escaped surrogate outputText",
121
assertParser("Single letter
with
comma outputText", "a|a,b",
123
assertParser("Single letter
with
escaped comma outputText", "a|a\\,b",
125
assertParser("Single letter
with
outputText starts
with
bang", "a|!bc"
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
TestsRomanian.java
5
* you may not use this file except in compliance
with
the License.
53
// U+021B: "?" LATIN SMALL LETTER T
WITH
COMMA BELOW
55
// U+00EE: "î" LATIN SMALL LETTER I
WITH
CIRCUMFLEX
56
// U+00EF: "ï" LATIN SMALL LETTER I
WITH
DIAERESIS
57
// U+00EC: "ì" LATIN SMALL LETTER I
WITH
GRAVE
58
// U+00ED: "í" LATIN SMALL LETTER I
WITH
ACUTE
59
// U+012F: "?" LATIN SMALL LETTER I
WITH
OGONEK
60
// U+012B: "?" LATIN SMALL LETTER I
WITH
MACRON
62
// U+00E2: "â" LATIN SMALL LETTER A
WITH
CIRCUMFLEX
63
// U+00E3: "ã" LATIN SMALL LETTER A
WITH
TILD
[
all
...]
TestsNorwegian.java
5
* you may not use this file except in compliance
with
the License.
53
// U+00E9: "é" LATIN SMALL LETTER E
WITH
ACUTE
54
// U+00E8: "è" LATIN SMALL LETTER E
WITH
GRAVE
55
// U+00EA: "ê" LATIN SMALL LETTER E
WITH
CIRCUMFLEX
56
// U+00EB: "ë" LATIN SMALL LETTER E
WITH
DIAERESIS
57
// U+0119: "?" LATIN SMALL LETTER E
WITH
OGONEK
58
// U+0117: "?" LATIN SMALL LETTER E
WITH
DOT ABOVE
59
// U+0113: "?" LATIN SMALL LETTER E
WITH
MACRON
62
// U+00FC: "ü" LATIN SMALL LETTER U
WITH
DIAERESIS
63
// U+00FB: "û" LATIN SMALL LETTER U
WITH
CIRCUMFLE
[
all
...]
/external/llvm/include/llvm/Transforms/Utils/
IntegerDivision.h
27
///
with
the generated code. This currently generates code using the udiv
32
/// @brief Replace Rem
with
generated code.
35
/// Generate code to divide two integers, replacing Div
with
the generated
41
/// @brief Replace Div
with
generated code.
45
///
with
the generated code. Uses ExpandReminder
with
a 32bit Rem which
46
/// makes it useful for targets
with
little or no support for less than
49
/// @brief Replace Rem
with
generated code.
53
///
with
the generated code. Uses ExpandReminder
with
a 64bit Rem
[
all
...]
/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.
44
* Constructs a new {@code AssertionError}
with
a message based on calling
45
* {@link String#valueOf(Object)}
with
the specified object. If the object
61
* Constructs a new {@code AssertionError}
with
a message based on calling
62
* {@link String#valueOf(boolean)}
with
the specified boolean value.
72
* Constructs a new {@code AssertionError}
with
a message based on calling
73
* {@link String#valueOf(char)}
with
the specified character value
[
all
...]
/development/ndk/platforms/android-13/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/chromium_org/tools/gyp/test/mac/debuginfo/
test.gyp
11
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
21
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
31
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
41
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
53
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
64
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
76
'DEBUG_INFORMATION_FORMAT': 'dwarf-
with
-dsym',
/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values-rm/
donottranslate-more-keys.xml
8
** you may not use this file except in compliance
with
the License.
21
<!-- U+00F2: "ò" LATIN SMALL LETTER O
WITH
GRAVE
22
U+00F3: "ó" LATIN SMALL LETTER O
WITH
ACUTE
23
U+00F6: "ö" LATIN SMALL LETTER O
WITH
DIAERESIS
24
U+00F4: "ô" LATIN SMALL LETTER O
WITH
CIRCUMFLEX
25
U+00F5: "õ" LATIN SMALL LETTER O
WITH
TILDE
27
U+00F8: "ø" LATIN SMALL LETTER O
WITH
STROKE -->
/prebuilts/ndk/9/platforms/android-13/arch-arm/usr/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.
/prebuilts/ndk/9/platforms/android-13/arch-mips/usr/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.
/prebuilts/ndk/9/platforms/android-13/arch-x86/usr/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.
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/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.
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/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.
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/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.
/prebuilts/ndk/9/platforms/android-15/arch-arm/usr/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.
/prebuilts/ndk/9/platforms/android-15/arch-mips/usr/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.
/prebuilts/ndk/9/platforms/android-15/arch-x86/usr/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/chromium_org/third_party/libaddressinput/chromium/cpp/test/
region_data_constants_test.cc
4
// you may not use this file except in compliance
with
the License.
26
// Returns AssertionSuccess if |data| begins
with
'{' and ends
with
'}'.
32
return testing::AssertionFailure() << data << " does not start
with
'{'";
35
return testing::AssertionFailure() << data << " does not end
with
'}'";
40
// Verifies that the default region data begins
with
'{' and ends
with
'}'.
55
// Verifies that a region data value begins
with
'{' and end
with
'}', for
/external/clang/test/CodeGenObjC/
terminate.m
1
// RUN: %clang_cc1 -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.8 -emit-llvm -fexceptions -fobjc-exceptions -o - %s | FileCheck %s -check-prefix=CHECK-
WITH
12
// CHECK-
WITH
-LABEL: 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()
Completed in 6591 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>