HomeSort by relevance Sort by last modified time
    Searched refs:PCDATA (Results 1 - 25 of 53) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/pkg/include/
funcdata.h 5 // This file defines the IDs for PCDATA and FUNCDATA instructions
39 #define GO_RESULTS_INITIALIZED PCDATA $PCDATA_StackMapIndex, $1
  /prebuilts/go/darwin-x86/src/runtime/
funcdata.h 5 // This file defines the IDs for PCDATA and FUNCDATA instructions
39 #define GO_RESULTS_INITIALIZED PCDATA $PCDATA_StackMapIndex, $1
asm_mips64x.s 346 PCDATA $PCDATA_StackMapIndex, $0; \
asm_mipsx.s 347 PCDATA $PCDATA_StackMapIndex, $0; \
  /prebuilts/go/linux-x86/pkg/include/
funcdata.h 5 // This file defines the IDs for PCDATA and FUNCDATA instructions
39 #define GO_RESULTS_INITIALIZED PCDATA $PCDATA_StackMapIndex, $1
  /prebuilts/go/linux-x86/src/runtime/
funcdata.h 5 // This file defines the IDs for PCDATA and FUNCDATA instructions
39 #define GO_RESULTS_INITIALIZED PCDATA $PCDATA_StackMapIndex, $1
asm_mips64x.s 346 PCDATA $PCDATA_StackMapIndex, $0; \
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlTextEscapingMode.java 58 PCDATA,
142 return mode != null ? mode : PCDATA;
164 return mode != PCDATA && mode != VOID;
TagBalancingHtmlStreamEventReceiver.java     [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
pseudo_test.go 46 {"PCDATA", "", "expect two operands for PCDATA"},
47 {"PCDATA", "1", "expect two operands for PCDATA"},
asm.go 273 // asmPCData assembles a PCDATA pseudo-op.
274 // PCDATA $2, $705
277 p.errorf("expect two operands for PCDATA")
283 if !p.validImmediate("PCDATA", &key) {
289 if !p.validImmediate("PCDATA", &value) {
293 // log.Printf("PCDATA $%d, $%d", key.Offset, value.Offset)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
pseudo_test.go 46 {"PCDATA", "", "expect two operands for PCDATA"},
47 {"PCDATA", "1", "expect two operands for PCDATA"},
asm.go 273 // asmPCData assembles a PCDATA pseudo-op.
274 // PCDATA $2, $705
277 p.errorf("expect two operands for PCDATA")
283 if !p.validImmediate("PCDATA", &key) {
289 if !p.validImmediate("PCDATA", &value) {
293 // log.Printf("PCDATA $%d, $%d", key.Offset, value.Offset)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemDesc.java 62 /** Bit position if this element type is PCDATA. */
63 private static final int PCDATA = (1 << 7);
  /prebuilts/go/darwin-x86/src/cmd/internal/objabi/
funcdata.go 7 // This file defines the IDs for PCDATA and FUNCDATA instructions
  /prebuilts/go/linux-x86/src/cmd/internal/objabi/
funcdata.go 7 // This file defines the IDs for PCDATA and FUNCDATA instructions
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t012lexerXML.g 57 | t=PCDATA
58 {this.output("PCDATA: \""+$t.text+"\"")}
100 fragment PCDATA : (~'<')+ ;
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
pcln.go 9 func addvarint(d *Pcdata, v uint32) {
26 func funcpctab(ctxt *Link, dst *Pcdata, func_ *LSym, desc string, valfunc func(*Link, *LSym, int32, *Prog, int32, interface{}) int32, arg interface{}) {
233 // pctopcdata computes the pcdata value in effect at p.
234 // A PCDATA instruction sets the value in effect at future
235 // non-PCDATA instructions.
236 // Since PCDATA instructions have no width in the final code,
243 ctxt.Diag("overflow in PCDATA instruction: %v", p)
257 // Find the highest ID of any used PCDATA table. This ignores PCDATA table
271 pcln.Pcdata = make([]Pcdata, npcdata
    [all...]
util.go 490 "PCDATA",
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
pcln.go 9 func addvarint(d *Pcdata, v uint32) {
26 func funcpctab(ctxt *Link, dst *Pcdata, func_ *LSym, desc string, valfunc func(*Link, *LSym, int32, *Prog, int32, interface{}) int32, arg interface{}) {
233 // pctopcdata computes the pcdata value in effect at p.
234 // A PCDATA instruction sets the value in effect at future
235 // non-PCDATA instructions.
236 // Since PCDATA instructions have no width in the final code,
243 ctxt.Diag("overflow in PCDATA instruction: %v", p)
257 // Find the highest ID of any used PCDATA table. This ignores PCDATA table
271 pcln.Pcdata = make([]Pcdata, npcdata
    [all...]
util.go 490 "PCDATA",
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 93 public static final String PCDATA = "#pcdata";
220 if (node.mName.equals(TtmlUtils.PCDATA) && inPTag) {
253 if (node.mName.equals(TtmlUtils.PCDATA)) {
421 TtmlUtils.PCDATA, "", text, 0, TtmlUtils.INVALID_TIMESTAMP,
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go 946 // list for the function arguments. Both lists are indexed by the same PCDATA
950 // we could introduce a separate PCDATA index for arguments vs locals and
954 // PCDATA tables cost about 100k. So for now we keep using a single index for
1016 // These will later become PCDATA instructions.
1110 pcdata := 0
1146 live := lv.livevars[pcdata]
1167 pcdata = pos
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go 946 // list for the function arguments. Both lists are indexed by the same PCDATA
950 // we could introduce a separate PCDATA index for arguments vs locals and
954 // PCDATA tables cost about 100k. So for now we keep using a single index for
1016 // These will later become PCDATA instructions.
1110 pcdata := 0
1146 live := lv.livevars[pcdata]
1167 pcdata = pos
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 728 * <!ELEMENT foo (#PCDATA|bar)* >
748 * The special name '#PCDATA' is permitted but only if it is the first
750 * (#PCDATA|a|b)
    [all...]

Completed in 435 milliseconds

1 2 3