OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fSymbols
(Results
1 - 20
of
20
) sorted by null
/external/skia/src/sksl/ir/
SkSLBlock.h
23
,
fSymbols
(std::move(symbols))
40
return std::unique_ptr<Statement>(new Block(fOffset, std::move(cloned),
fSymbols
));
53
// it's important to keep fStatements defined after (and thus destroyed before)
fSymbols
,
55
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLEnum.h
21
,
fSymbols
(std::move(symbols)) {}
24
return std::unique_ptr<ProgramElement>(new Enum(fOffset, fTypeName,
fSymbols
));
31
for (const auto& pair : *
fSymbols
) {
47
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLForStatement.h
25
,
fSymbols
(symbols)
34
fStatement->clone(),
fSymbols
));
54
// it's important to keep
fSymbols
defined first (and thus destroyed last) because destroying
56
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLSwitchStatement.h
26
,
fSymbols
(std::move(symbols))
35
std::move(cloned),
fSymbols
));
53
// it's important to keep fCases defined after (and thus destroyed before)
fSymbols
, because
55
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLSymbolTable.h
59
std::unordered_map<StringFragment, const Symbol*>
fSymbols
;
SkSLProgram.h
231
,
fSymbols
(symbols)
272
// it's important to keep fElements defined after (and thus destroyed before)
fSymbols
,
274
std::shared_ptr<SymbolTable>
fSymbols
;
/external/skqp/src/sksl/ir/
SkSLBlock.h
23
,
fSymbols
(std::move(symbols))
40
return std::unique_ptr<Statement>(new Block(fOffset, std::move(cloned),
fSymbols
));
53
// it's important to keep fStatements defined after (and thus destroyed before)
fSymbols
,
55
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLEnum.h
21
,
fSymbols
(std::move(symbols)) {}
24
return std::unique_ptr<ProgramElement>(new Enum(fOffset, fTypeName,
fSymbols
));
31
for (const auto& pair : *
fSymbols
) {
47
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLForStatement.h
25
,
fSymbols
(symbols)
34
fStatement->clone(),
fSymbols
));
54
// it's important to keep
fSymbols
defined first (and thus destroyed last) because destroying
56
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLSwitchStatement.h
26
,
fSymbols
(std::move(symbols))
35
std::move(cloned),
fSymbols
));
53
// it's important to keep fCases defined after (and thus destroyed before)
fSymbols
, because
55
const std::shared_ptr<SymbolTable>
fSymbols
;
SkSLSymbolTable.h
59
std::unordered_map<StringFragment, const Symbol*>
fSymbols
;
SkSLProgram.h
221
,
fSymbols
(symbols)
262
// it's important to keep fElements defined after (and thus destroyed before)
fSymbols
,
264
std::shared_ptr<SymbolTable>
fSymbols
;
/external/icu/icu4c/source/i18n/
number_scientific.h
56
const DecimalFormatSymbols *
fSymbols
;
number_formatimpl.h
89
LocalPointer<const DecimalFormatSymbols>
fSymbols
;
number_patternmodifier.h
212
const DecimalFormatSymbols *
fSymbols
;
/external/icu/icu4c/source/test/intltest/
numbertest_affixutils.cpp
16
DecimalFormatSymbols
fSymbols
;
19
DefaultSymbolProvider(UErrorCode &status) :
fSymbols
(Locale("ar_SA"), status) {}
26
return
fSymbols
.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPlusSignSymbol);
28
return
fSymbols
.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPercentSymbol);
30
return
fSymbols
.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPerMillSymbol);
/external/icu/icu4c/source/i18n/unicode/
smpdtfmt.h
[
all
...]
dcfmtsym.h
452
* If DecimalFormatSymbols becomes subclassable and the status of
fSymbols
changes
454
* or when
fSymbols
can be set any other way that allows them to be readonly aliases
460
UnicodeString
fSymbols
[kFormatSymbolCount];
502
strPtr = &
fSymbols
[symbol];
514
strPtr = &
fSymbols
[symbol];
527
return
fSymbols
[kZeroDigitSymbol];
530
return
fSymbols
[key];
545
fSymbols
[symbol]=value;
557
fSymbols
[(int)kOneDigitSymbol+i-1] = UnicodeString(sym);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarPanel.java
44
fSymbols
[i] = new DateFormatSymbols(fCalendar[i],
84
fSymbols
[index] = new DateFormatSymbols(c, fDisplayLocale);
215
String dayName =
fSymbols
[0].getWeekdays()[dayNum];
331
String month =
fSymbols
[i].getMonths()[
353
private DateFormatSymbols[]
fSymbols
= new DateFormatSymbols[4];
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java
450
fSymbols
= new DateFormatSymbols(fDisplayLocale);
609
String dayName =
fSymbols
.getWeekdays()[dayNum];
710
private DateFormatSymbols
fSymbols
; // Symbols for drawing
Completed in 1128 milliseconds