Searched defs:label (Results 76 - 100 of 665) sorted by relevance

1234567891011>>

/external/doclava/src/com/google/doclava/
H A DSeeTagInfo.java45 public String label() { method in class:SeeTagInfo
46 return linkReference().label;
60 data.setValue(base + ".label", linkRef.label);
H A DLinkReference.java38 public String label; field in class:LinkReference
79 * and fills in href and label with error text.
137 result.label = text.substring(index);
330 result.label = result.label + "/" + ref + "/" + mem + '/';
333 result.label += params[i] + "|";
340 result.label =
341 result.label + "/package="
355 if (DBG) System.out.println("----- label = " + result.label
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dprogress.c39 const char *label, __u64 max)
66 if (label) {
67 fputs(label, stdout);
37 ext2fs_numeric_progress_init(ext2_filsys fs, struct ext2fs_numeric_progress_struct * progress, const char *label, __u64 max) argument
/external/e2fsprogs/misc/
H A De2label.c2 * e2label.c - Print or change the volume label on an ext2 fs
81 char label[VOLNAMSZ+1]; local
84 strncpy(label, sb.s_volume_name, VOLNAMSZ);
85 label[VOLNAMSZ] = 0;
86 printf("%s\n", label);
89 static void change_label (char *dev, char *label) argument
95 strncpy(sb.s_volume_name, label, VOLNAMSZ);
96 if (strlen(label) > VOLNAMSZ)
97 fprintf(stderr, _("Warning: label too long, truncating.\n"));
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DInfoDialog.java40 InfoDialog(Frame parent, String title, String label, String message) { argument
44 if (label.length() != 0) {
45 this.add("North", new Label(label));
/external/libtextclassifier/tests/
H A Dfeature-processor_test.cc226 int label; local
227 ASSERT_TRUE(feature_processor.SpanToLabel({5, 8}, tokens, &label));
228 EXPECT_EQ(kInvalidLabel, label);
229 ASSERT_TRUE(feature_processor.SpanToLabel({5, 9}, tokens, &label));
230 EXPECT_NE(kInvalidLabel, label);
232 feature_processor.LabelToTokenSpan(label, &token_span);
241 EXPECT_EQ(label, label2);
243 EXPECT_EQ(label, label2);
245 EXPECT_EQ(label, label2);
/external/skia/bin/
H A Dcompare31 label = tokens[-1] variable
32 d[label] = map(float, samples)
/external/tpm2/
H A DCpriRNG.c137 const char *label, // IN: a label string (optional)
142 return (_cpri__KDFa(hashAlg, seed, label, partyU, partyV,
132 _cpri__GenerateSeededRandom( INT32 randomSize, BYTE *random, TPM_ALG_ID hashAlg, TPM2B *seed, const char *label, TPM2B *partyU, TPM2B *partyV ) argument
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DGlShader.java83 public int getAttribLocation(String label) { argument
87 int location = GLES20.glGetAttribLocation(program, label);
89 throw new RuntimeException("Could not locate '" + label + "' in program");
95 * Enable and upload a vertex array for attribute |label|. The vertex data is specified in
98 public void setVertexAttribArray(String label, int dimension, FloatBuffer buffer) { argument
102 int location = getAttribLocation(label);
108 public int getUniformLocation(String label) { argument
112 int location = GLES20.glGetUniformLocation(program, label);
114 throw new RuntimeException("Could not locate uniform '" + label + "' in program");
/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCDataChannel.h97 @property(nonatomic, readonly) NSString* label; variable
/external/webrtc/talk/app/webrtc/
H A Dsctputils_unittest.cc35 const std::string& label,
70 EXPECT_EQ(label.size(), label_length);
75 EXPECT_EQ(label, label_output);
84 std::string label = "abc"; local
88 ASSERT_TRUE(webrtc::WriteDataChannelOpenMessage(label, config, &packet));
90 VerifyOpenMessageFormat(packet, label, config);
97 EXPECT_EQ(label, output_label);
106 std::string label = "abc"; local
112 ASSERT_TRUE(webrtc::WriteDataChannelOpenMessage(label, config, &packet));
114 VerifyOpenMessageFormat(packet, label, confi
34 VerifyOpenMessageFormat(const rtc::Buffer& packet, const std::string& label, const webrtc::DataChannelInit& config) argument
130 std::string label = "abc"; local
[all...]
H A Dvideotrack.cc36 VideoTrack::VideoTrack(const std::string& label, argument
38 : MediaStreamTrack<VideoTrackInterface>(label),
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-prf.c20 * @label: A unique label for each purpose of the PRF
30 int sha256_prf(const u8 *key, size_t key_len, const char *label, argument
33 return sha256_prf_bits(key, key_len, label, data, data_len, buf,
42 * @label: A unique label for each purpose of the PRF
54 int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, argument
68 addr[1] = (u8 *) label;
69 len[1] = os_strlen(label);
H A Dsha384-prf.c20 * @label: A unique label for each purpose of the PRF
29 void sha384_prf(const u8 *key, size_t key_len, const char *label, argument
32 sha384_prf_bits(key, key_len, label, data, data_len, buf, buf_len * 8);
40 * @label: A unique label for each purpose of the PRF
51 void sha384_prf_bits(const u8 *key, size_t key_len, const char *label, argument
65 addr[1] = (u8 *) label;
66 len[1] = os_strlen(label);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_peap_common.c16 const char *label, const u8 *seed, size_t seed_len,
22 size_t label_len = os_strlen(label);
29 addr[1] = (unsigned char *) label;
15 peap_prfplus(int version, const u8 *key, size_t key_len, const char *label, const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len) argument
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-prf.c20 * @label: A unique label for each purpose of the PRF
30 int sha256_prf(const u8 *key, size_t key_len, const char *label, argument
33 return sha256_prf_bits(key, key_len, label, data, data_len, buf,
42 * @label: A unique label for each purpose of the PRF
54 int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, argument
68 addr[1] = (u8 *) label;
69 len[1] = os_strlen(label);
H A Dsha384-prf.c20 * @label: A unique label for each purpose of the PRF
29 void sha384_prf(const u8 *key, size_t key_len, const char *label, argument
32 sha384_prf_bits(key, key_len, label, data, data_len, buf, buf_len * 8);
40 * @label: A unique label for each purpose of the PRF
51 void sha384_prf_bits(const u8 *key, size_t key_len, const char *label, argument
65 addr[1] = (u8 *) label;
66 len[1] = os_strlen(label);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_peap_common.c16 const char *label, const u8 *seed, size_t seed_len,
22 size_t label_len = os_strlen(label);
29 addr[1] = (unsigned char *) label;
15 peap_prfplus(int version, const u8 *key, size_t key_len, const char *label, const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len) argument
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-prf.c20 * @label: A unique label for each purpose of the PRF
30 int sha256_prf(const u8 *key, size_t key_len, const char *label, argument
33 return sha256_prf_bits(key, key_len, label, data, data_len, buf,
42 * @label: A unique label for each purpose of the PRF
54 int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, argument
68 addr[1] = (u8 *) label;
69 len[1] = os_strlen(label);
H A Dsha384-prf.c20 * @label: A unique label for each purpose of the PRF
29 void sha384_prf(const u8 *key, size_t key_len, const char *label, argument
32 sha384_prf_bits(key, key_len, label, data, data_len, buf, buf_len * 8);
40 * @label: A unique label for each purpose of the PRF
51 void sha384_prf_bits(const u8 *key, size_t key_len, const char *label, argument
65 addr[1] = (u8 *) label;
66 len[1] = os_strlen(label);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_peap_common.c16 const char *label, const u8 *seed, size_t seed_len,
22 size_t label_len = os_strlen(label);
29 addr[1] = (unsigned char *) label;
15 peap_prfplus(int version, const u8 *key, size_t key_len, const char *label, const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len) argument
/external/ImageMagick/coders/
H A Dvid.c107 *label;
176 label=InterpretImageProperties((ImageInfo *) image_info,next_image,
178 (void) SetImageProperty(next_image,"label",label,exception);
179 label=DestroyString(label);
333 (void) SetImageProperty(p,"label",DefaultTileLabel,exception);
104 *label; local
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DParseTree.java43 public ParseTree(Object label) { argument
44 this.payload = label;
/external/autotest/frontend/client/src/autotest/tko/
H A DParameterizedFieldListDisplay.java20 private String label; field in class:ParameterizedFieldListDisplay.FieldWidget
23 public FieldWidget(String label) { argument
24 this.label = label;
28 return label;
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
H A Dtimeline_interaction_record.py35 def GetJavaScriptMarker(label, flags):
43 label: The label used to identify the interaction record.
53 marker = 'Interaction.%s' % label
68 label: ClickComposeButton and SendEmail, for instance. From the point
79 label and flags indicating the semantics of that interaction. This
94 * repeatable: Allows other interactions to use the same label
97 def __init__(self, label, start, end, async_event=None, flags=None):
98 assert label
99 self._label = label
107 def label(self): member in class:TimelineInteractionRecord
[all...]

Completed in 6765 milliseconds

1234567891011>>