OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yin
(Results
1 - 3
of
3
) sorted by null
/external/llvm/unittests/Support/
YAMLIOTest.cpp
61
Input
yin
("---\nfoo: 3\nbar: 5\n...\n");
62
yin
>> doc;
64
EXPECT_FALSE(
yin
.error());
75
Input
yin
("---\n - foo: 3\n bar: 5\n - foo: 7\n bar: 9\n...\n");
76
yin
>> seq;
78
EXPECT_FALSE(
yin
.error());
111
Input
yin
(intermediate);
113
yin
>> seq2;
115
EXPECT_FALSE(
yin
.error());
182
Input
yin
("---\n
[
all
...]
/external/llvm/include/llvm/Support/
YAMLTraits.h
934
operator>>(Input &
yin
, T &docList) {
936
while (
yin
.setCurrentDocument() ) {
937
yamlize(
yin
, DocumentListTraits<T>::element(
yin
, docList, i), true);
938
if (
yin
.error() )
939
return
yin
;
940
yin
.nextDocument();
943
return
yin
;
950
operator>>(Input &
yin
, T &docMap) {
951
yin
.setCurrentDocument()
[
all
...]
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java
221
double
yin
= metrics.heightPixels / metrics.ydpi;
local
222
double diag = Math.sqrt(Math.pow(xin, 2) + Math.pow(
yin
, 2));
Completed in 36 milliseconds