Searched refs:implicit (Results 1 - 25 of 57) sorted by relevance

123

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
H A DCollectionStartEvent.java25 // The implicit flag of a collection start event indicates if the tag may be
27 private final boolean implicit; field in class:CollectionStartEvent
31 public CollectionStartEvent(String anchor, String tag, boolean implicit, Mark startMark, argument
35 this.implicit = implicit;
56 return this.implicit;
71 return super.getArguments() + ", tag=" + tag + ", implicit=" + implicit;
H A DScalarEvent.java29 // The implicit flag of a scalar event is a pair of boolean values that
32 private final ImplicitTuple implicit; field in class:ScalarEvent
34 public ScalarEvent(String anchor, String tag, ImplicitTuple implicit, String value, argument
38 this.implicit = implicit;
89 return this.implicit;
94 return super.getArguments() + ", tag=" + tag + ", " + implicit + ", value=" + value;
H A DMappingStartEvent.java35 public MappingStartEvent(String anchor, String tag, boolean implicit, Mark startMark, argument
37 super(anchor, tag, implicit, startMark, endMark, flowStyle);
H A DSequenceStartEvent.java30 public SequenceStartEvent(String anchor, String tag, boolean implicit, Mark startMark, argument
32 super(anchor, tag, implicit, startMark, endMark, flowStyle);
/external/clang/test/SemaCXX/
H A Dwarn-unused-variables-error.cpp8 expected-error{{implicit instantiation of undefined template 'PR6948::X<char>'}}
H A Dattr-format.cpp12 expected-error{{implicit this argument as the format string}}
16 expected-error{{invalid for the implicit this argument}}
27 // PR8625: correctly interpret static member calls as not having an implicit
39 // Make sure we interpret member operator calls as having an implicit
H A Dattr-nonnull.cpp12 expected-error{{invalid for the implicit this argument}}
H A Dcast-conversion.cpp11 struct B { // expected-note 3 {{candidate constructor (the implicit copy constructor) not viable}} \
12 expected-note 3 {{candidate constructor (the implicit move constructor) not viable}}
H A Dconversion.cpp19 return (E - I); // expected-warning {{implicit conversion loses integer precision}}
27 return x; // expected-warning {{implicit conversion loses integer precision}}
53 A() : x(10) {} // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to 2}}
61 int a = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
63 b = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
65 int c = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
67 d = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
68 bool bl = NULL; // expected-warning {{implicit conversion of NULL constant to 'bool'}}
69 char ch = NULL; // expected-warning {{implicit conversion of NULL constant to 'char'}}
70 unsigned char uch = NULL; // expected-warning {{implicit conversio
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/
H A DEventConstructor.java68 List<Boolean> implicitList = (List<Boolean>) mapping.get("implicit");
69 ImplicitTuple implicit;
71 implicit = new ImplicitTuple(false, true);
73 implicit = new ImplicitTuple((Boolean) implicitList.get(0),
76 value = new ScalarEvent((String) mapping.get("anchor"), tag, implicit, v, null,
80 Boolean implicit = (Boolean) mapping.get("implicit");
81 if (implicit == null) {
82 implicit = true;
84 value = new SequenceStartEvent((String) mapping.get("anchor"), tag, implicit, nul
[all...]
/external/clang/test/Sema/
H A Dimplicit-builtin-decl.c28 expected-warning {{implicit declaration of function 'fprintf' is invalid in C99}}
H A Dimplicit-decl.c12 if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}} \
13 expected-error {{implicit declaration of function '_CFCalendarDecomposeAbsoluteTimeV' is invalid in C99}}
16 printg("Hello, World!\n"); // expected-error{{implicit declaration of function 'printg' is invalid in C99}} \
30 formatd("Hello, World!\n"); // expected-error{{implicit declaration of function 'formatd' is invalid in C99}} \
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp19 auto implicit = [&] { print(values...); }; local
20 implicit();
/external/boringssl/src/crypto/cipher/test/
H A Dmake_all_legacy_aead_tests.sh9 go run make_legacy_aead_tests.go -cipher aes128 -mac sha1 -implicit-iv > aes_128_cbc_sha1_tls_implicit_iv_tests.txt
13 go run make_legacy_aead_tests.go -cipher aes256 -mac sha1 -implicit-iv > aes_256_cbc_sha1_tls_implicit_iv_tests.txt
18 go run make_legacy_aead_tests.go -cipher 3des -mac sha1 -implicit-iv > des_ede3_cbc_sha1_tls_implicit_iv_tests.txt
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp156 expected-note {{in implicit call to 'operator++' for iterator of type 'NoIncr'}}
165 expected-note {{in implicit call to 'operator!=' for iterator of type 'NoNotEq'}}
176 expected-note {{in implicit call to 'operator*' for iterator of type 'NoDeref'}}
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_operand_list.c74 char explicit = 1, implicit = 1; local
80 /* note: explicit and implicit can be ORed together to
84 implicit = 0;
90 type = type & 0x0F; /* mask out explicit/implicit operands */
93 if (! implicit && (list->op.flags & op_implied) ) {
94 /* operand is implicit */
99 /* operand is not implicit */
/external/iproute2/ip/
H A DAndroid.mk26 -Wno-implicit-function-declaration \
/external/llvm/test/ExecutionEngine/RuntimeDyld/AArch64/
H A DMachO_ARM64_relocations.s29 # instruction perfroms an implicit shift on the encoded immediate (imm<<3).
44 # entry within the page. The ldr instruction perfroms an implicit shift on the
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
H A DResolver.java28 * Resolver tries to detect a type by content (when the tag is implicit)
65 // The following implicit resolver is only for documentation
102 public Tag resolve(NodeId kind, String value, boolean implicit) { argument
103 if (kind == NodeId.scalar && implicit) {
/external/dhcpcd-6.8.2/
H A DAndroid.mk70 # Compiler complains about implicit function delcarations in dhcpcd.c,
72 LOCAL_CFLAGS += -Wno-implicit-function-declaration
/external/snakeyaml/src/test/java/org/pyyaml/
H A DCanonicalScanner.java193 List<Integer> implicit = new ArrayList<Integer>(2);
194 implicit.add(new Integer(1));
195 implicit.add(new Integer(1));
196 return new DirectiveToken<Integer>("YAML", implicit, mark, mark);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java56 private boolean implicit; field in class:XMPNode
562 * @return Returns the implicit flag
566 return implicit;
571 * @param implicit Sets the implicit node flag
573 public void setImplicit(boolean implicit) argument
575 this.implicit = implicit;
/external/autotest/client/deps/iwcap/src/
H A DMakefile15 CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration
/external/opencv3/platforms/osx/
H A Dbuild_framework.py54 "-DCMAKE_C_FLAGS=\"-Wno-implicit-function-declaration\" " +
/external/libevent/
H A DAndroid.mk56 -Wno-implicit-function-declaration \

Completed in 673 milliseconds

123