Home
last modified time | relevance | path

Searched refs:O2 (Results 1 – 25 of 288) sorted by relevance

12345678910>>...12

/third_party/libphonenumber/resources/carrier/en/
D44.txt95 # - Telefonica UK Limited: O2
111 447106|O2
112 447107|O2
141 447381|O2
142 447382|O2
162 447394|O2
163 447395|O2
231 447430|O2
232 447431|O2
300 447461|O2
[all …]
D420.txt15 420601|O2
16 420602|O2
20 420606|O2
21 420607|O2
23 420702|O2
42 4207050|O2
43 4207051|O2
44 4207052|O2
45 4207053|O2
46 4207054|O2
[all …]
D421.txt41 421940|Telefonica O2
45 421944|Telefonica O2
47 421947|Telefonica O2
48 421948|Telefonica O2
49 421949|Telefonica O2
D49.txt15 # O2 is run by Telefónica (the name listed in the ITU doc). The ITU doc also
40 491590|O2
50 49176|O2
53 49179|O2
/third_party/typescript/tests/baselines/reference/
DmoduleAugmentationInAmbientModule4.symbols3 /// <reference path="O2.d.ts" />
21 >x.foo2().x2 : Symbol(Cls2.x2, Decl(O2.d.ts, 1, 16))
22 >x.foo2 : Symbol(Observable.foo2, Decl(O2.d.ts, 3, 30))
24 >foo2 : Symbol(Observable.foo2, Decl(O2.d.ts, 3, 30))
25 >x2 : Symbol(Cls2.x2, Decl(O2.d.ts, 1, 16))
29 >"Observable" : Symbol("Observable", Decl(O.d.ts, 0, 0), Decl(O.d.ts, 9, 28), Decl(O2.d.ts, 1, 29))
32 >Observable : Symbol(Observable, Decl(O.d.ts, 0, 29), Decl(O.d.ts, 10, 25), Decl(O2.d.ts, 2, 25))
44 >"Map" : Symbol("Map", Decl(O.d.ts, 6, 1), Decl(O2.d.ts, 0, 0))
50 >"Observable" : Symbol("Observable", Decl(O.d.ts, 0, 0), Decl(O.d.ts, 9, 28), Decl(O2.d.ts, 1, 29))
53 >Observable : Symbol(Observable, Decl(O.d.ts, 0, 29), Decl(O.d.ts, 10, 25), Decl(O2.d.ts, 2, 25))
[all …]
Demitter.asyncGenerators.objectLiteralMethods.es5.symbols9 === tests/cases/conformance/emitter/es5/asyncGenerators/O2.ts ===
11 >o2 : Symbol(o2, Decl(O2.ts, 0, 5))
14 >f : Symbol(f, Decl(O2.ts, 0, 12))
17 >x : Symbol(x, Decl(O2.ts, 2, 13))
Demitter.asyncGenerators.objectLiteralMethods.es2015.symbols9 === tests/cases/conformance/emitter/es2015/asyncGenerators/O2.ts ===
11 >o2 : Symbol(o2, Decl(O2.ts, 0, 5))
14 >f : Symbol(f, Decl(O2.ts, 0, 12))
17 >x : Symbol(x, Decl(O2.ts, 2, 13))
Demitter.asyncGenerators.objectLiteralMethods.es2018.symbols9 === tests/cases/conformance/emitter/es2018/asyncGenerators/O2.ts ===
11 >o2 : Symbol(o2, Decl(O2.ts, 0, 5))
14 >f : Symbol(f, Decl(O2.ts, 0, 12))
17 >x : Symbol(x, Decl(O2.ts, 2, 13))
/third_party/rust/crates/nom/src/
Dinternal.rs247 fn map<G, O2>(self, g: G) -> Map<Self, G, O> in map()
249 G: Fn(O) -> O2, in map() argument
260 fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O> in flat_map() argument
263 H: Parser<I, O2, E>, in flat_map()
274 fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O> in and_then() argument
276 G: Parser<O, O2, E>, in and_then()
287 fn and<G, O2>(self, g: G) -> And<Self, G> in and() argument
289 G: Parser<I, O2, E>, in and()
306 fn into<O2: From<O>, E2: From<E>>(self) -> Into<Self, O, O2, E, E2> in into() argument
347 impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Fn(O1) -> O2> Parser<I, O2, E> for Map<F, G, O1> {
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h41 #define LOAD_WITH_OFFSET_X4(O0, O1, O2, O3, \ argument
45 "ulw %[" #O2 "], " #I3 "+" XSTR(I9) "*" #I7 "(%[" #I0 "]) \n\t" \
51 #define MUL_SHIFT_SUM(O0, O1, O2, O3, O4, O5, O6, O7, \ argument
56 "mul %[" #O2 "], %[" #I1 "], %[kC2] \n\t" \
64 "sra %[" #O2 "], %[" #O2 "], 16 \n\t" \
84 #define SRA_16(O0, O1, O2, O3, \ argument
88 "sra %[" #O2 "], %[" #I2 "], 16 \n\t" \
97 #define SHIFT_R_SUM_X2(O0, O1, O2, O3, O4, O5, O6, O7, \ argument
101 "addq.ph %[" #O2 "], %[" #I1 "], %[" #I5 "] \n\t" \
109 "shra.ph %[" #O2 "], %[" #O2 "], 3 \n\t" \
[all …]
/third_party/rust/crates/nom/src/combinator/
Dmod.rs73 pub fn map<I, O1, O2, E, F, G>(mut parser: F, mut f: G) -> impl FnMut(I) -> IResult<I, O2, E> in map() argument
76 G: FnMut(O1) -> O2, in map() argument
104 pub fn map_res<I: Clone, O1, O2, E: FromExternalError<I, E2>, E2, F, G>( in map_res() argument
107 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_res()
110 G: FnMut(O1) -> Result<O2, E2>, in map_res() argument
142 pub fn map_opt<I: Clone, O1, O2, E: ParseError<I>, F, G>( in map_opt() argument
145 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_opt()
148 G: FnMut(O1) -> Option<O2>, in map_opt() argument
176 pub fn map_parser<I, O1, O2, E: ParseError<I>, F, G>( in map_parser() argument
179 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_parser()
[all …]
/third_party/rust/crates/nom/src/sequence/
Dmod.rs29 pub fn pair<I, O1, O2, E: ParseError<I>, F, G>( in pair() argument
32 ) -> impl FnMut(I) -> IResult<I, (O1, O2), E> in pair() argument
35 G: Parser<I, O2, E>, in pair()
63 pub fn preceded<I, O1, O2, E: ParseError<I>, F, G>( in preceded() argument
66 ) -> impl FnMut(I) -> IResult<I, O2, E> in preceded()
69 G: Parser<I, O2, E>, in preceded()
97 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>( in terminated() argument
103 G: Parser<I, O2, E>, in terminated()
133 pub fn separated_pair<I, O1, O2, O3, E: ParseError<I>, F, G, H>( in separated_pair() argument
140 G: Parser<I, O2, E>, in separated_pair()
[all …]
/third_party/elfutils/tests/
Dtestfile-dwarf-45.source75 $ gcc -gdwarf-4 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c
76 $ gcc -gdwarf-4 -gno-as-loc-support -gno-variable-location-views -O2 -c hello.c
79 $ gcc -gdwarf-5 -gno-as-loc-support -gno-variable-location-views -O2 -c world.c
80 $ gcc -gdwarf-5 -gno-as-loc-support -gno-variable-location-views -O2 -c hello.c
83 $ gcc -gdwarf-4 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-worl…
84 $ gcc -gdwarf-4 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-hell…
87 $ gcc -gdwarf-5 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-worl…
88 $ gcc -gdwarf-5 -gsplit-dwarf -gno-as-loc-support -gno-variable-location-views -O2 -o testfile-hell…
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DMakefile10 CFLAGS = -fvisibility=hidden -MMD -O2 -g -w -fsigned-char
12 CFLAGS = -fvisibility=hidden -flto -MMD -O2 -g -w -fsigned-char
14 CFLAGS = -MMD -O2 -g -w -fsigned-char
20 CFLAGS = -MMD -O2 -g -w -fsigned-char
22 CFLAGS = -flto -MMD -O2 -g -w -fsigned-char
27 CFLAGS = -MMD -O2 -g -w -fsigned-char
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DMakefile10 CFLAGS = -fvisibility=hidden -MMD -O2 -g -w -fsigned-char
12 CFLAGS = -fvisibility=hidden -flto -MMD -O2 -g -w -fsigned-char
14 CFLAGS = -MMD -O2 -g -w -fsigned-char
20 CFLAGS = -MMD -O2 -g -w -fsigned-char
22 CFLAGS = -flto -MMD -O2 -g -w -fsigned-char
27 CFLAGS = -MMD -O2 -g -w -fsigned-char
/third_party/wpa_supplicant/wpa_supplicant-2.9/build/
DMakefile5 CFLAGS := -MMD -O2 -g -w -fsigned-char
9 CFLAGS := -flto -MMD -O2 -g -w -fsigned-char
48 $(CC) -O2 -shared -fPIC -Wl,-z,defs objs/*.o -o $@ $(WPA_LDFLAGS) $(LDFLAGS)
50 $(CC) -flto -O2 -shared -fPIC -Wl,-z,defs objs/*.o -o $@ $(WPA_LDFLAGS) $(LDFLAGS)
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/build/
DMakefile5 CFLAGS := -MMD -O2 -g -w -fsigned-char
9 CFLAGS := -flto -MMD -O2 -g -w -fsigned-char
48 $(CC) -O2 -shared -fPIC -Wl,-z,defs objs/*.o -o $@ $(WPA_LDFLAGS) $(LDFLAGS)
50 $(CC) -flto -O2 -shared -fPIC -Wl,-z,defs objs/*.o -o $@ $(WPA_LDFLAGS) $(LDFLAGS)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp831 static bool notDifferentParent(const Value *O1, const Value *O2) { in notDifferentParent() argument
834 const Function *F2 = getParent(O2); in notDifferentParent()
1738 const Value *O2) { in aliasCheck() argument
1769 if (O2 == nullptr) in aliasCheck()
1770 O2 = GetUnderlyingObject(V2, DL, MaxLookupSearchDepth); in aliasCheck()
1777 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2)) in aliasCheck()
1781 if (O1 != O2) { in aliasCheck()
1783 if (isIdentifiedObject(O1) && isIdentifiedObject(O2)) in aliasCheck()
1787 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) || in aliasCheck()
1788 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1))) in aliasCheck()
[all …]
/third_party/gptfdisk/
DMakefile69 CXXFLAGS+=-O2 -Wall -D_FILE_OFFSET_BITS=64
89 CXXFLAGS=-O2 -Wall -D_FILE_OFFSET_BITS=64 -static -static-libgcc -static-libstdc++
109 CXXFLAGS=-O2 -Wall -D_FILE_OFFSET_BITS=64 -static -static-libgcc -static-libstdc++
124 CXXFLAGS+=-O2 -Wall -D_FILE_OFFSET_BITS=64 -I /usr/local/include
130 …CXXFLAGS=$(FATBINFLAGS) -O2 -Wall -D_FILE_OFFSET_BITS=64 -stdlib=libc++ -I/opt/local/include -I /u…
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/
Dc2wasm-exe.sh8 --em-config wasm-install/emscripten_config_vanilla -O2 && \
10 ./pnacl-sz a.out.wasm -o a.out.o -filetype=obj -O2 && \
/third_party/libwebsockets/contrib/
Dcross-arm-android-gnueabi.cmake23 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
33 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
34 set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
Dcross-arm-linux-gnueabihf.cmake20 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
30 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
31 set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
Dcross-ming.cmake23 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
33 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
34 set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
Dcross-aarch64-qnx.cmake26 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
36 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
37 set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2")
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
DMakefile10 CFLAGS = -fvisibility=hidden -MMD -O2 -g -w -fsigned-char
12 CFLAGS = -fvisibility=hidden -flto -MMD -O2 -g -w -fsigned-char
14 CFLAGS = -MMD -O2 -g -w -fsigned-char

12345678910>>...12