HomeSort by relevance Sort by last modified time
    Searched defs:tag (Results 1 - 25 of 499) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
literal-operators.cpp 5 struct tag { struct
  /external/elfutils/libebl/
eblobjnote.c 44 } *tag = (__typeof (tag)) desc; local
47 switch (tag->os)
76 printf ("%" PRIu32, tag->version[cnt]);
  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 29 public static final String tag = "Deprecated"; field in class:DeprecatedAttribute
43 super(cp, tag, new byte[0]);
LocalVariableTypeAttribute.java 31 public static final String tag = LocalVariableAttribute.typeTag; field in class:LocalVariableTypeAttribute
37 super(cp, tag, new byte[2]);
48 super(cp, tag, dest);
SyntheticAttribute.java 29 public static final String tag = "Synthetic"; field in class:SyntheticAttribute
43 super(cp, tag, new byte[0]);
ConstantAttribute.java 29 public static final String tag = "ConstantValue"; field in class:ConstantAttribute
45 super(cp, tag);
SourceFileAttribute.java 29 public static final String tag = "SourceFile"; field in class:SourceFileAttribute
44 super(cp, tag);
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_ch_info.h 77 Int tag; /* element tag */ member in struct:__anon14827
get_prog_config.cpp 86 encountered it is saved. Or, if the tag of the PCE read matches the tag of
138 RETURNING( tag = returnValue )
347 pVars->current_program = tag;
351 IF (tag == pVars->current_program)
365 tag = pVars->prog_config.front.ele_tag[0],
458 UInt tag; local
467 * The tag is used at the very end to see if this PCE is
482 tag =
698 * its tag number
    [all...]
  /bootable/recovery/minelf/
Retouch.h 24 char tag[8]; /* "RETOUCH ", not zero-terminated */ member in struct:__anon667
  /external/chromium/third_party/libjingle/source/talk/session/phone/
cryptoparams.h 37 CryptoParams() : tag(0) {}
40 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {}
43 return (tag == params.tag && cipher_suite == params.cipher_suite);
46 int tag; member in struct:cricket::CryptoParams
  /external/openssl/crypto/asn1/
a_bool.c 83 int inf,tag,xclass; local
87 inf=ASN1_get_object(&p,&len,&tag,&xclass,length);
94 if (tag != V_ASN1_BOOLEAN)
  /frameworks/base/core/java/com/android/internal/os/
AndroidPrintStream.java 29 private final String tag; field in class:AndroidPrintStream
35 * @param tag to log
37 public AndroidPrintStream(int priority, String tag) {
38 if (tag == null) {
39 throw new NullPointerException("tag");
43 this.tag = tag;
47 Log.println(priority, tag, line);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf.c 134 char tag[5] = { PERF_FOUR_CHARS(ulID), 0 }; local
138 for (i=0; i<4; i++) if (tag[i] == ' ') tag[i] = '_';
139 ulID = PERF_FOURS(tag);
144 PERF_Config_Read(&config, tag);
  /libcore/dalvik/src/main/java/dalvik/system/
SocketTagger.java 31 @Override public void tag(FileDescriptor socketDescriptor) throws SocketException {}
40 public abstract void tag(FileDescriptor socketDescriptor) throws SocketException; method in class:SocketTagger
52 public final void tag(Socket socket) throws SocketException { method in class:SocketTagger
53 tag(socket.getFileDescriptor$());
  /packages/apps/Tag/src/com/android/apps/tag/record/
ParsedNdefRecord.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
UnknownRecord.java 17 package com.android.apps.tag.record;
19 import com.android.apps.tag.R;
  /system/core/toolbox/
log.c 82 fprintf(stderr, "USAGE: %s [-p priorityChar] [-t tag] message\n", s);
93 const char *tag = "log"; local
110 tag = optarg;
141 __android_log_print(priority, tag, "%s", buffer);
  /cts/tests/tests/os/src/android/os/cts/
NoExecutePermissionTest.java 51 String tag = fields[5]; local
52 if ("[heap]".equals(tag)) {
54 } else if ("[stack]".equals(tag)) {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecificParser.java 8 private final int tag; field in class:BERApplicationSpecificParser
11 BERApplicationSpecificParser(int tag, ASN1StreamParser parser)
13 this.tag = tag;
26 return new BERApplicationSpecific(tag, parser.readVector());
DERUnknownTag.java 8 * We insert one of these when we find a tag we don't recognise.
14 private int tag; field in class:DERUnknownTag
18 * @param tag the tag value.
22 int tag,
25 this(false, tag, data);
30 int tag,
34 this.tag = tag;
45 return tag;
    [all...]
  /external/e2fsprogs/lib/blkid/
cache.c 134 blkid_tag tag = list_entry(cache->bic_tags.next, local
138 while (!list_empty(&tag->bit_names)) {
139 blkid_tag bad = list_entry(tag->bit_names.next,
143 DBG(DEBUG_CACHE, printf("warning: unfreed tag %s=%s\n",
147 blkid_free_tag(tag);
save.c 46 blkid_tag tag = list_entry(p, struct blkid_struct_tag, bit_tags); local
47 fprintf(file, " %s=\"%s\"", tag->bit_name,tag->bit_val);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Class_info.java 33 public static final byte TAG = 7;
44 public final byte tag () method in class:CONSTANT_Class_info
46 return TAG;
CONSTANT_Double_info.java 31 public static final byte TAG = 6;
41 public final byte tag () method in class:CONSTANT_Double_info
43 return TAG;

Completed in 1259 milliseconds

1 2 3 4 5 6 7 8 91011>>