OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tocode
(Results
1 - 10
of
10
) sorted by null
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
CodeGenUtil.kt
21
fun
toCode
(it : Expr, full : Boolean) : KCode {
27
app("", it.getLeft().
toCode
())
29
app("", it.getRight().
toCode
())
32
app("", it.getExpr().
toCode
())
43
val value = it.getChild().
toCode
().generate();
50
app("", it.getChild().
toCode
())
58
is GroupExpr -> kcode("(").app("", it.getWrapped().
toCode
()).app(")")
62
app("", it.getLeft().
toCode
())
64
app("", it.getRight().
toCode
())
67
app(it.getOp(), it.getExpr().
toCode
())
[
all
...]
LayoutBinderWriter.kt
171
fun Expr.
toCode
(full : Boolean = false) : KCode = CodeGenUtil.
toCode
(this, full)
788
tab("this.${expr.oldValueName} = ${expr.
toCode
(false).generate()};")
[
all
...]
/external/libxml2/os400/iconv/
iconv.h
22
Iconv_t IconvOpen(const char *
tocode
, const char * fromcode);
iconv.c
94
IconvOpen(const char *
tocode
, const char * fromcode)
97
int toccsid = findEncoding(&
tocode
);
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
iconv.h
34
codeset
TOCODE
.
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
iconv.h
34
codeset
TOCODE
.
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
MergedBinding.java
102
newValues.add(CodeGenUtil.Companion.
toCode
(expr, false).generate());
Binding.java
133
final String argCode = CodeGenUtil.Companion.
toCode
(getExpr(), false).generate();
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
ResourceExpr.java
182
return WriterPackage.
toCode
(getChildren().get(childIndex), false).generate();
190
sb.append(", ").append(WriterPackage.
toCode
(expr, false).generate());
/external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c
261
char
tocode
[33];
local
264
makecode(
tocode
, ccsidout);
265
memset(
tocode
+ 13, 0, sizeof
tocode
- 13);
270
return iconv_open(
tocode
, fromcode);
[
all
...]
Completed in 262 milliseconds